Sha256: cfec19e5b176c2525f2e6cc29fcfc24c2e9755c0537fb219629d2790ee9a7969
Contents?: true
Size: 622 Bytes
Versions: 26
Compression:
Stored size: 622 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Gem < 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 3h12l4 6-10 13L2 9Z') s.path(d: 'M11 3 8 9l4 13 4-13-3-6') s.path(d: 'M2 9h20') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems