Sha256: 2628f90a4005e02a113118c9f7a11bc493ae2df93df65fa72200786953b9a3ed
Contents?: true
Size: 1.09 KB
Versions: 18
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Cpu2 < Base def filled raise NotImplementedError end def outline svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path( d: 'M5 5m0 1a1 1 0 0 1 1 -1h12a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-12a1 1 0 0 1 -1 -1z' ) s.path(d: 'M8 10v-2h2m6 6v2h-2m-4 0h-2v-2m8 -4v-2h-2') s.path(d: 'M3 10h2') s.path(d: 'M3 14h2') s.path(d: 'M10 3v2') s.path(d: 'M14 3v2') s.path(d: 'M21 10h-2') s.path(d: 'M21 14h-2') s.path(d: 'M14 21v-2') s.path(d: 'M10 21v-2') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems