lib/phlex-icons/radix/resume.rb



# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module PhlexIcons
  module Radix
    class Resume < 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:
              'M2.49976 2.19995C2.80345 2.19995 3.04946 2.44609 3.04956 2.74976V12.2498C3.04956 12.5535 2.80351 12.7996 2.49976 12.7996C2.19609 12.7995 1.94995 12.5534 1.94995 12.2498V2.74976C1.95006 2.44615 2.19615 2.20006 2.49976 2.19995ZM5.24194 2.32202C5.39191 2.23163 5.57825 2.22575 5.73315 2.30737L14.7332 7.05737C14.8971 7.1439 14.9997 7.3144 14.9998 7.49976C14.9998 7.68519 14.8971 7.85559 14.7332 7.94214L5.73315 12.6921C5.57822 12.7738 5.39196 12.7679 5.24194 12.6775C5.092 12.587 4.99976 12.4249 4.99976 12.2498V2.74976C4.99982 2.57461 5.09196 2.41248 5.24194 2.32202ZM5.99976 11.4197L13.4275 7.49976L5.99976 3.57886V11.4197Z',
            fill: 'currentColor'
          )
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength