Sha256: 53d19fa2662734ffd1589dd3f287ed24d7ec50471eaa7ee1048e5c34436425ca
Contents?: true
Size: 622 Bytes
Versions: 14
Compression:
Stored size: 622 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Highlighter < 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: 'm9 11-6 6v3h9l3-3') s.path(d: 'm22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems