Sha256: 9719cbf7315d0d6803ec761e48975d3dc29bedbbff5ab8ead10bc5c4c98ee4d6
Contents?: true
Size: 595 Bytes
Versions: 10
Compression:
Stored size: 595 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AlignJustify < 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: 'M3 12h18') s.path(d: 'M3 18h18') s.path(d: 'M3 6h18') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems