Sha256: 724df73fcdfd4b7f50a2dea1590a9c3a9d4efbf09ee4d397ead58bafee4fa802
Contents?: true
Size: 865 Bytes
Versions: 14
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Popcorn < 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: 'M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4' ) s.path(d: 'M10 22 9 8') s.path(d: 'm14 22 1-14') s.path( d: 'M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems