Sha256: b73cc356b1da6730809fa5511d650af23aad9ada69bc0b8901223584b2949cbb

Contents?: true

Size: 1.91 KB

Versions: 25

Compression:

Stored size: 1.91 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Hero
      class Squares2x2 < Base
        def solid
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor',
            aria_hidden: 'true',
            data_slot: 'icon'
          ) do |s|
            s.path(
              fill_rule: 'evenodd',
              d:
                'M3 6a3 3 0 0 1 3-3h2.25a3 3 0 0 1 3 3v2.25a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm9.75 0a3 3 0 0 1 3-3H18a3 3 0 0 1 3 3v2.25a3 3 0 0 1-3 3h-2.25a3 3 0 0 1-3-3V6ZM3 15.75a3 3 0 0 1 3-3h2.25a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-2.25Zm9.75 0a3 3 0 0 1 3-3H18a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3h-2.25a3 3 0 0 1-3-3v-2.25Z',
              clip_rule: 'evenodd'
            )
          end
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            fill: 'none',
            viewbox: '0 0 24 24',
            stroke_width: '1.5',
            stroke: 'currentColor',
            aria_hidden: 'true',
            data_slot: 'icon'
          ) do |s|
            s.path(
              stroke_linecap: 'round',
              stroke_linejoin: 'round',
              d:
                'M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
phlex-icons-0.17.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.17.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.16.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.16.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.15.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.15.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.14.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.14.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.13.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.13.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.12.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.12.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.11.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.11.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.10.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.9.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-hero-0.9.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.8.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.7.0 lib/phlex/icons/hero/squares_2x2.rb
phlex-icons-0.6.0 lib/phlex/icons/hero/squares_2x2.rb