6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'app/views/rails_devtools/components/lucide/package.rb', line 6
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
|