Sha256: 84a95b1a5b460600e0f39ffcab15bb2fd75708204883a34364eaac82296e51be
Contents?: true
Size: 995 Bytes
Versions: 12
Compression:
Stored size: 995 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Server2 < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z' ) s.path( d: 'M3 12m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z' ) s.path(d: 'M7 8l0 .01') s.path(d: 'M7 16l0 .01') s.path(d: 'M11 8h6') s.path(d: 'M11 16h6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems