Sha256: c8f1c5c96fa5fe94223c4fb7b35f1da8174c8cf15c4f2dfe906eae2f660c532c
Contents?: true
Size: 722 Bytes
Versions: 26
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CupSoda < 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: 'm6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8') s.path(d: 'M5 8h14') s.path(d: 'M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0') s.path(d: 'm12 8 1-6h2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems