lib/phlex-icons/radix/arrow_bottom_left.rb



# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module PhlexIcons
  module Radix
    class ArrowBottomLeft < 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:
              'M3.50019 12C3.36778 12 3.24037 11.9471 3.14667 11.8535C3.05319 11.7599 3.0003 11.6323 3.00019 11.5V6L3.00995 5.89844C3.05682 5.67099 3.25888 5.50009 3.50019 5.5C3.74179 5.50009 3.94388 5.67154 3.99042 5.89941L4.00019 6V10.293L10.6467 3.64648C10.8418 3.45132 11.1584 3.45152 11.3537 3.64648C11.5487 3.84177 11.5489 4.15835 11.3537 4.35352L4.70722 11H9.00019C9.2762 11 9.50004 11.224 9.50019 11.5C9.50004 11.776 9.2762 12 9.00019 12H3.50019Z',
            fill: 'currentColor'
          )
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength