lib/phlex-icons/radix/pencil_2.rb
# frozen_string_literal: true # rubocop:disable Layout/LineLength module PhlexIcons module Radix class Pencil2 < Base def view_template svg( **attrs, viewbox: '0 0 15 15', fill: 'none', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M8.99989 3.00009H4.90033C4.47205 3.00009 4.18007 3.00026 3.95503 3.01864C3.7361 3.03656 3.624 3.06964 3.54586 3.10946C3.35789 3.2053 3.20518 3.35801 3.10934 3.54598C3.06952 3.62413 3.03643 3.73623 3.01852 3.95516C3.00013 4.1802 2.99996 4.47217 2.99996 4.90046V11.0996C2.99996 11.5279 3.00013 11.8199 3.01852 12.0449C3.03643 12.2638 3.06952 12.3759 3.10934 12.4541L3.19137 12.5879C3.28362 12.7147 3.4048 12.8187 3.54586 12.8906L3.61226 12.9189C3.68699 12.9457 3.79086 12.968 3.95503 12.9814C4.18007 12.9998 4.47205 13 4.90033 13H11.0995C11.5278 13 11.8197 12.9998 12.0448 12.9814C12.2637 12.9635 12.3758 12.9304 12.4539 12.8906L12.5877 12.8086C12.7146 12.7163 12.8185 12.5951 12.8905 12.4541L12.9188 12.3877C12.9455 12.3129 12.9679 12.2091 12.9813 12.0449C12.9997 11.8199 12.9998 11.5279 12.9998 11.0996V7.00004L13.9998 6.00005V11.0996C13.9998 11.5114 13.9999 11.8507 13.9774 12.126C13.9602 12.3366 13.9282 12.5345 13.8612 12.7226L13.7821 12.9082C13.6143 13.2374 13.359 13.5129 13.0457 13.705L12.908 13.7822C12.6654 13.9058 12.4068 13.9545 12.1258 13.9775C11.8506 14 11.5113 14 11.0995 14H4.90033C4.48855 14 4.14918 14 3.87398 13.9775C3.66329 13.9603 3.46543 13.9283 3.2773 13.8613L3.09176 13.7822C2.76253 13.6144 2.48704 13.3591 2.29489 13.0459L2.21775 12.9082C2.09412 12.6655 2.0454 12.407 2.02244 12.126C1.99995 11.8507 1.99998 11.5114 1.99998 11.0996V4.90046C1.99998 4.48867 1.99995 4.14931 2.02244 3.8741C2.0454 3.59309 2.09412 3.33452 2.21775 3.09189C2.40948 2.71564 2.71551 2.40961 3.09176 2.21787C3.3344 2.09424 3.59297 2.04553 3.87398 2.02256C4.14918 2.00008 4.48855 2.0001 4.90033 2.0001H9.99988L8.99989 3.00009ZM12.2245 1.08214C12.4185 0.954079 12.6825 0.975863 12.8534 1.1466L14.8533 3.14657L14.9178 3.2247C15.0459 3.41873 15.0241 3.68273 14.8533 3.8536L10.911 7.79593C10.8351 7.87182 10.7472 7.93539 10.6512 7.98343L6.72355 9.94727C6.53106 10.0435 6.29858 10.0057 6.14641 9.85352C5.99432 9.70134 5.95644 9.46883 6.05266 9.27638L8.0165 5.34869C8.06454 5.25275 8.12813 5.16481 8.204 5.08893L12.1463 1.1466L12.2245 1.08214ZM8.91102 5.79595L7.87197 7.8721L8.12685 8.12698L10.204 7.08891L13.7928 3.50008L12.4998 2.20713L8.91102 5.79595Z', fill: 'currentColor' ) end end end end end # rubocop:enable Layout/LineLength