Sha256: 7b559625f555612b3b0857c7213f17402d399d384621ed0fc52644cdc40f3a6e
Contents?: true
Size: 798 Bytes
Versions: 3
Compression:
Stored size: 798 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class BellElectricIcon < 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: "M18.8 4A6.3 8.7 0 0 1 20 9") s.path(d: "M9 9h.01") s.circle(cx: "9", cy: "9", r: "7") s.rect(width: "10", height: "6", x: "4", y: "16", rx: "2") s.path(d: "M14 19c3 0 4.6-1.6 4.6-1.6") s.circle(cx: "20", cy: "16", r: "2") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems