Sha256: 52e3b49dd9b4a4698827e3c26f98955e578d43ee748240cda540c34b776499ba

Contents?: true

Size: 1.5 KB

Versions: 12

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class SquareArrowLeft < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M19 2a3 3 0 0 1 3 3v14a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-14a3 3 0 0 1 3 -3zm-6.293 5.293a1 1 0 0 0 -1.414 0l-4 4l-.083 .094l-.064 .092l-.052 .098l-.044 .11l-.03 .112l-.017 .126l-.003 .075l.004 .09l.007 .058l.025 .118l.035 .105l.054 .113l.071 .111c.03 .04 .061 .077 .097 .112l4 4l.094 .083a1 1 0 0 0 1.32 -.083l.083 -.094a1 1 0 0 0 -.083 -1.32l-2.292 -2.293h5.585l.117 -.007a1 1 0 0 0 -.117 -1.993h-5.585l2.292 -2.293l.083 -.094a1 1 0 0 0 -.083 -1.32z'
            )
          end
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M12 8l-4 4l4 4')
            s.path(d: 'M16 12h-8')
            s.path(
              d:
                'M3 3m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/square_arrow_left.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/square_arrow_left.rb