Sha256: 6b22f954520e7160d97aa8c01566f27066ad8cdba096772841b83789dc6a1d41

Contents?: true

Size: 1.64 KB

Versions: 25

Compression:

Stored size: 1.64 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Hero
      class ChevronDoubleUp < 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:
                'M11.47 10.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 12.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5Z',
              clip_rule: 'evenodd'
            )
            s.path(
              fill_rule: 'evenodd',
              d:
                'M11.47 4.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 6.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5Z',
              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: 'm4.5 18.75 7.5-7.5 7.5 7.5'
            )
            s.path(
              stroke_linecap: 'round',
              stroke_linejoin: 'round',
              d: 'm4.5 12.75 7.5-7.5 7.5 7.5'
            )
          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/chevron_double_up.rb
phlex-icons-hero-0.17.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.16.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.16.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.15.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.15.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.14.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.14.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.13.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.13.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.12.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.12.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.11.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.11.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.10.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.9.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-hero-0.9.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.8.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.7.0 lib/phlex/icons/hero/chevron_double_up.rb
phlex-icons-0.6.0 lib/phlex/icons/hero/chevron_double_up.rb