Sha256: 29b89a6273609d7fd7137605c6046363de990b3abb394326604a526595dda054
Contents?: true
Size: 682 Bytes
Versions: 26
Compression:
Stored size: 682 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AlignStartHorizontal < Base def view_template 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.rect(width: '6', height: '16', x: '4', y: '6', rx: '2') s.rect(width: '6', height: '9', x: '14', y: '6', rx: '2') s.path(d: 'M22 2H2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems