Sha256: a91f57534f35fe9cabe1671d818f2d4ba16236a0197d2bb7adcfd3ac4dce58f1
Contents?: true
Size: 632 Bytes
Versions: 3
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class DollarSignIcon < 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.line(x1: "12", x2: "12", y1: "2", y2: "22") s.path(d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems