Sha256: 584ade3b4037057f1b353cb935ad20f827ed3517c87b8497b5f57d9c24cb9505
Contents?: true
Size: 615 Bytes
Versions: 14
Compression:
Stored size: 615 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Gem < 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: '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
14 entries across 14 versions & 2 rubygems