Sha256: b565c0e2dfa3194af25447c4053107df692222c60ed7cef067ec0fdbf913aa50
Contents?: true
Size: 719 Bytes
Versions: 14
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Blocks < 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(width: '7', height: '7', x: '14', y: '3', rx: '1') s.path( d: 'M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems