Sha256: 8ecdcb88cf3e17d2793d79f80324df1b0cfc2f577e31fa99a732dc74f62930c8

Contents?: true

Size: 1.97 KB

Versions: 25

Compression:

Stored size: 1.97 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Hero
      class CpuChip < 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(d: 'M16.5 7.5h-9v9h9v-9Z')
            s.path(
              fill_rule: 'evenodd',
              d:
                'M8.25 2.25A.75.75 0 0 1 9 3v.75h2.25V3a.75.75 0 0 1 1.5 0v.75H15V3a.75.75 0 0 1 1.5 0v.75h.75a3 3 0 0 1 3 3v.75H21A.75.75 0 0 1 21 9h-.75v2.25H21a.75.75 0 0 1 0 1.5h-.75V15H21a.75.75 0 0 1 0 1.5h-.75v.75a3 3 0 0 1-3 3h-.75V21a.75.75 0 0 1-1.5 0v-.75h-2.25V21a.75.75 0 0 1-1.5 0v-.75H9V21a.75.75 0 0 1-1.5 0v-.75h-.75a3 3 0 0 1-3-3v-.75H3A.75.75 0 0 1 3 15h.75v-2.25H3a.75.75 0 0 1 0-1.5h.75V9H3a.75.75 0 0 1 0-1.5h.75v-.75a3 3 0 0 1 3-3h.75V3a.75.75 0 0 1 .75-.75ZM6 6.75A.75.75 0 0 1 6.75 6h10.5a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75V6.75Z',
              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:
                'M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M12 3v1.5m0 15V21m3.75-18v1.5m0 15V21m-9-1.5h10.5a2.25 2.25 0 0 0 2.25-2.25V6.75a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 6.75v10.5a2.25 2.25 0 0 0 2.25 2.25Zm.75-12h9v9h-9v-9Z'
            )
          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/cpu_chip.rb
phlex-icons-hero-0.17.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.16.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.16.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.15.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.15.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.14.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.14.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.13.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.13.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.12.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.12.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.11.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.11.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.10.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.9.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-hero-0.9.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.8.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.7.0 lib/phlex/icons/hero/cpu_chip.rb
phlex-icons-0.6.0 lib/phlex/icons/hero/cpu_chip.rb