My personal site hosted @ https://indexx.dev
1---
2const props = Astro.props;
3---
4
5<svg
6 xmlns="http://www.w3.org/2000/svg"
7 width="24"
8 height="24"
9 viewBox="0 0 24 24"
10 {...props}
11>
12 <g fill="none">
13 <rect
14 width="16"
15 height="18"
16 x="4"
17 y="3"
18 fill="currentColor"
19 fill-opacity="0.25"
20 rx="2"></rect>
21 <path
22 stroke="currentColor"
23 stroke-linecap="round"
24 d="M8.5 6.5h7m-7 3h4m-4 3h6"
25 stroke-width="1"></path>
26 <path
27 fill="currentColor"
28 d="M4 19a2 2 0 0 1 2-2h11c.932 0 1.398 0 1.765-.152a2 2 0 0 0 1.083-1.083C20 15.398 20 14.932 20 14v3c0 1.886 0 2.828-.586 3.414S17.886 21 16 21H6a2 2 0 0 1-2-2"
29 ></path>
30 </g>
31</svg>