Sha256: 6285f4185eb9a671ad2d857cfab8e37d76f1b98eabb9e2e77b40531e0e9c2c69
Contents?: true
Size: 741 Bytes
Versions: 14
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ShoppingCart < 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.circle(cx: '8', cy: '21', r: '1') s.circle(cx: '19', cy: '21', r: '1') s.path( d: 'M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems