Sha256: b570e2b66d38ddac47925d1fa91f20b21d870dc0e06794f6d1bb83e8b08bd4d0
Contents?: true
Size: 632 Bytes
Versions: 26
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class StickyNote < 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: 'M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z') s.path(d: 'M15 3v4a2 2 0 0 0 2 2h4') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems