lib/phlex-icons/radix/align_baseline.rb



# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module PhlexIcons
  module Radix
    class AlignBaseline < 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:
              'M14.5809 13.1084C14.763 13.1459 14.9003 13.3069 14.9003 13.5C14.9003 13.6932 14.763 13.8541 14.5809 13.8916L14.4999 13.9004H0.499878C0.279006 13.9004 0.0994873 13.7209 0.0994873 13.5C0.0995038 13.2792 0.279016 13.0997 0.499878 13.0996H14.4999L14.5809 13.1084ZM7.97058 10.7393C7.8769 10.999 7.5897 11.1337 7.32996 11.0401C7.0706 10.9463 6.93592 10.6599 7.02917 10.4004L7.97058 10.7393ZM10.4999 1.75003C10.7105 1.75005 10.899 1.88199 10.9706 2.08011L13.9706 10.4004C14.0639 10.66 13.9292 10.9463 13.6698 11.0401C13.4101 11.1337 13.1228 10.999 13.0292 10.7393L12.0468 8.01566H8.953L7.97058 10.7393L7.49988 10.5694L7.02917 10.4004L10.0292 2.08011L10.0614 2.00882C10.1482 1.85093 10.3156 1.75008 10.4999 1.75003ZM2.49988 2.09964C2.72061 2.09985 2.90027 2.27925 2.90027 2.50003V9.53323L4.21667 8.21683C4.3729 8.06078 4.62693 8.06067 4.78308 8.21683C4.93901 8.373 4.93905 8.62709 4.78308 8.78323L2.78308 10.7832C2.70816 10.8582 2.60582 10.9003 2.49988 10.9004C2.3939 10.9004 2.29167 10.8581 2.21667 10.7832L0.216675 8.78323L0.165894 8.71976C0.0635299 8.56452 0.0800509 8.35345 0.216675 8.21683C0.353304 8.08036 0.564425 8.06372 0.719604 8.16605L0.783081 8.21683L2.09949 9.53323V2.50003C2.09949 2.27912 2.27896 2.09964 2.49988 2.09964ZM9.25867 7.16605H11.7411L10.4999 3.72464L9.25867 7.16605Z',
            fill: 'currentColor'
          )
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength