lucide-astro 0.307.0 → 0.308.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. package/dist/AlarmCheck.astro +13 -0
  2. package/dist/AlarmMinus.astro +13 -0
  3. package/dist/AlarmPlus.astro +14 -0
  4. package/dist/ArrowDownAz.astro +12 -0
  5. package/dist/ArrowDownZa.astro +12 -0
  6. package/dist/ArrowUpAz.astro +12 -0
  7. package/dist/ArrowUpZa.astro +12 -0
  8. package/dist/Axis3D.astro +9 -0
  9. package/dist/BetweenHorizonalEnd.astro +10 -0
  10. package/dist/BetweenHorizonalStart.astro +10 -0
  11. package/dist/BookTemplate.astro +18 -0
  12. package/dist/CircleSlashed.astro +9 -0
  13. package/dist/ClipboardEdit.astro +11 -0
  14. package/dist/ClipboardSignature.astro +12 -0
  15. package/dist/Columns.astro +9 -0
  16. package/dist/CurlyBraces.astro +9 -0
  17. package/dist/Edit.astro +9 -0
  18. package/dist/Edit2.astro +8 -0
  19. package/dist/Edit3.astro +9 -0
  20. package/dist/FileAxis3D.astro +11 -0
  21. package/dist/FileCog2.astro +18 -0
  22. package/dist/FileEdit.astro +10 -0
  23. package/dist/FileSignature.astro +10 -0
  24. package/dist/FolderCog2.astro +17 -0
  25. package/dist/FolderEdit.astro +9 -0
  26. package/dist/GanttSquare.astro +11 -0
  27. package/dist/GitCommit.astro +10 -0
  28. package/dist/Grid.astro +12 -0
  29. package/dist/Grid2X2.astro +10 -0
  30. package/dist/Grid3X3.astro +12 -0
  31. package/dist/Inspect.astro +9 -0
  32. package/dist/Layout.astro +10 -0
  33. package/dist/Move3D.astro +11 -0
  34. package/dist/PanelBottomInactive.astro +12 -0
  35. package/dist/PanelLeftInactive.astro +12 -0
  36. package/dist/PanelRightInactive.astro +12 -0
  37. package/dist/PanelTopInactive.astro +12 -0
  38. package/dist/PanelsLeftRight.astro +10 -0
  39. package/dist/PanelsTopBottom.astro +10 -0
  40. package/dist/PenBox.astro +9 -0
  41. package/dist/PenSquare.astro +2 -2
  42. package/dist/Rotate3D.astro +10 -0
  43. package/dist/Rows.astro +9 -0
  44. package/dist/Scale3D.astro +11 -0
  45. package/dist/SendHorizonal.astro +9 -0
  46. package/dist/ShieldClose.astro +10 -0
  47. package/dist/Sidebar.astro +9 -0
  48. package/dist/SidebarClose.astro +10 -0
  49. package/dist/SidebarOpen.astro +10 -0
  50. package/dist/SortAsc.astro +12 -0
  51. package/dist/SortDesc.astro +12 -0
  52. package/dist/SquareAsterisk.astro +11 -0
  53. package/dist/SquareCode.astro +10 -0
  54. package/dist/SquareDot.astro +9 -0
  55. package/dist/SquareEqual.astro +10 -0
  56. package/dist/SquareGantt.astro +11 -0
  57. package/dist/SquareKanban.astro +11 -0
  58. package/dist/SquareKanbanDashed.astro +22 -0
  59. package/dist/SquarePen.astro +9 -0
  60. package/dist/SquareSlash.astro +9 -0
  61. package/dist/Stars.astro +12 -0
  62. package/dist/TextSelection.astro +22 -0
  63. package/dist/Train.astro +14 -0
  64. package/dist/User2.astro +9 -0
  65. package/dist/UserCheck2.astro +10 -0
  66. package/dist/UserCircle.astro +10 -0
  67. package/dist/UserCircle2.astro +10 -0
  68. package/dist/UserCog2.astro +18 -0
  69. package/dist/UserMinus2.astro +10 -0
  70. package/dist/UserPlus2.astro +11 -0
  71. package/dist/UserSquare.astro +10 -0
  72. package/dist/UserSquare2.astro +10 -0
  73. package/dist/UserX2.astro +11 -0
  74. package/dist/Users2.astro +10 -0
  75. package/dist/Verified.astro +9 -0
  76. package/dist/index.d.ts +341 -267
  77. package/dist/index.js +341 -267
  78. package/package.json +2 -2
@@ -0,0 +1,13 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="12" cy="13" r="8" />
8
+ <path d="M5 3 2 6" />
9
+ <path d="m22 6-3-3" />
10
+ <path d="M6.38 18.7 4 21" />
11
+ <path d="M17.64 18.67 20 21" />
12
+ <path d="m9 13 2 2 4-4" />
13
+ </Layout>
@@ -0,0 +1,13 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="12" cy="13" r="8" />
8
+ <path d="M5 3 2 6" />
9
+ <path d="m22 6-3-3" />
10
+ <path d="M6.38 18.7 4 21" />
11
+ <path d="M17.64 18.67 20 21" />
12
+ <path d="M9 13h6" />
13
+ </Layout>
@@ -0,0 +1,14 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="12" cy="13" r="8" />
8
+ <path d="M5 3 2 6" />
9
+ <path d="m22 6-3-3" />
10
+ <path d="M6.38 18.7 4 21" />
11
+ <path d="M17.64 18.67 20 21" />
12
+ <path d="M12 10v6" />
13
+ <path d="M9 13h6" />
14
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 16 4 4 4-4" />
8
+ <path d="M7 20V4" />
9
+ <path d="M20 8h-5" />
10
+ <path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10" />
11
+ <path d="M15 14h5l-5 6h5" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 16 4 4 4-4" />
8
+ <path d="M7 4v16" />
9
+ <path d="M15 4h5l-5 6h5" />
10
+ <path d="M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" />
11
+ <path d="M20 18h-5" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 8 4-4 4 4" />
8
+ <path d="M7 4v16" />
9
+ <path d="M20 8h-5" />
10
+ <path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10" />
11
+ <path d="M15 14h5l-5 6h5" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 8 4-4 4 4" />
8
+ <path d="M7 4v16" />
9
+ <path d="M15 4h5l-5 6h5" />
10
+ <path d="M15 20v-3.5a2.5 2.5 0 0 1 5 0V20" />
11
+ <path d="M20 18h-5" />
12
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M4 4v16h16" />
8
+ <path d="m4 20 7-7" />
9
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="13" height="7" x="3" y="3" rx="1" />
8
+ <path d="m22 15-3-3 3-3" />
9
+ <rect width="13" height="7" x="3" y="14" rx="1" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="13" height="7" x="8" y="3" rx="1" />
8
+ <path d="m2 9 3 3-3 3" />
9
+ <rect width="13" height="7" x="8" y="14" rx="1" />
10
+ </Layout>
@@ -0,0 +1,18 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M20 22h-2" />
8
+ <path d="M20 15v2h-2" />
9
+ <path d="M4 19.5V15" />
10
+ <path d="M20 8v3" />
11
+ <path d="M18 2h2v2" />
12
+ <path d="M4 11V9" />
13
+ <path d="M12 2h2" />
14
+ <path d="M12 22h2" />
15
+ <path d="M12 17h2" />
16
+ <path d="M8 22H6.5a2.5 2.5 0 0 1 0-5H8" />
17
+ <path d="M4 5v-.5A2.5 2.5 0 0 1 6.5 2H8" />
18
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="12" cy="12" r="10" />
8
+ <path d="M22 2 2 22" />
9
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="8" height="4" x="8" y="2" rx="1" />
8
+ <path d="M10.4 12.6a2 2 0 0 1 3 3L8 21l-4 1 1-4Z" />
9
+ <path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5" />
10
+ <path d="M4 13.5V6a2 2 0 0 1 2-2h2" />
11
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="8" height="4" x="8" y="2" rx="1" />
8
+ <path d="M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5" />
9
+ <path d="M16 4h2a2 2 0 0 1 1.73 1" />
10
+ <path d="M8 18h1" />
11
+ <path d="M18.4 9.6a2 2 0 0 1 3 3L17 17l-4 1 1-4Z" />
12
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M12 3v18" />
9
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1" />
8
+ <path d="M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1" />
9
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
8
+ <path d="M18.375 2.625a2.121 2.121 0 1 1 3 3L12 15l-4 1 1-4Z" />
9
+ </Layout>
@@ -0,0 +1,8 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" />
8
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M12 20h9" />
8
+ <path d="M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z" />
9
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z" />
8
+ <polyline points="14 2 14 8 20 8" />
9
+ <path d="M8 10v8h8" />
10
+ <path d="m8 18 4-4" />
11
+ </Layout>
@@ -0,0 +1,18 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="6" cy="13" r="3" />
8
+ <path d="m9.7 14.4-.9-.3" />
9
+ <path d="m3.2 11.9-.9-.3" />
10
+ <path d="m4.6 16.7.3-.9" />
11
+ <path d="m7.6 16.7-.4-1" />
12
+ <path d="m4.8 10.3-.4-1" />
13
+ <path d="m2.3 14.6 1-.4" />
14
+ <path d="m8.7 11.8 1-.4" />
15
+ <path d="m7.4 9.3-.3.9" />
16
+ <path d="M14 2v6h6" />
17
+ <path d="M4 5.5V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-1.5" />
18
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M4 13.5V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2h-5.5" />
8
+ <path d="M14 2v6h6" />
9
+ <path d="M10.4 12.6a2 2 0 0 1 3 3L8 21l-4 1 1-4Z" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M20 19.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8.5L18 5.5" />
8
+ <path d="M8 18h1" />
9
+ <path d="M18.4 9.6a2 2 0 0 1 3 3L17 17l-4 1 1-4Z" />
10
+ </Layout>
@@ -0,0 +1,17 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="18" cy="18" r="3" />
8
+ <path d="M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.3" />
9
+ <path d="m21.7 19.4-.9-.3" />
10
+ <path d="m15.2 16.9-.9-.3" />
11
+ <path d="m16.6 21.7.3-.9" />
12
+ <path d="m19.1 15.2.3-.9" />
13
+ <path d="m19.6 21.7-.4-1" />
14
+ <path d="m16.8 15.3-.4-1" />
15
+ <path d="m14.3 19.6 1-.4" />
16
+ <path d="m20.7 16.8 1-.4" />
17
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M8.4 10.6a2 2 0 0 1 3 3L6 19l-4 1 1-4Z" />
8
+ <path d="M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5" />
9
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M9 8h7" />
9
+ <path d="M8 12h6" />
10
+ <path d="M11 16h5" />
11
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="12" cy="12" r="3" />
8
+ <line x1="3" x2="9" y1="12" y2="12" />
9
+ <line x1="15" x2="21" y1="12" y2="12" />
10
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M3 9h18" />
9
+ <path d="M3 15h18" />
10
+ <path d="M9 3v18" />
11
+ <path d="M15 3v18" />
12
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M3 12h18" />
9
+ <path d="M12 3v18" />
10
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M3 9h18" />
9
+ <path d="M3 15h18" />
10
+ <path d="M9 3v18" />
11
+ <path d="M15 3v18" />
12
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" />
8
+ <path d="m12 12 4 10 1.7-4.3L22 16Z" />
9
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M3 9h18" />
9
+ <path d="M9 21V9" />
10
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M5 3v16h16" />
8
+ <path d="m5 19 6-6" />
9
+ <path d="m2 6 3-3 3 3" />
10
+ <path d="m18 16 3 3-3 3" />
11
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M14 15h1" />
9
+ <path d="M19 15h2" />
10
+ <path d="M3 15h2" />
11
+ <path d="M9 15h1" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M9 14v1" />
9
+ <path d="M9 19v2" />
10
+ <path d="M9 3v2" />
11
+ <path d="M9 9v1" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M15 14v1" />
9
+ <path d="M15 19v2" />
10
+ <path d="M15 3v2" />
11
+ <path d="M15 9v1" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M14 9h1" />
9
+ <path d="M19 9h2" />
10
+ <path d="M3 9h2" />
11
+ <path d="M9 9h1" />
12
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M9 3v18" />
9
+ <path d="M15 3v18" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M21 9H3" />
9
+ <path d="M21 15H3" />
10
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
8
+ <path d="M18.375 2.625a2.121 2.121 0 1 1 3 3L12 15l-4 1 1-4Z" />
9
+ </Layout>
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout {...Astro.props}>
7
- <path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
8
- <path d="M18.5 2.5a2.12 2.12 0 0 1 3 3L12 15l-4 1 1-4Z" />
7
+ <path d="M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
8
+ <path d="M18.375 2.625a2.121 2.121 0 1 1 3 3L12 15l-4 1 1-4Z" />
9
9
  </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2" />
8
+ <path d="m15.194 13.707 3.814 1.86-1.86 3.814" />
9
+ <path d="M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4" />
10
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M3 12h18" />
9
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <circle cx="19" cy="19" r="2" />
8
+ <circle cx="5" cy="5" r="2" />
9
+ <path d="M5 7v12h12" />
10
+ <path d="m5 19 6-6" />
11
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 3 3 9-3 9 19-9Z" />
8
+ <path d="M6 12h16" />
9
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10" />
8
+ <path d="m14.5 9-5 5" />
9
+ <path d="m9.5 9 5 5" />
10
+ </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M9 3v18" />
9
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M9 3v18" />
9
+ <path d="m16 15-3-3 3-3" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <rect width="18" height="18" x="3" y="3" rx="2" />
8
+ <path d="M9 3v18" />
9
+ <path d="m14 9 3 3-3 3" />
10
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 8 4-4 4 4" />
8
+ <path d="M7 4v16" />
9
+ <path d="M11 12h4" />
10
+ <path d="M11 16h7" />
11
+ <path d="M11 20h10" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="m3 16 4 4 4-4" />
8
+ <path d="M7 20V4" />
9
+ <path d="M11 4h10" />
10
+ <path d="M11 8h7" />
11
+ <path d="M11 12h4" />
12
+ </Layout>