Sha256: 08b63019e6b0ffdd2fbc37d608665035e0e74d417113c3fad7ced41b0fae4d5b
Contents?: true
Size: 549 Bytes
Versions: 26
Compression:
Stored size: 549 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Bookmark < 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' ) { |s| s.path(d: 'm19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z') } end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems