Sha256: 8403ca4710318a392bd7b7b87ea065f9b39a0284321140d1adc7201db7812807

Contents?: true

Size: 1.77 KB

Versions: 14

Compression:

Stored size: 1.77 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Hero
      class ArrowDownOnSquareStack < 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(
              fill_rule: 'evenodd',
              d:
                'M9.75 6.75h-3a3 3 0 0 0-3 3v7.5a3 3 0 0 0 3 3h7.5a3 3 0 0 0 3-3v-7.5a3 3 0 0 0-3-3h-3V1.5a.75.75 0 0 0-1.5 0v5.25Zm0 0h1.5v5.69l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l1.72 1.72V6.75Z',
              clip_rule: 'evenodd'
            )
            s.path(
              d:
                'M7.151 21.75a2.999 2.999 0 0 0 2.599 1.5h7.5a3 3 0 0 0 3-3v-7.5c0-1.11-.603-2.08-1.5-2.599v7.099a4.5 4.5 0 0 1-4.5 4.5H7.151Z'
            )
          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:
                'M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m-6 3.75 3 3m0 0 3-3m-3 3V1.5m6 9h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75'
            )
          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/arrow_down_on_square_stack.rb
phlex-icons-1.6.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-1.5.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-hero-1.5.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-hero-1.4.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-1.4.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-hero-1.3.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-1.3.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-hero-1.2.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-1.2.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-1.1.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-hero-1.1.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-1.0.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb
phlex-icons-hero-1.0.0 lib/phlex/icons/hero/arrow_down_on_square_stack.rb