Sha256: 3e230d57a1d956a1f9cd16169ead67cfc5bc7652d98c2f4a03b68a6d6c92aa4c
Contents?: true
Size: 608 Bytes
Versions: 14
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BookmarkCheck < 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: 'm19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z') s.path(d: 'm9 10 2 2 4-4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems