Sha256: 46b6c1f082e5b117e674d45d0b28f6ea78443c534e2219172a6a42825edba264
Contents?: true
Size: 857 Bytes
Versions: 4
Compression:
Stored size: 857 Bytes
Contents
# frozen_string_literal: true module RailsDevtools module Components class Lucide::Package < Lucide::Base def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: width, height: height, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", class: "lucide lucide-package" ) do |s| s.path( d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" ) s.path(d: "M12 22V12") s.path(d: "m3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7") s.path(d: "m7.5 4.27 9 5.15") end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems