create-tauri-ui 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (245) hide show
  1. package/index.js +1 -1
  2. package/package.json +6 -6
  3. package/templates/.shared/.github/workflows/release.yml +112 -112
  4. package/templates/.shared/src-tauri/Cargo.lock +3835 -3835
  5. package/templates/.shared/src-tauri/Cargo.toml +4 -4
  6. package/templates/.shared/src-tauri/build.rs +3 -3
  7. package/templates/.shared/src-tauri/src/main.rs +22 -22
  8. package/templates/next/.github/workflows/release.yml +108 -108
  9. package/templates/next/.vscode/extensions.json +3 -3
  10. package/templates/next/README.md +95 -95
  11. package/templates/next/next-env.d.ts +5 -5
  12. package/templates/next/package.json +87 -87
  13. package/templates/next/pnpm-lock.yaml +4911 -4911
  14. package/templates/next/postcss.config.js +6 -6
  15. package/templates/next/prettier.config.js +35 -35
  16. package/templates/next/src/app/examples/layout.tsx +7 -7
  17. package/templates/next/src/app/page.tsx +5 -5
  18. package/templates/next/src/components/examples-nav.tsx +70 -70
  19. package/templates/next/src/components/greeting.tsx +21 -21
  20. package/templates/next/src/components/mode-toggle.tsx +43 -43
  21. package/templates/next/src/components/page-header.tsx +52 -52
  22. package/templates/next/src/components/style-switcher.tsx +19 -19
  23. package/templates/next/src/components/tailwind-indicator.tsx +18 -18
  24. package/templates/next/src/components/theme-provider.tsx +9 -9
  25. package/templates/next/src/components/ui/accordion.tsx +60 -60
  26. package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
  27. package/templates/next/src/components/ui/alert.tsx +59 -59
  28. package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
  29. package/templates/next/src/components/ui/avatar.tsx +50 -50
  30. package/templates/next/src/components/ui/badge.tsx +36 -36
  31. package/templates/next/src/components/ui/button.tsx +56 -56
  32. package/templates/next/src/components/ui/calendar.tsx +64 -64
  33. package/templates/next/src/components/ui/card.tsx +79 -79
  34. package/templates/next/src/components/ui/checkbox.tsx +30 -30
  35. package/templates/next/src/components/ui/collapsible.tsx +11 -11
  36. package/templates/next/src/components/ui/command.tsx +155 -155
  37. package/templates/next/src/components/ui/context-menu.tsx +200 -200
  38. package/templates/next/src/components/ui/dialog.tsx +123 -123
  39. package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
  40. package/templates/next/src/components/ui/form.tsx +176 -176
  41. package/templates/next/src/components/ui/hover-card.tsx +29 -29
  42. package/templates/next/src/components/ui/input.tsx +25 -25
  43. package/templates/next/src/components/ui/label.tsx +26 -26
  44. package/templates/next/src/components/ui/menubar.tsx +236 -236
  45. package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
  46. package/templates/next/src/components/ui/popover.tsx +31 -31
  47. package/templates/next/src/components/ui/progress.tsx +28 -28
  48. package/templates/next/src/components/ui/radio-group.tsx +44 -44
  49. package/templates/next/src/components/ui/scroll-area.tsx +48 -48
  50. package/templates/next/src/components/ui/select.tsx +121 -121
  51. package/templates/next/src/components/ui/separator.tsx +31 -31
  52. package/templates/next/src/components/ui/sheet.tsx +144 -144
  53. package/templates/next/src/components/ui/skeleton.tsx +15 -15
  54. package/templates/next/src/components/ui/slider.tsx +28 -28
  55. package/templates/next/src/components/ui/switch.tsx +29 -29
  56. package/templates/next/src/components/ui/table.tsx +114 -114
  57. package/templates/next/src/components/ui/tabs.tsx +55 -55
  58. package/templates/next/src/components/ui/textarea.tsx +24 -24
  59. package/templates/next/src/components/ui/toast.tsx +127 -127
  60. package/templates/next/src/components/ui/toaster.tsx +35 -35
  61. package/templates/next/src/components/ui/toggle.tsx +45 -45
  62. package/templates/next/src/components/ui/tooltip.tsx +30 -30
  63. package/templates/next/src/components/ui/use-toast.ts +192 -192
  64. package/templates/next/src/data/albums.ts +71 -71
  65. package/templates/next/src/data/playlists.ts +16 -16
  66. package/templates/next/src-tauri/Cargo.lock +3835 -3835
  67. package/templates/next/src-tauri/Cargo.toml +39 -39
  68. package/templates/next/src-tauri/build.rs +3 -3
  69. package/templates/sveltekit/.github/workflows/release.yml +108 -108
  70. package/templates/sveltekit/.prettierignore +13 -13
  71. package/templates/sveltekit/.prettierrc +8 -8
  72. package/templates/sveltekit/README.md +1 -1
  73. package/templates/sveltekit/package.json +85 -85
  74. package/templates/sveltekit/pnpm-lock.yaml +4177 -4177
  75. package/templates/sveltekit/postcss.config.cjs +13 -13
  76. package/templates/sveltekit/src/app.d.ts +18 -18
  77. package/templates/sveltekit/src/app.html +16 -16
  78. package/templates/sveltekit/src/index.test.ts +7 -7
  79. package/templates/sveltekit/src/lib/components/docs/TailwindIndicator.svelte +10 -10
  80. package/templates/sveltekit/src/lib/components/docs/charts/Bar.svelte +152 -152
  81. package/templates/sveltekit/src/lib/components/docs/dashboard/DashboardPage.svelte +108 -108
  82. package/templates/sveltekit/src/lib/components/docs/dashboard/MainNav.svelte +31 -31
  83. package/templates/sveltekit/src/lib/components/docs/dashboard/Overview.svelte +5 -5
  84. package/templates/sveltekit/src/lib/components/docs/dashboard/RecentSales.svelte +61 -61
  85. package/templates/sveltekit/src/lib/components/docs/dashboard/Search.svelte +7 -7
  86. package/templates/sveltekit/src/lib/components/docs/dashboard/index.ts +1 -1
  87. package/templates/sveltekit/src/lib/components/docs/examples-nav/ExampleCodeLink.svelte +19 -19
  88. package/templates/sveltekit/src/lib/components/docs/examples-nav/ExamplesNav.svelte +27 -27
  89. package/templates/sveltekit/src/lib/components/docs/examples-nav/index.ts +2 -2
  90. package/templates/sveltekit/src/lib/components/docs/icons/Apple.svelte +12 -12
  91. package/templates/sveltekit/src/lib/components/docs/icons/Aria.svelte +11 -11
  92. package/templates/sveltekit/src/lib/components/docs/icons/GitHub.svelte +12 -12
  93. package/templates/sveltekit/src/lib/components/docs/icons/Google.svelte +12 -12
  94. package/templates/sveltekit/src/lib/components/docs/icons/Logo.svelte +17 -17
  95. package/templates/sveltekit/src/lib/components/docs/icons/Minimize.svelte +12 -12
  96. package/templates/sveltekit/src/lib/components/docs/icons/Npm.svelte +12 -12
  97. package/templates/sveltekit/src/lib/components/docs/icons/PayPal.svelte +12 -12
  98. package/templates/sveltekit/src/lib/components/docs/icons/Pnpm.svelte +12 -12
  99. package/templates/sveltekit/src/lib/components/docs/icons/Radix.svelte +14 -14
  100. package/templates/sveltekit/src/lib/components/docs/icons/RadixSvelte.svelte +14 -14
  101. package/templates/sveltekit/src/lib/components/docs/icons/Tailwind.svelte +12 -12
  102. package/templates/sveltekit/src/lib/components/docs/icons/Yarn.svelte +12 -12
  103. package/templates/sveltekit/src/lib/components/docs/icons/index.ts +78 -78
  104. package/templates/sveltekit/src/lib/components/docs/index.ts +6 -6
  105. package/templates/sveltekit/src/lib/components/docs/light-switch/LightSwitch.svelte +75 -75
  106. package/templates/sveltekit/src/lib/components/docs/light-switch/index.ts +1 -1
  107. package/templates/sveltekit/src/lib/components/docs/light-switch/light-switch.ts +87 -87
  108. package/templates/sveltekit/src/lib/components/docs/light-switch/local-storage-store.ts +81 -81
  109. package/templates/sveltekit/src/lib/components/ui/accordion/Accordion.svelte +11 -11
  110. package/templates/sveltekit/src/lib/components/ui/accordion/AccordionContent.svelte +19 -19
  111. package/templates/sveltekit/src/lib/components/ui/accordion/AccordionItem.svelte +13 -13
  112. package/templates/sveltekit/src/lib/components/ui/accordion/AccordionTrigger.svelte +21 -21
  113. package/templates/sveltekit/src/lib/components/ui/accordion/index.ts +4 -4
  114. package/templates/sveltekit/src/lib/components/ui/alert/Alert.svelte +29 -29
  115. package/templates/sveltekit/src/lib/components/ui/alert/AlertDescription.svelte +10 -10
  116. package/templates/sveltekit/src/lib/components/ui/alert/AlertTitle.svelte +15 -15
  117. package/templates/sveltekit/src/lib/components/ui/alert/index.ts +3 -3
  118. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogAction.svelte +12 -12
  119. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogCancel.svelte +15 -15
  120. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogContent.svelte +22 -22
  121. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogDescription.svelte +14 -14
  122. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogFooter.svelte +13 -13
  123. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogHeader.svelte +10 -10
  124. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogOverlay.svelte +15 -15
  125. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogPortal.svelte +9 -9
  126. package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogTitle.svelte +11 -11
  127. package/templates/sveltekit/src/lib/components/ui/alert-dialog/index.ts +12 -12
  128. package/templates/sveltekit/src/lib/components/ui/aspect-ratio/AspectRatio.svelte +13 -13
  129. package/templates/sveltekit/src/lib/components/ui/aspect-ratio/index.ts +1 -1
  130. package/templates/sveltekit/src/lib/components/ui/avatar/Avatar.svelte +14 -14
  131. package/templates/sveltekit/src/lib/components/ui/avatar/AvatarFallback.svelte +14 -14
  132. package/templates/sveltekit/src/lib/components/ui/avatar/AvatarImage.svelte +17 -17
  133. package/templates/sveltekit/src/lib/components/ui/avatar/index.ts +3 -3
  134. package/templates/sveltekit/src/lib/components/ui/badge/Badge.svelte +39 -39
  135. package/templates/sveltekit/src/lib/components/ui/badge/index.ts +21 -21
  136. package/templates/sveltekit/src/lib/components/ui/button/Button.svelte +47 -47
  137. package/templates/sveltekit/src/lib/components/ui/button/index.ts +28 -28
  138. package/templates/sveltekit/src/lib/components/ui/card/Card.svelte +18 -18
  139. package/templates/sveltekit/src/lib/components/ui/card/CardContent.svelte +10 -10
  140. package/templates/sveltekit/src/lib/components/ui/card/CardDescription.svelte +10 -10
  141. package/templates/sveltekit/src/lib/components/ui/card/CardFooter.svelte +10 -10
  142. package/templates/sveltekit/src/lib/components/ui/card/CardHeader.svelte +10 -10
  143. package/templates/sveltekit/src/lib/components/ui/card/CardTitle.svelte +16 -16
  144. package/templates/sveltekit/src/lib/components/ui/card/index.ts +6 -6
  145. package/templates/sveltekit/src/lib/components/ui/checkbox/Checkbox.svelte +23 -23
  146. package/templates/sveltekit/src/lib/components/ui/checkbox/index.ts +1 -1
  147. package/templates/sveltekit/src/lib/components/ui/collapsible/index.ts +7 -7
  148. package/templates/sveltekit/src/lib/components/ui/dialog/DialogContent.svelte +29 -29
  149. package/templates/sveltekit/src/lib/components/ui/dialog/DialogDescription.svelte +14 -14
  150. package/templates/sveltekit/src/lib/components/ui/dialog/DialogFooter.svelte +13 -13
  151. package/templates/sveltekit/src/lib/components/ui/dialog/DialogHeader.svelte +10 -10
  152. package/templates/sveltekit/src/lib/components/ui/dialog/DialogOverlay.svelte +15 -15
  153. package/templates/sveltekit/src/lib/components/ui/dialog/DialogPortal.svelte +13 -13
  154. package/templates/sveltekit/src/lib/components/ui/dialog/DialogTitle.svelte +14 -14
  155. package/templates/sveltekit/src/lib/components/ui/dialog/index.ts +12 -12
  156. package/templates/sveltekit/src/lib/components/ui/hover-card/HoverCardContent.svelte +24 -24
  157. package/templates/sveltekit/src/lib/components/ui/hover-card/index.ts +6 -6
  158. package/templates/sveltekit/src/lib/components/ui/input/Input.svelte +30 -30
  159. package/templates/sveltekit/src/lib/components/ui/input/index.ts +1 -1
  160. package/templates/sveltekit/src/lib/components/ui/label/Label.svelte +16 -16
  161. package/templates/sveltekit/src/lib/components/ui/label/index.ts +1 -1
  162. package/templates/sveltekit/src/lib/components/ui/progress/Progress.svelte +22 -22
  163. package/templates/sveltekit/src/lib/components/ui/progress/index.ts +1 -1
  164. package/templates/sveltekit/src/lib/components/ui/radio-group/RadioGroup.svelte +13 -13
  165. package/templates/sveltekit/src/lib/components/ui/radio-group/RadioGroupItem.svelte +23 -23
  166. package/templates/sveltekit/src/lib/components/ui/radio-group/index.ts +2 -2
  167. package/templates/sveltekit/src/lib/components/ui/select/SelectContent.svelte +26 -26
  168. package/templates/sveltekit/src/lib/components/ui/select/SelectItem.svelte +29 -29
  169. package/templates/sveltekit/src/lib/components/ui/select/SelectLabel.svelte +14 -14
  170. package/templates/sveltekit/src/lib/components/ui/select/SelectSeparator.svelte +9 -9
  171. package/templates/sveltekit/src/lib/components/ui/select/SelectTrigger.svelte +21 -21
  172. package/templates/sveltekit/src/lib/components/ui/select/index.ts +10 -10
  173. package/templates/sveltekit/src/lib/components/ui/separator/Separator.svelte +22 -22
  174. package/templates/sveltekit/src/lib/components/ui/separator/index.ts +1 -1
  175. package/templates/sveltekit/src/lib/components/ui/sheet/SheetContent.svelte +27 -27
  176. package/templates/sveltekit/src/lib/components/ui/sheet/SheetDescription.svelte +11 -11
  177. package/templates/sveltekit/src/lib/components/ui/sheet/SheetFooter.svelte +13 -13
  178. package/templates/sveltekit/src/lib/components/ui/sheet/SheetHeader.svelte +10 -10
  179. package/templates/sveltekit/src/lib/components/ui/sheet/SheetOverlay.svelte +15 -15
  180. package/templates/sveltekit/src/lib/components/ui/sheet/SheetPortal.svelte +28 -28
  181. package/templates/sveltekit/src/lib/components/ui/sheet/SheetTitle.svelte +14 -14
  182. package/templates/sveltekit/src/lib/components/ui/sheet/index.ts +102 -102
  183. package/templates/sveltekit/src/lib/components/ui/skeleton/Skeleton.svelte +8 -8
  184. package/templates/sveltekit/src/lib/components/ui/skeleton/index.ts +1 -1
  185. package/templates/sveltekit/src/lib/components/ui/slider/Slider.svelte +22 -22
  186. package/templates/sveltekit/src/lib/components/ui/slider/index.ts +1 -1
  187. package/templates/sveltekit/src/lib/components/ui/switch/Switch.svelte +32 -32
  188. package/templates/sveltekit/src/lib/components/ui/switch/index.ts +1 -1
  189. package/templates/sveltekit/src/lib/components/ui/table/Table.svelte +12 -12
  190. package/templates/sveltekit/src/lib/components/ui/table/TableBody.svelte +10 -10
  191. package/templates/sveltekit/src/lib/components/ui/table/TableCaption.svelte +10 -10
  192. package/templates/sveltekit/src/lib/components/ui/table/TableCell.svelte +10 -10
  193. package/templates/sveltekit/src/lib/components/ui/table/TableFooter.svelte +10 -10
  194. package/templates/sveltekit/src/lib/components/ui/table/TableHead.svelte +16 -16
  195. package/templates/sveltekit/src/lib/components/ui/table/TableHeader.svelte +10 -10
  196. package/templates/sveltekit/src/lib/components/ui/table/TableRow.svelte +16 -16
  197. package/templates/sveltekit/src/lib/components/ui/table/index.ts +8 -8
  198. package/templates/sveltekit/src/lib/components/ui/tabs/TabsContent.svelte +20 -20
  199. package/templates/sveltekit/src/lib/components/ui/tabs/TabsList.svelte +17 -17
  200. package/templates/sveltekit/src/lib/components/ui/tabs/TabsTrigger.svelte +20 -20
  201. package/templates/sveltekit/src/lib/components/ui/tabs/index.ts +7 -7
  202. package/templates/sveltekit/src/lib/components/ui/textarea/Textarea.svelte +30 -30
  203. package/templates/sveltekit/src/lib/components/ui/textarea/index.ts +1 -1
  204. package/templates/sveltekit/src/lib/components/ui/toggle/Toggle.svelte +44 -44
  205. package/templates/sveltekit/src/lib/components/ui/toggle/index.ts +1 -1
  206. package/templates/sveltekit/src/lib/components/ui/tooltip/TooltipContent.svelte +22 -22
  207. package/templates/sveltekit/src/lib/components/ui/tooltip/index.ts +6 -6
  208. package/templates/sveltekit/src/lib/config/components.ts +306 -306
  209. package/templates/sveltekit/src/lib/config/docs.ts +356 -356
  210. package/templates/sveltekit/src/lib/config/site.ts +15 -15
  211. package/templates/sveltekit/src/lib/types/docs.ts +50 -50
  212. package/templates/sveltekit/src/lib/types/nav.ts +18 -18
  213. package/templates/sveltekit/src/lib/utils.ts +75 -75
  214. package/templates/sveltekit/src/routes/+layout.svelte +48 -48
  215. package/templates/sveltekit/src/routes/+page.ts +6 -6
  216. package/templates/sveltekit/src/routes/authentication/+page.svelte +57 -57
  217. package/templates/sveltekit/src/routes/authentication/+page.ts +7 -7
  218. package/templates/sveltekit/src/routes/authentication/UserAuthForm.svelte +61 -61
  219. package/templates/sveltekit/src/routes/cards/+page.svelte +26 -26
  220. package/templates/sveltekit/src/routes/cards/+page.ts +7 -7
  221. package/templates/sveltekit/src/routes/cards/CookieSettings.svelte +52 -52
  222. package/templates/sveltekit/src/routes/cards/CreateAccount.svelte +52 -52
  223. package/templates/sveltekit/src/routes/cards/DemoContainer.svelte +10 -10
  224. package/templates/sveltekit/src/routes/cards/Notifications.svelte +38 -38
  225. package/templates/sveltekit/src/routes/cards/PaymentMethod.svelte +110 -110
  226. package/templates/sveltekit/src/routes/cards/ReportAnIssue.svelte +71 -71
  227. package/templates/sveltekit/src/routes/cards/ShareDocument.svelte +91 -91
  228. package/templates/sveltekit/src/routes/dashboard/+page.svelte +5 -5
  229. package/templates/sveltekit/src/routes/dashboard/+page.ts +7 -7
  230. package/templates/sveltekit/src/routes/music/albums.ts +61 -61
  231. package/templates/sveltekit/src/routes/music/playlists.ts +16 -16
  232. package/templates/sveltekit/src/styles/globals.css +125 -125
  233. package/templates/sveltekit/src/styles/mdsvex.css +80 -80
  234. package/templates/sveltekit/src-tauri/Cargo.lock +3835 -3835
  235. package/templates/sveltekit/src-tauri/Cargo.toml +39 -39
  236. package/templates/sveltekit/src-tauri/build.rs +3 -3
  237. package/templates/sveltekit/src-tauri/tauri.conf.json +71 -71
  238. package/templates/sveltekit/svelte.config.js +22 -22
  239. package/templates/sveltekit/tailwind.config.js +67 -67
  240. package/templates/sveltekit/tsconfig.json +13 -13
  241. package/templates/vite/package.json +83 -83
  242. package/templates/vite/pnpm-lock.yaml +5176 -5176
  243. package/templates/vite/src-tauri/Cargo.lock +3835 -3835
  244. package/templates/vite/src-tauri/Cargo.toml +39 -39
  245. package/templates/vite/src-tauri/build.rs +3 -3
@@ -1,31 +1,31 @@
1
- <script lang="ts">
2
- import { cn } from '$lib/utils';
3
-
4
- let className: string | undefined | null = undefined;
5
- export { className as class };
6
- </script>
7
-
8
- <nav class={cn('flex items-center space-x-4 lg:space-x-6', className)}>
9
- <a href="/examples/dashboard" class="text-sm font-medium transition-colors hover:text-primary">
10
- Overview
11
- </a>
12
-
13
- <a
14
- href="/examples/dashboard"
15
- class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
16
- >
17
- Customers
18
- </a>
19
- <a
20
- href="/examples/dashboard"
21
- class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
22
- >
23
- Products
24
- </a>
25
- <a
26
- href="/examples/dashboard"
27
- class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
28
- >
29
- Settings
30
- </a>
31
- </nav>
1
+ <script lang="ts">
2
+ import { cn } from '$lib/utils';
3
+
4
+ let className: string | undefined | null = undefined;
5
+ export { className as class };
6
+ </script>
7
+
8
+ <nav class={cn('flex items-center space-x-4 lg:space-x-6', className)}>
9
+ <a href="/examples/dashboard" class="text-sm font-medium transition-colors hover:text-primary">
10
+ Overview
11
+ </a>
12
+
13
+ <a
14
+ href="/examples/dashboard"
15
+ class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
16
+ >
17
+ Customers
18
+ </a>
19
+ <a
20
+ href="/examples/dashboard"
21
+ class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
22
+ >
23
+ Products
24
+ </a>
25
+ <a
26
+ href="/examples/dashboard"
27
+ class="text-sm font-medium text-muted-foreground transition-colors hover:text-primary"
28
+ >
29
+ Settings
30
+ </a>
31
+ </nav>
@@ -1,5 +1,5 @@
1
- <script lang="ts">
2
- import Bar from '$components/docs/charts/Bar.svelte';
3
- </script>
4
-
5
- <Bar />
1
+ <script lang="ts">
2
+ import Bar from '$components/docs/charts/Bar.svelte';
3
+ </script>
4
+
5
+ <Bar />
@@ -1,61 +1,61 @@
1
- <script lang="ts">
2
- import { Avatar, AvatarFallback, AvatarImage } from '$components/ui/avatar';
3
- </script>
4
-
5
- <div class="space-y-8">
6
- <div class="flex items-center">
7
- <Avatar class="h-9 w-9">
8
- <AvatarImage src="/avatars/01.png" alt="Avatar" />
9
- <AvatarFallback>OM</AvatarFallback>
10
- </Avatar>
11
- <div class="ml-4 space-y-1">
12
- <p class="text-sm font-medium leading-none">Olivia Martin</p>
13
- <p class="text-sm text-muted-foreground">olivia.martin@email.com</p>
14
- </div>
15
- <div class="ml-auto font-medium">+$1,999.00</div>
16
- </div>
17
- <div class="flex items-center">
18
- <Avatar class="flex h-9 w-9 items-center justify-center space-y-0 border">
19
- <AvatarImage src="/avatars/02.png" alt="Avatar" />
20
- <AvatarFallback>JL</AvatarFallback>
21
- </Avatar>
22
- <div class="ml-4 space-y-1">
23
- <p class="text-sm font-medium leading-none">Jackson Lee</p>
24
- <p class="text-sm text-muted-foreground">jackson.lee@email.com</p>
25
- </div>
26
- <div class="ml-auto font-medium">+$39.00</div>
27
- </div>
28
- <div class="flex items-center">
29
- <Avatar class="h-9 w-9">
30
- <AvatarImage src="/avatars/03.png" alt="Avatar" />
31
- <AvatarFallback>IN</AvatarFallback>
32
- </Avatar>
33
- <div class="ml-4 space-y-1">
34
- <p class="text-sm font-medium leading-none">Isabella Nguyen</p>
35
- <p class="text-sm text-muted-foreground">isabella.nguyen@email.com</p>
36
- </div>
37
- <div class="ml-auto font-medium">+$299.00</div>
38
- </div>
39
- <div class="flex items-center">
40
- <Avatar class="h-9 w-9">
41
- <AvatarImage src="/avatars/04.png" alt="Avatar" />
42
- <AvatarFallback>WK</AvatarFallback>
43
- </Avatar>
44
- <div class="ml-4 space-y-1">
45
- <p class="text-sm font-medium leading-none">William Kim</p>
46
- <p class="text-sm text-muted-foreground">will@email.com</p>
47
- </div>
48
- <div class="ml-auto font-medium">+$99.00</div>
49
- </div>
50
- <div class="flex items-center">
51
- <Avatar class="h-9 w-9">
52
- <AvatarImage src="/avatars/05.png" alt="Avatar" />
53
- <AvatarFallback>SD</AvatarFallback>
54
- </Avatar>
55
- <div class="ml-4 space-y-1">
56
- <p class="text-sm font-medium leading-none">Sofia Davis</p>
57
- <p class="text-sm text-muted-foreground">sofia.davis@email.com</p>
58
- </div>
59
- <div class="ml-auto font-medium">+$39.00</div>
60
- </div>
61
- </div>
1
+ <script lang="ts">
2
+ import { Avatar, AvatarFallback, AvatarImage } from '$components/ui/avatar';
3
+ </script>
4
+
5
+ <div class="space-y-8">
6
+ <div class="flex items-center">
7
+ <Avatar class="h-9 w-9">
8
+ <AvatarImage src="/avatars/01.png" alt="Avatar" />
9
+ <AvatarFallback>OM</AvatarFallback>
10
+ </Avatar>
11
+ <div class="ml-4 space-y-1">
12
+ <p class="text-sm font-medium leading-none">Olivia Martin</p>
13
+ <p class="text-sm text-muted-foreground">olivia.martin@email.com</p>
14
+ </div>
15
+ <div class="ml-auto font-medium">+$1,999.00</div>
16
+ </div>
17
+ <div class="flex items-center">
18
+ <Avatar class="flex h-9 w-9 items-center justify-center space-y-0 border">
19
+ <AvatarImage src="/avatars/02.png" alt="Avatar" />
20
+ <AvatarFallback>JL</AvatarFallback>
21
+ </Avatar>
22
+ <div class="ml-4 space-y-1">
23
+ <p class="text-sm font-medium leading-none">Jackson Lee</p>
24
+ <p class="text-sm text-muted-foreground">jackson.lee@email.com</p>
25
+ </div>
26
+ <div class="ml-auto font-medium">+$39.00</div>
27
+ </div>
28
+ <div class="flex items-center">
29
+ <Avatar class="h-9 w-9">
30
+ <AvatarImage src="/avatars/03.png" alt="Avatar" />
31
+ <AvatarFallback>IN</AvatarFallback>
32
+ </Avatar>
33
+ <div class="ml-4 space-y-1">
34
+ <p class="text-sm font-medium leading-none">Isabella Nguyen</p>
35
+ <p class="text-sm text-muted-foreground">isabella.nguyen@email.com</p>
36
+ </div>
37
+ <div class="ml-auto font-medium">+$299.00</div>
38
+ </div>
39
+ <div class="flex items-center">
40
+ <Avatar class="h-9 w-9">
41
+ <AvatarImage src="/avatars/04.png" alt="Avatar" />
42
+ <AvatarFallback>WK</AvatarFallback>
43
+ </Avatar>
44
+ <div class="ml-4 space-y-1">
45
+ <p class="text-sm font-medium leading-none">William Kim</p>
46
+ <p class="text-sm text-muted-foreground">will@email.com</p>
47
+ </div>
48
+ <div class="ml-auto font-medium">+$99.00</div>
49
+ </div>
50
+ <div class="flex items-center">
51
+ <Avatar class="h-9 w-9">
52
+ <AvatarImage src="/avatars/05.png" alt="Avatar" />
53
+ <AvatarFallback>SD</AvatarFallback>
54
+ </Avatar>
55
+ <div class="ml-4 space-y-1">
56
+ <p class="text-sm font-medium leading-none">Sofia Davis</p>
57
+ <p class="text-sm text-muted-foreground">sofia.davis@email.com</p>
58
+ </div>
59
+ <div class="ml-auto font-medium">+$39.00</div>
60
+ </div>
61
+ </div>
@@ -1,7 +1,7 @@
1
- <script lang="ts">
2
- import { Input } from '$components/ui/input';
3
- </script>
4
-
5
- <div>
6
- <Input type="search" placeholder="Search..." class="h-9 md:w-[100px] lg:w-[300px]" />
7
- </div>
1
+ <script lang="ts">
2
+ import { Input } from '$components/ui/input';
3
+ </script>
4
+
5
+ <div>
6
+ <Input type="search" placeholder="Search..." class="h-9 md:w-[100px] lg:w-[300px]" />
7
+ </div>
@@ -1 +1 @@
1
- export { default as DashboardPage } from './DashboardPage.svelte';
1
+ export { default as DashboardPage } from './DashboardPage.svelte';
@@ -1,19 +1,19 @@
1
- <script lang="ts">
2
- import { ArrowRight } from 'lucide-svelte';
3
- import { page } from '$app/stores';
4
- import { examples } from '$lib/config/docs';
5
-
6
- $: example = examples.find((example) => $page.url.pathname.startsWith(example.href));
7
- </script>
8
-
9
- {#if example?.code}
10
- <a
11
- href={example.code}
12
- target="_blank"
13
- rel="nofollow"
14
- class="absolute right-0 top-0 hidden items-center rounded-[0.5rem] text-sm font-medium md:flex"
15
- >
16
- View Code
17
- <ArrowRight class="ml-1 h-4 w-4" />
18
- </a>
19
- {/if}
1
+ <script lang="ts">
2
+ import { ArrowRight } from 'lucide-svelte';
3
+ import { page } from '$app/stores';
4
+ import { examples } from '$lib/config/docs';
5
+
6
+ $: example = examples.find((example) => $page.url.pathname.startsWith(example.href));
7
+ </script>
8
+
9
+ {#if example?.code}
10
+ <a
11
+ href={example.code}
12
+ target="_blank"
13
+ rel="nofollow"
14
+ class="absolute right-0 top-0 hidden items-center rounded-[0.5rem] text-sm font-medium md:flex"
15
+ >
16
+ View Code
17
+ <ArrowRight class="ml-1 h-4 w-4" />
18
+ </a>
19
+ {/if}
@@ -1,27 +1,27 @@
1
- <script lang="ts">
2
- import { page } from '$app/stores';
3
- import { examples } from '$lib/config/docs';
4
- import { cn } from '$lib/utils';
5
- import ExampleCodeLink from './ExampleCodeLink.svelte';
6
-
7
- let className: string | undefined | null = undefined;
8
- export { className as class };
9
- </script>
10
-
11
- <div class="w-full">
12
- <div class={cn('', className)} {...$$restProps}>
13
- {#each examples as example, index (index)}
14
- <a
15
- href={example.href}
16
- class={cn(
17
- 'px-2',
18
- $page.url.pathname.startsWith(example.href)
19
- ? 'font-bold text-primary'
20
- : 'font-medium text-muted-foreground'
21
- )}
22
- >
23
- {example.name}
24
- </a>
25
- {/each}
26
- </div>
27
- </div>
1
+ <script lang="ts">
2
+ import { page } from '$app/stores';
3
+ import { examples } from '$lib/config/docs';
4
+ import { cn } from '$lib/utils';
5
+ import ExampleCodeLink from './ExampleCodeLink.svelte';
6
+
7
+ let className: string | undefined | null = undefined;
8
+ export { className as class };
9
+ </script>
10
+
11
+ <div class="w-full">
12
+ <div class={cn('', className)} {...$$restProps}>
13
+ {#each examples as example, index (index)}
14
+ <a
15
+ href={example.href}
16
+ class={cn(
17
+ 'px-2',
18
+ $page.url.pathname.startsWith(example.href)
19
+ ? 'font-bold text-primary'
20
+ : 'font-medium text-muted-foreground'
21
+ )}
22
+ >
23
+ {example.name}
24
+ </a>
25
+ {/each}
26
+ </div>
27
+ </div>
@@ -1,2 +1,2 @@
1
- export { default as ExampleCodeLink } from './ExampleCodeLink.svelte';
2
- export { default as ExamplesNav } from './ExamplesNav.svelte';
1
+ export { default as ExampleCodeLink } from './ExampleCodeLink.svelte';
2
+ export { default as ExamplesNav } from './ExamplesNav.svelte';
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg role="img" viewBox="0 0 24 24" {...$$restProps}>
8
- <path
9
- d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701"
10
- fill="currentColor"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg role="img" viewBox="0 0 24 24" {...$$restProps}>
8
+ <path
9
+ d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701"
10
+ fill="currentColor"
11
+ />
12
+ </svg>
@@ -1,11 +1,11 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg role="img" viewBox="0 0 24 24" fill="currentColor" {...$$restProps}>
8
- <path
9
- d="M13.966 22.624l-1.69-4.281H8.122l3.892-9.144 5.662 13.425zM8.884 1.376H0v21.248zm15.116 0h-8.884L24 22.624Z"
10
- />
11
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg role="img" viewBox="0 0 24 24" fill="currentColor" {...$$restProps}>
8
+ <path
9
+ d="M13.966 22.624l-1.69-4.281H8.122l3.892-9.144 5.662 13.425zM8.884 1.376H0v21.248zm15.116 0h-8.884L24 22.624Z"
10
+ />
11
+ </svg>
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg viewBox="0 0 438.549 438.549" {...$$restProps}>
8
- <path
9
- fill="currentColor"
10
- d="M409.132 114.573c-19.608-33.596-46.205-60.194-79.798-79.8-33.598-19.607-70.277-29.408-110.063-29.408-39.781 0-76.472 9.804-110.063 29.408-33.596 19.605-60.192 46.204-79.8 79.8C9.803 148.168 0 184.854 0 224.63c0 47.78 13.94 90.745 41.827 128.906 27.884 38.164 63.906 64.572 108.063 79.227 5.14.954 8.945.283 11.419-1.996 2.475-2.282 3.711-5.14 3.711-8.562 0-.571-.049-5.708-.144-15.417a2549.81 2549.81 0 01-.144-25.406l-6.567 1.136c-4.187.767-9.469 1.092-15.846 1-6.374-.089-12.991-.757-19.842-1.999-6.854-1.231-13.229-4.086-19.13-8.559-5.898-4.473-10.085-10.328-12.56-17.556l-2.855-6.57c-1.903-4.374-4.899-9.233-8.992-14.559-4.093-5.331-8.232-8.945-12.419-10.848l-1.999-1.431c-1.332-.951-2.568-2.098-3.711-3.429-1.142-1.331-1.997-2.663-2.568-3.997-.572-1.335-.098-2.43 1.427-3.289 1.525-.859 4.281-1.276 8.28-1.276l5.708.853c3.807.763 8.516 3.042 14.133 6.851 5.614 3.806 10.229 8.754 13.846 14.842 4.38 7.806 9.657 13.754 15.846 17.847 6.184 4.093 12.419 6.136 18.699 6.136 6.28 0 11.704-.476 16.274-1.423 4.565-.952 8.848-2.383 12.847-4.285 1.713-12.758 6.377-22.559 13.988-29.41-10.848-1.14-20.601-2.857-29.264-5.14-8.658-2.286-17.605-5.996-26.835-11.14-9.235-5.137-16.896-11.516-22.985-19.126-6.09-7.614-11.088-17.61-14.987-29.979-3.901-12.374-5.852-26.648-5.852-42.826 0-23.035 7.52-42.637 22.557-58.817-7.044-17.318-6.379-36.732 1.997-58.24 5.52-1.715 13.706-.428 24.554 3.853 10.85 4.283 18.794 7.952 23.84 10.994 5.046 3.041 9.089 5.618 12.135 7.708 17.705-4.947 35.976-7.421 54.818-7.421s37.117 2.474 54.823 7.421l10.849-6.849c7.419-4.57 16.18-8.758 26.262-12.565 10.088-3.805 17.802-4.853 23.134-3.138 8.562 21.509 9.325 40.922 2.279 58.24 15.036 16.18 22.559 35.787 22.559 58.817 0 16.178-1.958 30.497-5.853 42.966-3.9 12.471-8.941 22.457-15.125 29.979-6.191 7.521-13.901 13.85-23.131 18.986-9.232 5.14-18.182 8.85-26.84 11.136-8.662 2.286-18.415 4.004-29.263 5.146 9.894 8.562 14.842 22.077 14.842 40.539v60.237c0 3.422 1.19 6.279 3.572 8.562 2.379 2.279 6.136 2.95 11.276 1.995 44.163-14.653 80.185-41.062 108.068-79.226 27.88-38.161 41.825-81.126 41.825-128.906-.01-39.771-9.818-76.454-29.414-110.049z"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg viewBox="0 0 438.549 438.549" {...$$restProps}>
8
+ <path
9
+ fill="currentColor"
10
+ d="M409.132 114.573c-19.608-33.596-46.205-60.194-79.798-79.8-33.598-19.607-70.277-29.408-110.063-29.408-39.781 0-76.472 9.804-110.063 29.408-33.596 19.605-60.192 46.204-79.8 79.8C9.803 148.168 0 184.854 0 224.63c0 47.78 13.94 90.745 41.827 128.906 27.884 38.164 63.906 64.572 108.063 79.227 5.14.954 8.945.283 11.419-1.996 2.475-2.282 3.711-5.14 3.711-8.562 0-.571-.049-5.708-.144-15.417a2549.81 2549.81 0 01-.144-25.406l-6.567 1.136c-4.187.767-9.469 1.092-15.846 1-6.374-.089-12.991-.757-19.842-1.999-6.854-1.231-13.229-4.086-19.13-8.559-5.898-4.473-10.085-10.328-12.56-17.556l-2.855-6.57c-1.903-4.374-4.899-9.233-8.992-14.559-4.093-5.331-8.232-8.945-12.419-10.848l-1.999-1.431c-1.332-.951-2.568-2.098-3.711-3.429-1.142-1.331-1.997-2.663-2.568-3.997-.572-1.335-.098-2.43 1.427-3.289 1.525-.859 4.281-1.276 8.28-1.276l5.708.853c3.807.763 8.516 3.042 14.133 6.851 5.614 3.806 10.229 8.754 13.846 14.842 4.38 7.806 9.657 13.754 15.846 17.847 6.184 4.093 12.419 6.136 18.699 6.136 6.28 0 11.704-.476 16.274-1.423 4.565-.952 8.848-2.383 12.847-4.285 1.713-12.758 6.377-22.559 13.988-29.41-10.848-1.14-20.601-2.857-29.264-5.14-8.658-2.286-17.605-5.996-26.835-11.14-9.235-5.137-16.896-11.516-22.985-19.126-6.09-7.614-11.088-17.61-14.987-29.979-3.901-12.374-5.852-26.648-5.852-42.826 0-23.035 7.52-42.637 22.557-58.817-7.044-17.318-6.379-36.732 1.997-58.24 5.52-1.715 13.706-.428 24.554 3.853 10.85 4.283 18.794 7.952 23.84 10.994 5.046 3.041 9.089 5.618 12.135 7.708 17.705-4.947 35.976-7.421 54.818-7.421s37.117 2.474 54.823 7.421l10.849-6.849c7.419-4.57 16.18-8.758 26.262-12.565 10.088-3.805 17.802-4.853 23.134-3.138 8.562 21.509 9.325 40.922 2.279 58.24 15.036 16.18 22.559 35.787 22.559 58.817 0 16.178-1.958 30.497-5.853 42.966-3.9 12.471-8.941 22.457-15.125 29.979-6.191 7.521-13.901 13.85-23.131 18.986-9.232 5.14-18.182 8.85-26.84 11.136-8.662 2.286-18.415 4.004-29.263 5.146 9.894 8.562 14.842 22.077 14.842 40.539v60.237c0 3.422 1.19 6.279 3.572 8.562 2.379 2.279 6.136 2.95 11.276 1.995 44.163-14.653 80.185-41.062 108.068-79.226 27.88-38.161 41.825-81.126 41.825-128.906-.01-39.771-9.818-76.454-29.414-110.049z"
11
+ />
12
+ </svg>
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg role="img" viewBox="0 0 24 24" {...$$restProps}>
8
- <path
9
- fill="currentColor"
10
- d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg role="img" viewBox="0 0 24 24" {...$$restProps}>
8
+ <path
9
+ fill="currentColor"
10
+ d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z"
11
+ />
12
+ </svg>
@@ -1,17 +1,17 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg
8
- viewBox="0 0 24 24"
9
- fill="currentColor"
10
- stroke="currentColor"
11
- stroke-width="2"
12
- stroke-linecap="round"
13
- stroke-linejoin="round"
14
- {...$$restProps}
15
- >
16
- <circle cx="12" cy="12" r="10" />
17
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg
8
+ viewBox="0 0 24 24"
9
+ fill="currentColor"
10
+ stroke="currentColor"
11
+ stroke-width="2"
12
+ stroke-linecap="round"
13
+ stroke-linejoin="round"
14
+ {...$$restProps}
15
+ >
16
+ <circle cx="12" cy="12" r="10" />
17
+ </svg>
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" {...$$restProps}>
8
- <path
9
- fill="currentColor"
10
- d="M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" {...$$restProps}>
8
+ <path
9
+ fill="currentColor"
10
+ d="M480 480H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h448c17.7 0 32 14.3 32 32s-14.3 32-32 32z"
11
+ />
12
+ </svg>
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg viewBox="0 0 24 24" {...$$restProps}>
8
- <path
9
- d="M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z"
10
- fill="currentColor"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg viewBox="0 0 24 24" {...$$restProps}>
8
+ <path
9
+ d="M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z"
10
+ fill="currentColor"
11
+ />
12
+ </svg>
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg role="img" viewBox="0 0 24 24" {...$$restProps}>
8
- <path
9
- d="M7.076 21.337H2.47a.641.641 0 0 1-.633-.74L4.944.901C5.026.382 5.474 0 5.998 0h7.46c2.57 0 4.578.543 5.69 1.81 1.01 1.15 1.304 2.42 1.012 4.287-.023.143-.047.288-.077.437-.983 5.05-4.349 6.797-8.647 6.797h-2.19c-.524 0-.968.382-1.05.9l-1.12 7.106zm14.146-14.42a3.35 3.35 0 0 0-.607-.541c-.013.076-.026.175-.041.254-.93 4.778-4.005 7.201-9.138 7.201h-2.19a.563.563 0 0 0-.556.479l-1.187 7.527h-.506l-.24 1.516a.56.56 0 0 0 .554.647h3.882c.46 0 .85-.334.922-.788.06-.26.76-4.852.816-5.09a.932.932 0 0 1 .923-.788h.58c3.76 0 6.705-1.528 7.565-5.946.36-1.847.174-3.388-.777-4.471z"
10
- fill="currentColor"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg role="img" viewBox="0 0 24 24" {...$$restProps}>
8
+ <path
9
+ d="M7.076 21.337H2.47a.641.641 0 0 1-.633-.74L4.944.901C5.026.382 5.474 0 5.998 0h7.46c2.57 0 4.578.543 5.69 1.81 1.01 1.15 1.304 2.42 1.012 4.287-.023.143-.047.288-.077.437-.983 5.05-4.349 6.797-8.647 6.797h-2.19c-.524 0-.968.382-1.05.9l-1.12 7.106zm14.146-14.42a3.35 3.35 0 0 0-.607-.541c-.013.076-.026.175-.041.254-.93 4.778-4.005 7.201-9.138 7.201h-2.19a.563.563 0 0 0-.556.479l-1.187 7.527h-.506l-.24 1.516a.56.56 0 0 0 .554.647h3.882c.46 0 .85-.334.922-.788.06-.26.76-4.852.816-5.09a.932.932 0 0 1 .923-.788h.58c3.76 0 6.705-1.528 7.565-5.946.36-1.847.174-3.388-.777-4.471z"
10
+ fill="currentColor"
11
+ />
12
+ </svg>
@@ -1,12 +1,12 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg viewBox="0 0 24 24" {...$$restProps}>
8
- <path
9
- d="M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z"
10
- fill="currentColor"
11
- />
12
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg viewBox="0 0 24 24" {...$$restProps}>
8
+ <path
9
+ d="M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z"
10
+ fill="currentColor"
11
+ />
12
+ </svg>
@@ -1,14 +1,14 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg viewBox="0 0 25 25" fill="none" {...$$restProps}>
8
- <path d="M12 25C7.58173 25 4 21.4183 4 17C4 12.5817 7.58173 9 12 9V25Z" fill="currentcolor" />
9
- <path d="M12 0H4V8H12V0Z" fill="currentcolor" />
10
- <path
11
- d="M17 8C19.2091 8 21 6.20914 21 4C21 1.79086 19.2091 0 17 0C14.7909 0 13 1.79086 13 4C13 6.20914 14.7909 8 17 8Z"
12
- fill="currentcolor"
13
- />
14
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg viewBox="0 0 25 25" fill="none" {...$$restProps}>
8
+ <path d="M12 25C7.58173 25 4 21.4183 4 17C4 12.5817 7.58173 9 12 9V25Z" fill="currentcolor" />
9
+ <path d="M12 0H4V8H12V0Z" fill="currentcolor" />
10
+ <path
11
+ d="M17 8C19.2091 8 21 6.20914 21 4C21 1.79086 19.2091 0 17 0C14.7909 0 13 1.79086 13 4C13 6.20914 14.7909 8 17 8Z"
12
+ fill="currentcolor"
13
+ />
14
+ </svg>
@@ -1,14 +1,14 @@
1
- <script lang="ts">
2
- import type { IconProps } from 'lucide-svelte';
3
-
4
- type $$Props = IconProps;
5
- </script>
6
-
7
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" {...$$restProps}>
8
- <path
9
- fill-rule="evenodd"
10
- clip-rule="evenodd"
11
- d="M5.71429 4H14.8572C16.7507 4 18.2857 5.53502 18.2857 7.42857C18.2857 9.32213 16.7507 10.8571 14.8572 10.8571H12.5714V20H11.4286C8.27267 20 5.71429 17.4416 5.71429 14.2857V4ZM10.2857 10.8571H8.00001V14.2857C8.00001 15.7785 8.95408 17.0485 10.2857 17.5192V10.8571ZM8.00001 8.57143H14.8572C15.4883 8.57143 16 8.05975 16 7.42857C16 6.7974 15.4883 6.28571 14.8572 6.28571H8.00001V8.57143Z"
12
- fill="currentcolor"
13
- />
14
- </svg>
1
+ <script lang="ts">
2
+ import type { IconProps } from 'lucide-svelte';
3
+
4
+ type $$Props = IconProps;
5
+ </script>
6
+
7
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" {...$$restProps}>
8
+ <path
9
+ fill-rule="evenodd"
10
+ clip-rule="evenodd"
11
+ d="M5.71429 4H14.8572C16.7507 4 18.2857 5.53502 18.2857 7.42857C18.2857 9.32213 16.7507 10.8571 14.8572 10.8571H12.5714V20H11.4286C8.27267 20 5.71429 17.4416 5.71429 14.2857V4ZM10.2857 10.8571H8.00001V14.2857C8.00001 15.7785 8.95408 17.0485 10.2857 17.5192V10.8571ZM8.00001 8.57143H14.8572C15.4883 8.57143 16 8.05975 16 7.42857C16 6.7974 15.4883 6.28571 14.8572 6.28571H8.00001V8.57143Z"
12
+ fill="currentcolor"
13
+ />
14
+ </svg>