Sha256: 9d2ebebe9ccab3504fa5df9af8d8876bdc42a0437adf2b10ac2e2b750d8835ab
Contents?: true
Size: 809 Bytes
Versions: 26
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class NotebookText < 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: 'M2 6h4') s.path(d: 'M2 10h4') s.path(d: 'M2 14h4') s.path(d: 'M2 18h4') s.rect(width: '16', height: '20', x: '4', y: '2', rx: '2') s.path(d: 'M9.5 8h5') s.path(d: 'M9.5 12H16') s.path(d: 'M9.5 16H14') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems