Sha256: def59ef106462bf43fc871dfbe2f8d304c8040a70fc5f6bc2f587b6d60ad578b
Contents?: true
Size: 800 Bytes
Versions: 14
Compression:
Stored size: 800 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Network < Base def view_template 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.rect(x: '16', y: '16', width: '6', height: '6', rx: '1') s.rect(x: '2', y: '16', width: '6', height: '6', rx: '1') s.rect(x: '9', y: '2', width: '6', height: '6', rx: '1') s.path(d: 'M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3') s.path(d: 'M12 12V8') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems