Sha256: 0e378c6a6513546afe254245e85d4c27b9796e9733c58ff99ec60a6b3cbc6e16
Contents?: true
Size: 672 Bytes
Versions: 26
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class IceCreamCone < Base def view_template svg( class: classes, 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
26 entries across 26 versions & 2 rubygems