Sha256: 2d3ae36fd61a2be9b50c6515bc6e10814d3610026216124344941bf2b3917082

Contents?: true

Size: 1.98 KB

Versions: 25

Compression:

Stored size: 1.98 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Hero
      class RectangleGroup < 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:
                'M1.5 7.125c0-1.036.84-1.875 1.875-1.875h6c1.036 0 1.875.84 1.875 1.875v3.75c0 1.036-.84 1.875-1.875 1.875h-6A1.875 1.875 0 0 1 1.5 10.875v-3.75Zm12 1.5c0-1.036.84-1.875 1.875-1.875h5.25c1.035 0 1.875.84 1.875 1.875v8.25c0 1.035-.84 1.875-1.875 1.875h-5.25a1.875 1.875 0 0 1-1.875-1.875v-8.25ZM3 16.125c0-1.036.84-1.875 1.875-1.875h5.25c1.036 0 1.875.84 1.875 1.875v2.25c0 1.035-.84 1.875-1.875 1.875h-5.25A1.875 1.875 0 0 1 3 18.375v-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:
                'M2.25 7.125C2.25 6.504 2.754 6 3.375 6h6c.621 0 1.125.504 1.125 1.125v3.75c0 .621-.504 1.125-1.125 1.125h-6a1.125 1.125 0 0 1-1.125-1.125v-3.75ZM14.25 8.625c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v8.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125v-8.25ZM3.75 16.125c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125v-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/rectangle_group.rb
phlex-icons-hero-0.17.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.16.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.16.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.15.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.15.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.14.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.14.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.13.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.13.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.12.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.12.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.11.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.11.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.10.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.9.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-hero-0.9.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.8.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.7.0 lib/phlex/icons/hero/rectangle_group.rb
phlex-icons-0.6.0 lib/phlex/icons/hero/rectangle_group.rb