Sha256: 9896434bbe53d9b0b4b361ec1ba6a20164078a8c0fc36ce978cfbe2e97288f3a
Contents?: true
Size: 697 Bytes
Versions: 26
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListTree < 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 12h-8') s.path(d: 'M21 6H8') s.path(d: 'M21 18h-8') s.path(d: 'M3 6v4c0 1.1.9 2 2 2h3') s.path(d: 'M3 10v6c0 1.1.9 2 2 2h3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems