@revealui/presentation 0.3.0 → 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.
- package/README.md +14 -0
- package/dist/Text-mMOCv1lF.js +204 -0
- package/dist/Text-mMOCv1lF.js.map +1 -0
- package/dist/client.d.ts +3 -2
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +92 -266
- package/dist/client.js.map +1 -1
- package/dist/components/BuiltWithRevealUI.d.ts +6 -3
- package/dist/components/BuiltWithRevealUI.d.ts.map +1 -1
- package/dist/components/Button.d.ts +6 -3
- package/dist/components/Button.d.ts.map +1 -1
- package/dist/components/Card.d.ts.map +1 -1
- package/dist/components/Input.d.ts.map +1 -1
- package/dist/components/accordion.d.ts.map +1 -1
- package/dist/components/alert.d.ts.map +1 -1
- package/dist/components/avatar.d.ts.map +1 -1
- package/dist/components/badge.d.ts.map +1 -1
- package/dist/components/breadcrumb.d.ts.map +1 -1
- package/dist/components/button-headless.d.ts.map +1 -1
- package/dist/components/callout.d.ts.map +1 -1
- package/dist/components/checkbox-headless.d.ts.map +1 -1
- package/dist/components/combobox.d.ts.map +1 -1
- package/dist/components/dialog.d.ts.map +1 -1
- package/dist/components/drawer.d.ts.map +1 -1
- package/dist/components/dropdown.d.ts.map +1 -1
- package/dist/components/empty-state.d.ts.map +1 -1
- package/dist/components/fieldset.d.ts.map +1 -1
- package/dist/components/form-field.d.ts +23 -0
- package/dist/components/form-field.d.ts.map +1 -0
- package/dist/components/icon.d.ts +53 -0
- package/dist/components/icon.d.ts.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/input-headless.d.ts.map +1 -1
- package/dist/components/kbd.d.ts.map +1 -1
- package/dist/components/listbox.d.ts.map +1 -1
- package/dist/components/navbar.d.ts.map +1 -1
- package/dist/components/radio.d.ts.map +1 -1
- package/dist/components/select-headless.d.ts.map +1 -1
- package/dist/components/sidebar.d.ts.map +1 -1
- package/dist/components/skeleton.d.ts.map +1 -1
- package/dist/components/stat.d.ts.map +1 -1
- package/dist/components/switch.d.ts.map +1 -1
- package/dist/components/table.d.ts.map +1 -1
- package/dist/components/tabs.d.ts.map +1 -1
- package/dist/components/textarea-headless.d.ts.map +1 -1
- package/dist/components/timeline.d.ts.map +1 -1
- package/dist/components/toast.d.ts.map +1 -1
- package/dist/components/tooltip.d.ts.map +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/use-theme.d.ts +26 -0
- package/dist/hooks/use-theme.d.ts.map +1 -0
- package/dist/index.js +65 -224
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +5 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +402 -32
- package/dist/server.js.map +1 -1
- package/dist/skeleton-CHPpiyJj.js +472 -0
- package/dist/skeleton-CHPpiyJj.js.map +1 -0
- package/dist/tokens.css +265 -0
- package/dist/use-theme-QxeZadnD.js +4024 -0
- package/dist/use-theme-QxeZadnD.js.map +1 -0
- package/dist/utils/cn.d.ts +21 -4
- package/dist/utils/cn.d.ts.map +1 -1
- package/package.json +13 -15
- package/dist/Box-DC3F8eRf.js +0 -430
- package/dist/Box-DC3F8eRf.js.map +0 -1
- package/dist/Text-jQVi12Hi.js +0 -218
- package/dist/Text-jQVi12Hi.js.map +0 -1
- package/dist/tooltip-DQYjYWbe.js +0 -5085
- package/dist/tooltip-DQYjYWbe.js.map +0 -1
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/components/BuiltWithRevealUI.tsx"],"sourcesContent":["import { cva, type VariantProps } from '
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/components/BuiltWithRevealUI.tsx"],"sourcesContent":["import { cn, cva, type VariantProps } from '../utils/cn.js';\n\nconst badgeStyles = cva(\n 'inline-flex items-center gap-1.5 rounded-md border text-xs font-medium transition-opacity hover:opacity-100',\n {\n variants: {\n size: {\n sm: 'px-2 py-1 text-[10px]',\n md: 'px-2.5 py-1.5 text-xs',\n },\n position: {\n 'bottom-right': 'fixed bottom-4 right-4 z-40',\n 'bottom-left': 'fixed bottom-4 left-4 z-40',\n 'bottom-center': 'fixed bottom-4 left-1/2 -translate-x-1/2 z-40',\n inline: '',\n },\n colorScheme: {\n light: 'border-gray-200 bg-white/90 text-gray-500 opacity-75 backdrop-blur-sm',\n dark: 'border-gray-700 bg-gray-800/80 text-gray-300 opacity-90',\n },\n },\n defaultVariants: {\n size: 'sm',\n position: 'inline',\n colorScheme: 'light',\n },\n },\n);\n\ninterface BuiltWithRevealUIProps extends VariantProps<typeof badgeStyles> {\n variant?: 'full' | 'logo';\n className?: string;\n}\n\nexport function BuiltWithRevealUI({\n size,\n position,\n colorScheme,\n variant = 'full',\n className,\n}: BuiltWithRevealUIProps) {\n return (\n <a\n href=\"https://revealui.com\"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n className={cn(\n badgeStyles({ size, position, colorScheme }),\n 'no-underline hover:no-underline',\n className,\n )}\n >\n <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" aria-hidden=\"true\">\n <rect width=\"24\" height=\"24\" rx=\"4\" fill=\"currentColor\" fillOpacity=\"0.15\" />\n <text x=\"12\" y=\"16\" textAnchor=\"middle\" fill=\"currentColor\" fontSize=\"12\" fontWeight=\"700\">\n R\n </text>\n </svg>\n {variant === 'full' && <span>Built with RevealUI</span>}\n </a>\n );\n}\n"],"mappings":";;;;;;AAEA,IAAM,cAAc,IAClB,+GACA;CACE,UAAU;EACR,MAAM;GACJ,IAAI;GACJ,IAAI;GACL;EACD,UAAU;GACR,gBAAgB;GAChB,eAAe;GACf,iBAAiB;GACjB,QAAQ;GACT;EACD,aAAa;GACX,OAAO;GACP,MAAM;GACP;EACF;CACD,iBAAiB;EACf,MAAM;EACN,UAAU;EACV,aAAa;EACd;CACF,CACF;AAOD,SAAgB,kBAAkB,EAChC,MACA,UACA,aACA,UAAU,QACV,aACyB;AACzB,QACE,qBAAC,KAAD;EACE,MAAK;EACL,QAAO;EACP,KAAI;EACJ,WAAW,GACT,YAAY;GAAE;GAAM;GAAU;GAAa,CAAC,EAC5C,mCACA,UACD;YARH,CAUE,qBAAC,OAAD;GAAK,OAAM;GAAK,QAAO;GAAK,SAAQ;GAAY,MAAK;GAAO,eAAY;aAAxE,CACE,oBAAC,QAAD;IAAM,OAAM;IAAK,QAAO;IAAK,IAAG;IAAI,MAAK;IAAe,aAAY;IAAS,CAAA,EAC7E,oBAAC,QAAD;IAAM,GAAE;IAAK,GAAE;IAAK,YAAW;IAAS,MAAK;IAAe,UAAS;IAAK,YAAW;cAAM;IAEpF,CAAA,CACH;MACL,YAAY,UAAU,oBAAC,QAAD,EAAA,UAAM,uBAA0B,CAAA,CACrD"}
|
package/dist/server.d.ts
CHANGED
|
@@ -6,13 +6,18 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export { AuthLayout, type AuthLayoutProps } from './components/auth-layout.js';
|
|
8
8
|
export { Button as ButtonCVA, type ButtonProps, buttonVariants, } from './components/Button.js';
|
|
9
|
+
export { Breadcrumb, type BreadcrumbItem } from './components/breadcrumb.js';
|
|
9
10
|
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from './components/Card.js';
|
|
11
|
+
export { EmptyState } from './components/empty-state.js';
|
|
10
12
|
export { FormLabel, type FormLabelProps } from './components/FormLabel.js';
|
|
13
|
+
export { FormField, type FormFieldProps } from './components/form-field.js';
|
|
11
14
|
export { Input as InputCVA, type InputProps } from './components/Input.js';
|
|
12
15
|
export { Label, type LabelProps } from './components/Label.js';
|
|
13
16
|
export { Pagination, PaginationContent, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, } from './components/Pagination.js';
|
|
14
17
|
export { PricingTable, type PricingTableProps, type PricingTier, } from './components/pricing-table.js';
|
|
18
|
+
export { Skeleton, SkeletonCard, SkeletonText } from './components/skeleton.js';
|
|
15
19
|
export { Textarea as TextareaCVA, type TextareaProps } from './components/Textarea.js';
|
|
20
|
+
export { IconAlertCircle, IconAlertTriangle, IconArrowLeft, IconArrowRight, IconCheck, IconCheckCircle, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClose, IconCode, IconCopy, IconDownload, IconEdit, IconExternalLink, IconEye, IconEyeOff, IconFilter, IconGlobe, IconHeart, IconInfo, IconLoading, IconLock, IconLogOut, IconMenu, IconMinus, IconMonitor, IconMoon, IconMoreHorizontal, IconMoreVertical, IconPlus, type IconProps, IconRefresh, IconSearch, IconSettings, type IconSize, IconStar, IconSun, IconTerminal, IconTrash, IconUnlock, IconUpload, IconUser, IconUsers, IconXCircle, } from './components/icon.js';
|
|
16
21
|
export { Box, type BoxProps } from './primitives/Box.js';
|
|
17
22
|
export { Flex, type FlexProps } from './primitives/Flex.js';
|
|
18
23
|
export { Grid, type GridProps } from './primitives/Grid.js';
|
package/dist/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAG/E,OAAO,EACL,MAAM,IAAI,SAAS,EACnB,KAAK,WAAW,EAChB,cAAc,GACf,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAG/E,OAAO,EACL,MAAM,IAAI,SAAS,EACnB,KAAK,WAAW,EAChB,cAAc,GACf,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC7E,OAAO,EACL,IAAI,EACJ,WAAW,EACX,eAAe,EACf,UAAU,EACV,UAAU,EACV,SAAS,GACV,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3E,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAE,KAAK,IAAI,QAAQ,EAAE,KAAK,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EACL,UAAU,EACV,iBAAiB,EACjB,kBAAkB,EAClB,KAAK,uBAAuB,EAC5B,cAAc,EACd,cAAc,EACd,KAAK,mBAAmB,EACxB,cAAc,EACd,KAAK,mBAAmB,EACxB,kBAAkB,EAClB,KAAK,uBAAuB,EAC5B,KAAK,eAAe,GACrB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,YAAY,EACZ,KAAK,iBAAiB,EACtB,KAAK,WAAW,GACjB,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAChF,OAAO,EAAE,QAAQ,IAAI,WAAW,EAAE,KAAK,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAKvF,OAAO,EACL,eAAe,EACf,iBAAiB,EACjB,aAAa,EACb,cAAc,EACd,SAAS,EACT,eAAe,EACf,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,gBAAgB,EAChB,OAAO,EACP,UAAU,EACV,UAAU,EACV,SAAS,EACT,SAAS,EACT,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,UAAU,EACV,QAAQ,EACR,SAAS,EACT,WAAW,EACX,QAAQ,EACR,kBAAkB,EAClB,gBAAgB,EAChB,QAAQ,EACR,KAAK,SAAS,EACd,WAAW,EACX,UAAU,EACV,YAAY,EACZ,KAAK,QAAQ,EACb,QAAQ,EACR,OAAO,EACP,YAAY,EACZ,SAAS,EACT,UAAU,EACV,UAAU,EACV,QAAQ,EACR,SAAS,EACT,WAAW,GACZ,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAAE,GAAG,EAAE,KAAK,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAG5D,OAAO,EAAE,EAAE,EAAE,MAAM,eAAe,CAAC"}
|
package/dist/server.js
CHANGED
|
@@ -1,33 +1,403 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
d as CardHeader,
|
|
12
|
-
e as CardTitle,
|
|
13
|
-
F as Flex,
|
|
14
|
-
f as FormLabel,
|
|
15
|
-
G as Grid,
|
|
16
|
-
H as Heading,
|
|
17
|
-
I as InputCVA,
|
|
18
|
-
L as Label,
|
|
19
|
-
P as Pagination,
|
|
20
|
-
b2 as PaginationContent,
|
|
21
|
-
c2 as PaginationEllipsis,
|
|
22
|
-
d2 as PaginationItem,
|
|
23
|
-
e2 as PaginationLink,
|
|
24
|
-
f2 as PaginationNext,
|
|
25
|
-
g2 as PaginationPrevious,
|
|
26
|
-
h as PricingTable,
|
|
27
|
-
S as Slot,
|
|
28
|
-
T as Text,
|
|
29
|
-
g as TextareaCVA,
|
|
30
|
-
i as buttonVariants,
|
|
31
|
-
j as cn
|
|
1
|
+
import { _ as Slot, a as PricingTable, c as PaginationEllipsis, d as PaginationNext, f as PaginationPrevious, g as buttonVariants, h as Button, i as Box, l as PaginationItem, m as Breadcrumb, n as SkeletonCard, o as Pagination, p as EmptyState, r as SkeletonText, s as PaginationContent, t as Skeleton, u as PaginationLink, v as cn } from "./skeleton-CHPpiyJj.js";
|
|
2
|
+
import { a as Textarea, c as FormLabel, d as CardContent, f as CardDescription, g as AuthLayout, h as CardTitle, i as Flex, l as Label, m as CardHeader, n as Heading, o as Input, p as CardFooter, r as Grid, s as FormField, t as Text, u as Card } from "./Text-mMOCv1lF.js";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
//#region src/components/icon.tsx
|
|
5
|
+
var sizeClasses = {
|
|
6
|
+
xs: "size-3",
|
|
7
|
+
sm: "size-4",
|
|
8
|
+
md: "size-5",
|
|
9
|
+
lg: "size-6",
|
|
10
|
+
xl: "size-8"
|
|
32
11
|
};
|
|
33
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Base SVG icon wrapper. All icons use 24x24 viewBox with stroke rendering.
|
|
14
|
+
* Pass `label` for accessible icons, omit for decorative.
|
|
15
|
+
*/
|
|
16
|
+
function IconBase({ size = "md", label, className, children, ...props }) {
|
|
17
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
stroke: "currentColor",
|
|
21
|
+
strokeWidth: 1.5,
|
|
22
|
+
strokeLinecap: "round",
|
|
23
|
+
strokeLinejoin: "round",
|
|
24
|
+
"aria-hidden": label ? void 0 : true,
|
|
25
|
+
"aria-label": label,
|
|
26
|
+
role: label ? "img" : void 0,
|
|
27
|
+
className: cn(sizeClasses[size], "shrink-0", className),
|
|
28
|
+
...props,
|
|
29
|
+
children: [label && /* @__PURE__ */ jsx("title", { children: label }), children]
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
function IconChevronDown(props) {
|
|
33
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
34
|
+
...props,
|
|
35
|
+
children: /* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6" })
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function IconChevronUp(props) {
|
|
39
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
40
|
+
...props,
|
|
41
|
+
children: /* @__PURE__ */ jsx("path", { d: "m18 15-6-6-6 6" })
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
function IconChevronLeft(props) {
|
|
45
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
46
|
+
...props,
|
|
47
|
+
children: /* @__PURE__ */ jsx("path", { d: "m15 18-6-6 6-6" })
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
function IconChevronRight(props) {
|
|
51
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
52
|
+
...props,
|
|
53
|
+
children: /* @__PURE__ */ jsx("path", { d: "m9 18 6-6-6-6" })
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
function IconArrowLeft(props) {
|
|
57
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
58
|
+
...props,
|
|
59
|
+
children: /* @__PURE__ */ jsx("path", { d: "M19 12H5M12 19l-7-7 7-7" })
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
function IconArrowRight(props) {
|
|
63
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
64
|
+
...props,
|
|
65
|
+
children: /* @__PURE__ */ jsx("path", { d: "M5 12h14M12 5l7 7-7 7" })
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
function IconClose(props) {
|
|
69
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
70
|
+
...props,
|
|
71
|
+
children: /* @__PURE__ */ jsx("path", { d: "M18 6 6 18M6 6l12 12" })
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
function IconMenu(props) {
|
|
75
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
76
|
+
...props,
|
|
77
|
+
children: /* @__PURE__ */ jsx("path", { d: "M4 6h16M4 12h16M4 18h16" })
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
function IconSearch(props) {
|
|
81
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
82
|
+
...props,
|
|
83
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
84
|
+
cx: "11",
|
|
85
|
+
cy: "11",
|
|
86
|
+
r: "8"
|
|
87
|
+
}), /* @__PURE__ */ jsx("path", { d: "m21 21-4.3-4.3" })]
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
function IconPlus(props) {
|
|
91
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
92
|
+
...props,
|
|
93
|
+
children: /* @__PURE__ */ jsx("path", { d: "M12 5v14M5 12h14" })
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
function IconMinus(props) {
|
|
97
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
98
|
+
...props,
|
|
99
|
+
children: /* @__PURE__ */ jsx("path", { d: "M5 12h14" })
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
function IconMoreHorizontal(props) {
|
|
103
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
104
|
+
...props,
|
|
105
|
+
children: [
|
|
106
|
+
/* @__PURE__ */ jsx("circle", {
|
|
107
|
+
cx: "12",
|
|
108
|
+
cy: "12",
|
|
109
|
+
r: "1"
|
|
110
|
+
}),
|
|
111
|
+
/* @__PURE__ */ jsx("circle", {
|
|
112
|
+
cx: "19",
|
|
113
|
+
cy: "12",
|
|
114
|
+
r: "1"
|
|
115
|
+
}),
|
|
116
|
+
/* @__PURE__ */ jsx("circle", {
|
|
117
|
+
cx: "5",
|
|
118
|
+
cy: "12",
|
|
119
|
+
r: "1"
|
|
120
|
+
})
|
|
121
|
+
]
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
function IconMoreVertical(props) {
|
|
125
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
126
|
+
...props,
|
|
127
|
+
children: [
|
|
128
|
+
/* @__PURE__ */ jsx("circle", {
|
|
129
|
+
cx: "12",
|
|
130
|
+
cy: "12",
|
|
131
|
+
r: "1"
|
|
132
|
+
}),
|
|
133
|
+
/* @__PURE__ */ jsx("circle", {
|
|
134
|
+
cx: "12",
|
|
135
|
+
cy: "5",
|
|
136
|
+
r: "1"
|
|
137
|
+
}),
|
|
138
|
+
/* @__PURE__ */ jsx("circle", {
|
|
139
|
+
cx: "12",
|
|
140
|
+
cy: "19",
|
|
141
|
+
r: "1"
|
|
142
|
+
})
|
|
143
|
+
]
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
function IconExternalLink(props) {
|
|
147
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
148
|
+
...props,
|
|
149
|
+
children: /* @__PURE__ */ jsx("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3" })
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
function IconCheck(props) {
|
|
153
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
154
|
+
...props,
|
|
155
|
+
children: /* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" })
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
function IconCheckCircle(props) {
|
|
159
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
160
|
+
...props,
|
|
161
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14" }), /* @__PURE__ */ jsx("path", { d: "m9 11 3 3L22 4" })]
|
|
162
|
+
});
|
|
163
|
+
}
|
|
164
|
+
function IconAlertCircle(props) {
|
|
165
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
166
|
+
...props,
|
|
167
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
168
|
+
cx: "12",
|
|
169
|
+
cy: "12",
|
|
170
|
+
r: "10"
|
|
171
|
+
}), /* @__PURE__ */ jsx("path", { d: "M12 8v4M12 16h.01" })]
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
function IconAlertTriangle(props) {
|
|
175
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
176
|
+
...props,
|
|
177
|
+
children: [/* @__PURE__ */ jsx("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }), /* @__PURE__ */ jsx("path", { d: "M12 9v4M12 17h.01" })]
|
|
178
|
+
});
|
|
179
|
+
}
|
|
180
|
+
function IconInfo(props) {
|
|
181
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
182
|
+
...props,
|
|
183
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
184
|
+
cx: "12",
|
|
185
|
+
cy: "12",
|
|
186
|
+
r: "10"
|
|
187
|
+
}), /* @__PURE__ */ jsx("path", { d: "M12 16v-4M12 8h.01" })]
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
function IconXCircle(props) {
|
|
191
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
192
|
+
...props,
|
|
193
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
194
|
+
cx: "12",
|
|
195
|
+
cy: "12",
|
|
196
|
+
r: "10"
|
|
197
|
+
}), /* @__PURE__ */ jsx("path", { d: "m15 9-6 6M9 9l6 6" })]
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
function IconCopy(props) {
|
|
201
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
202
|
+
...props,
|
|
203
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
204
|
+
width: "14",
|
|
205
|
+
height: "14",
|
|
206
|
+
x: "8",
|
|
207
|
+
y: "8",
|
|
208
|
+
rx: "2",
|
|
209
|
+
ry: "2"
|
|
210
|
+
}), /* @__PURE__ */ jsx("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })]
|
|
211
|
+
});
|
|
212
|
+
}
|
|
213
|
+
function IconTrash(props) {
|
|
214
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
215
|
+
...props,
|
|
216
|
+
children: /* @__PURE__ */ jsx("path", { d: "M3 6h18M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2" })
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
function IconEdit(props) {
|
|
220
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
221
|
+
...props,
|
|
222
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }), /* @__PURE__ */ jsx("path", { d: "m15 5 4 4" })]
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
function IconDownload(props) {
|
|
226
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
227
|
+
...props,
|
|
228
|
+
children: /* @__PURE__ */ jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3" })
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
function IconUpload(props) {
|
|
232
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
233
|
+
...props,
|
|
234
|
+
children: /* @__PURE__ */ jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12" })
|
|
235
|
+
});
|
|
236
|
+
}
|
|
237
|
+
function IconFilter(props) {
|
|
238
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
239
|
+
...props,
|
|
240
|
+
children: /* @__PURE__ */ jsx("path", { d: "M22 3H2l8 9.46V19l4 2v-8.54Z" })
|
|
241
|
+
});
|
|
242
|
+
}
|
|
243
|
+
function IconUser(props) {
|
|
244
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
245
|
+
...props,
|
|
246
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }), /* @__PURE__ */ jsx("circle", {
|
|
247
|
+
cx: "12",
|
|
248
|
+
cy: "7",
|
|
249
|
+
r: "4"
|
|
250
|
+
})]
|
|
251
|
+
});
|
|
252
|
+
}
|
|
253
|
+
function IconUsers(props) {
|
|
254
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
255
|
+
...props,
|
|
256
|
+
children: [
|
|
257
|
+
/* @__PURE__ */ jsx("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
258
|
+
/* @__PURE__ */ jsx("circle", {
|
|
259
|
+
cx: "9",
|
|
260
|
+
cy: "7",
|
|
261
|
+
r: "4"
|
|
262
|
+
}),
|
|
263
|
+
/* @__PURE__ */ jsx("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75" })
|
|
264
|
+
]
|
|
265
|
+
});
|
|
266
|
+
}
|
|
267
|
+
function IconLogOut(props) {
|
|
268
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
269
|
+
...props,
|
|
270
|
+
children: /* @__PURE__ */ jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9" })
|
|
271
|
+
});
|
|
272
|
+
}
|
|
273
|
+
function IconSettings(props) {
|
|
274
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
275
|
+
...props,
|
|
276
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
277
|
+
cx: "12",
|
|
278
|
+
cy: "12",
|
|
279
|
+
r: "3"
|
|
280
|
+
}), /* @__PURE__ */ jsx("path", { d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1Z" })]
|
|
281
|
+
});
|
|
282
|
+
}
|
|
283
|
+
function IconSun(props) {
|
|
284
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
285
|
+
...props,
|
|
286
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
287
|
+
cx: "12",
|
|
288
|
+
cy: "12",
|
|
289
|
+
r: "4"
|
|
290
|
+
}), /* @__PURE__ */ jsx("path", { d: "M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41" })]
|
|
291
|
+
});
|
|
292
|
+
}
|
|
293
|
+
function IconMoon(props) {
|
|
294
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
295
|
+
...props,
|
|
296
|
+
children: /* @__PURE__ */ jsx("path", { d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79Z" })
|
|
297
|
+
});
|
|
298
|
+
}
|
|
299
|
+
function IconMonitor(props) {
|
|
300
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
301
|
+
...props,
|
|
302
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
303
|
+
width: "20",
|
|
304
|
+
height: "14",
|
|
305
|
+
x: "2",
|
|
306
|
+
y: "3",
|
|
307
|
+
rx: "2"
|
|
308
|
+
}), /* @__PURE__ */ jsx("path", { d: "M8 21h8M12 17v4" })]
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
function IconCode(props) {
|
|
312
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
313
|
+
...props,
|
|
314
|
+
children: /* @__PURE__ */ jsx("path", { d: "m16 18 6-6-6-6M8 6l-6 6 6 6" })
|
|
315
|
+
});
|
|
316
|
+
}
|
|
317
|
+
function IconTerminal(props) {
|
|
318
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
319
|
+
...props,
|
|
320
|
+
children: /* @__PURE__ */ jsx("path", { d: "m4 17 6-6-6-6M12 19h8" })
|
|
321
|
+
});
|
|
322
|
+
}
|
|
323
|
+
function IconGlobe(props) {
|
|
324
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
325
|
+
...props,
|
|
326
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
327
|
+
cx: "12",
|
|
328
|
+
cy: "12",
|
|
329
|
+
r: "10"
|
|
330
|
+
}), /* @__PURE__ */ jsx("path", { d: "M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10Z" })]
|
|
331
|
+
});
|
|
332
|
+
}
|
|
333
|
+
function IconHeart(props) {
|
|
334
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
335
|
+
...props,
|
|
336
|
+
children: /* @__PURE__ */ jsx("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
337
|
+
});
|
|
338
|
+
}
|
|
339
|
+
function IconStar(props) {
|
|
340
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
341
|
+
...props,
|
|
342
|
+
children: /* @__PURE__ */ jsx("path", { d: "m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01Z" })
|
|
343
|
+
});
|
|
344
|
+
}
|
|
345
|
+
function IconEye(props) {
|
|
346
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
347
|
+
...props,
|
|
348
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }), /* @__PURE__ */ jsx("circle", {
|
|
349
|
+
cx: "12",
|
|
350
|
+
cy: "12",
|
|
351
|
+
r: "3"
|
|
352
|
+
})]
|
|
353
|
+
});
|
|
354
|
+
}
|
|
355
|
+
function IconEyeOff(props) {
|
|
356
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
357
|
+
...props,
|
|
358
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }), /* @__PURE__ */ jsx("path", { d: "m1 1 22 22" })]
|
|
359
|
+
});
|
|
360
|
+
}
|
|
361
|
+
function IconLock(props) {
|
|
362
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
363
|
+
...props,
|
|
364
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
365
|
+
width: "18",
|
|
366
|
+
height: "11",
|
|
367
|
+
x: "3",
|
|
368
|
+
y: "11",
|
|
369
|
+
rx: "2",
|
|
370
|
+
ry: "2"
|
|
371
|
+
}), /* @__PURE__ */ jsx("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })]
|
|
372
|
+
});
|
|
373
|
+
}
|
|
374
|
+
function IconUnlock(props) {
|
|
375
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
376
|
+
...props,
|
|
377
|
+
children: [/* @__PURE__ */ jsx("rect", {
|
|
378
|
+
width: "18",
|
|
379
|
+
height: "11",
|
|
380
|
+
x: "3",
|
|
381
|
+
y: "11",
|
|
382
|
+
rx: "2",
|
|
383
|
+
ry: "2"
|
|
384
|
+
}), /* @__PURE__ */ jsx("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })]
|
|
385
|
+
});
|
|
386
|
+
}
|
|
387
|
+
function IconRefresh(props) {
|
|
388
|
+
return /* @__PURE__ */ jsxs(IconBase, {
|
|
389
|
+
...props,
|
|
390
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M1 4v6h6M23 20v-6h-6" }), /* @__PURE__ */ jsx("path", { d: "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4-4.64 4.36A9 9 0 0 1 3.51 15" })]
|
|
391
|
+
});
|
|
392
|
+
}
|
|
393
|
+
function IconLoading(props) {
|
|
394
|
+
return /* @__PURE__ */ jsx(IconBase, {
|
|
395
|
+
...props,
|
|
396
|
+
className: cn("animate-spin", props.className),
|
|
397
|
+
children: /* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 1 1-6.219-8.56" })
|
|
398
|
+
});
|
|
399
|
+
}
|
|
400
|
+
//#endregion
|
|
401
|
+
export { AuthLayout, Box, Breadcrumb, Button as ButtonCVA, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, EmptyState, Flex, FormField, FormLabel, Grid, Heading, IconAlertCircle, IconAlertTriangle, IconArrowLeft, IconArrowRight, IconCheck, IconCheckCircle, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClose, IconCode, IconCopy, IconDownload, IconEdit, IconExternalLink, IconEye, IconEyeOff, IconFilter, IconGlobe, IconHeart, IconInfo, IconLoading, IconLock, IconLogOut, IconMenu, IconMinus, IconMonitor, IconMoon, IconMoreHorizontal, IconMoreVertical, IconPlus, IconRefresh, IconSearch, IconSettings, IconStar, IconSun, IconTerminal, IconTrash, IconUnlock, IconUpload, IconUser, IconUsers, IconXCircle, Input as InputCVA, Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PricingTable, Skeleton, SkeletonCard, SkeletonText, Slot, Text, Textarea as TextareaCVA, buttonVariants, cn };
|
|
402
|
+
|
|
403
|
+
//# sourceMappingURL=server.js.map
|
package/dist/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
|
1
|
+
{"version":3,"file":"server.js","names":[],"sources":["../src/components/icon.tsx"],"sourcesContent":["import type React from 'react';\nimport { cn } from '../utils/cn.js';\n\nexport type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';\n\nconst sizeClasses: Record<IconSize, string> = {\n xs: 'size-3',\n sm: 'size-4',\n md: 'size-5',\n lg: 'size-6',\n xl: 'size-8',\n};\n\nexport interface IconProps extends React.SVGProps<SVGSVGElement> {\n /** Icon size preset */\n size?: IconSize;\n /** Accessible label — if omitted, icon is decorative (aria-hidden) */\n label?: string;\n}\n\n/**\n * Base SVG icon wrapper. All icons use 24x24 viewBox with stroke rendering.\n * Pass `label` for accessible icons, omit for decorative.\n */\nfunction IconBase({ size = 'md', label, className, children, ...props }: IconProps) {\n return (\n <svg\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth={1.5}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n aria-hidden={label ? undefined : true}\n aria-label={label}\n role={label ? 'img' : undefined}\n className={cn(sizeClasses[size], 'shrink-0', className)}\n {...props}\n >\n {label && <title>{label}</title>}\n {children}\n </svg>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Navigation & Actions\n// ---------------------------------------------------------------------------\n\nexport function IconChevronDown(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m6 9 6 6 6-6\" />\n </IconBase>\n );\n}\n\nexport function IconChevronUp(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m18 15-6-6-6 6\" />\n </IconBase>\n );\n}\n\nexport function IconChevronLeft(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m15 18-6-6 6-6\" />\n </IconBase>\n );\n}\n\nexport function IconChevronRight(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m9 18 6-6-6-6\" />\n </IconBase>\n );\n}\n\nexport function IconArrowLeft(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M19 12H5M12 19l-7-7 7-7\" />\n </IconBase>\n );\n}\n\nexport function IconArrowRight(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M5 12h14M12 5l7 7-7 7\" />\n </IconBase>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Interface\n// ---------------------------------------------------------------------------\n\nexport function IconClose(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M18 6 6 18M6 6l12 12\" />\n </IconBase>\n );\n}\n\nexport function IconMenu(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M4 6h16M4 12h16M4 18h16\" />\n </IconBase>\n );\n}\n\nexport function IconSearch(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"11\" cy=\"11\" r=\"8\" />\n <path d=\"m21 21-4.3-4.3\" />\n </IconBase>\n );\n}\n\nexport function IconPlus(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M12 5v14M5 12h14\" />\n </IconBase>\n );\n}\n\nexport function IconMinus(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M5 12h14\" />\n </IconBase>\n );\n}\n\nexport function IconMoreHorizontal(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"1\" />\n <circle cx=\"19\" cy=\"12\" r=\"1\" />\n <circle cx=\"5\" cy=\"12\" r=\"1\" />\n </IconBase>\n );\n}\n\nexport function IconMoreVertical(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"1\" />\n <circle cx=\"12\" cy=\"5\" r=\"1\" />\n <circle cx=\"12\" cy=\"19\" r=\"1\" />\n </IconBase>\n );\n}\n\nexport function IconExternalLink(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3\" />\n </IconBase>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Status & Feedback\n// ---------------------------------------------------------------------------\n\nexport function IconCheck(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M20 6 9 17l-5-5\" />\n </IconBase>\n );\n}\n\nexport function IconCheckCircle(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\" />\n <path d=\"m9 11 3 3L22 4\" />\n </IconBase>\n );\n}\n\nexport function IconAlertCircle(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M12 8v4M12 16h.01\" />\n </IconBase>\n );\n}\n\nexport function IconAlertTriangle(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z\" />\n <path d=\"M12 9v4M12 17h.01\" />\n </IconBase>\n );\n}\n\nexport function IconInfo(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M12 16v-4M12 8h.01\" />\n </IconBase>\n );\n}\n\nexport function IconXCircle(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"m15 9-6 6M9 9l6 6\" />\n </IconBase>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Content & Data\n// ---------------------------------------------------------------------------\n\nexport function IconCopy(props: IconProps) {\n return (\n <IconBase {...props}>\n <rect width=\"14\" height=\"14\" x=\"8\" y=\"8\" rx=\"2\" ry=\"2\" />\n <path d=\"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\" />\n </IconBase>\n );\n}\n\nexport function IconTrash(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M3 6h18M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2\" />\n </IconBase>\n );\n}\n\nexport function IconEdit(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z\" />\n <path d=\"m15 5 4 4\" />\n </IconBase>\n );\n}\n\nexport function IconDownload(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3\" />\n </IconBase>\n );\n}\n\nexport function IconUpload(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12\" />\n </IconBase>\n );\n}\n\nexport function IconFilter(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M22 3H2l8 9.46V19l4 2v-8.54Z\" />\n </IconBase>\n );\n}\n\n// ---------------------------------------------------------------------------\n// User & Auth\n// ---------------------------------------------------------------------------\n\nexport function IconUser(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\" />\n <circle cx=\"12\" cy=\"7\" r=\"4\" />\n </IconBase>\n );\n}\n\nexport function IconUsers(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\" />\n <circle cx=\"9\" cy=\"7\" r=\"4\" />\n <path d=\"M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75\" />\n </IconBase>\n );\n}\n\nexport function IconLogOut(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9\" />\n </IconBase>\n );\n}\n\nexport function IconSettings(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n <path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1Z\" />\n </IconBase>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Theme\n// ---------------------------------------------------------------------------\n\nexport function IconSun(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"4\" />\n <path d=\"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41\" />\n </IconBase>\n );\n}\n\nexport function IconMoon(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79Z\" />\n </IconBase>\n );\n}\n\nexport function IconMonitor(props: IconProps) {\n return (\n <IconBase {...props}>\n <rect width=\"20\" height=\"14\" x=\"2\" y=\"3\" rx=\"2\" />\n <path d=\"M8 21h8M12 17v4\" />\n </IconBase>\n );\n}\n\n// ---------------------------------------------------------------------------\n// Misc\n// ---------------------------------------------------------------------------\n\nexport function IconCode(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m16 18 6-6-6-6M8 6l-6 6 6 6\" />\n </IconBase>\n );\n}\n\nexport function IconTerminal(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m4 17 6-6-6-6M12 19h8\" />\n </IconBase>\n );\n}\n\nexport function IconGlobe(props: IconProps) {\n return (\n <IconBase {...props}>\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10Z\" />\n </IconBase>\n );\n}\n\nexport function IconHeart(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z\" />\n </IconBase>\n );\n}\n\nexport function IconStar(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01Z\" />\n </IconBase>\n );\n}\n\nexport function IconEye(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z\" />\n <circle cx=\"12\" cy=\"12\" r=\"3\" />\n </IconBase>\n );\n}\n\nexport function IconEyeOff(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24\" />\n <path d=\"m1 1 22 22\" />\n </IconBase>\n );\n}\n\nexport function IconLock(props: IconProps) {\n return (\n <IconBase {...props}>\n <rect width=\"18\" height=\"11\" x=\"3\" y=\"11\" rx=\"2\" ry=\"2\" />\n <path d=\"M7 11V7a5 5 0 0 1 10 0v4\" />\n </IconBase>\n );\n}\n\nexport function IconUnlock(props: IconProps) {\n return (\n <IconBase {...props}>\n <rect width=\"18\" height=\"11\" x=\"3\" y=\"11\" rx=\"2\" ry=\"2\" />\n <path d=\"M7 11V7a5 5 0 0 1 9.9-1\" />\n </IconBase>\n );\n}\n\nexport function IconRefresh(props: IconProps) {\n return (\n <IconBase {...props}>\n <path d=\"M1 4v6h6M23 20v-6h-6\" />\n <path d=\"M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4-4.64 4.36A9 9 0 0 1 3.51 15\" />\n </IconBase>\n );\n}\n\nexport function IconLoading(props: IconProps) {\n return (\n <IconBase {...props} className={cn('animate-spin', props.className)}>\n <path d=\"M21 12a9 9 0 1 1-6.219-8.56\" />\n </IconBase>\n );\n}\n"],"mappings":"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"}
|