Sha256: 76d9e963fffe0f34d59b310d1ceb804bca3c7e88a6fc84dd9544a68b7a2d6511
Contents?: true
Size: 624 Bytes
Versions: 14
Compression:
Stored size: 624 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Dock < 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.path(d: 'M2 8h20') s.rect(width: '20', height: '16', x: '2', y: '4', rx: '2') s.path(d: 'M6 16h12') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems