Sha256: 52d502ff7f48919f59b5d5b8fc9da9f1c6cb777a09bbf85abd6b70d54818b6e4

Contents?: true

Size: 993 Bytes

Versions: 14

Compression:

Stored size: 993 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Crop169 < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M18 7a3 3 0 0 1 3 3v4a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-4a3 3 0 0 1 3 -3z'
            )
          end
        end

        def outline
          svg(
            **attrs,
            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 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z'
            )
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/crop_16_9.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/crop_16_9.rb