Sha256: 2cd512861bf4653b82b4fb99110cf2c729cf2b31dca8e59c9b83c994f0e16480
Contents?: true
Size: 795 Bytes
Versions: 3
Compression:
Stored size: 795 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class PackageIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.path(d: "m7.5 4.27 9 5.15") s.path( d: "M21 8a2 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z" ) s.path(d: "m3.3 7 8.7 5 8.7-5") s.path(d: "M12 22V12") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
phlex-lucide-0.428.0 | lib/phlex/lucide/icons/package_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/package_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/package_icon.rb |