Sha256: be573aaafd995f04f64c882cedc43b705c8dd59a7f8e8b4c091149a4d2db9c82
Contents?: true
Size: 670 Bytes
Versions: 3
Compression:
Stored size: 670 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class IceCreamConeIcon < 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: "m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11") s.path(d: "M17 7A5 5 0 0 0 7 7") s.path(d: "M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems