Sha256: 1263131dd34d094e497f625f5e28a4c26e9203d77a874f0c5165a119d92ddab6
Contents?: true
Size: 629 Bytes
Versions: 3
Compression:
Stored size: 629 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class HighlighterIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) 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
Version data entries
3 entries across 3 versions & 1 rubygems