Sha256: 599c88b3aa3399cfcdcaf7ece3e649c21dc03848db603185f1fca61e3fa1fc10

Contents?: true

Size: 1.48 KB

Versions: 14

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Hero
      class Square2Stack < Base
        def solid
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor',
            aria_hidden: 'true',
            data_slot: 'icon'
          ) do |s|
            s.path(
              d:
                'M16.5 6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v7.5a3 3 0 0 0 3 3v-6A4.5 4.5 0 0 1 10.5 6h6Z'
            )
            s.path(
              d:
                'M18 7.5a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3h-7.5a3 3 0 0 1-3-3v-7.5a3 3 0 0 1 3-3H18Z'
            )
          end
        end

        def outline
          svg(
            **attrs,
            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:
                'M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

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