Sha256: bfe715affd533ff2acaf7354dad0fcee53ab4727ddf520b2ab0d3e92bf2d6310
Contents?: true
Size: 671 Bytes
Versions: 26
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ALargeSmall < 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.path(d: 'M21 14h-5') s.path(d: 'M16 16v-3.5a2.5 2.5 0 0 1 5 0V16') s.path(d: 'M4.5 13h6') s.path(d: 'm3 16 4.5-9 4.5 9') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems