Sha256: 61b4dc4b44794895ffb69102926635e2f97c944a5f21cc7b1808bb0a821183b9

Contents?: true

Size: 1006 Bytes

Versions: 12

Compression:

Stored size: 1006 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Crop32 < 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:
                'M18 6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-6a3 3 0 0 1 3 -3z'
            )
          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:
                'M4 7m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z'
            )
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

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