Sha256: 25d5138d6d14bc2ddd31f4bed73d00d3b6e911a2d1a9402d828f9d5f70c85a3b
Contents?: true
Size: 665 Bytes
Versions: 18
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class IceCreamCone < 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: '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 end
Version data entries
18 entries across 18 versions & 2 rubygems