@snapcall/design-system 1.1.1 → 1.3.0

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/dist/index.d.mts CHANGED
@@ -1,41 +1,104 @@
1
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
2
1
  import * as react from 'react';
3
- import { SVGProps } from 'react';
4
- import { VariantProps } from 'class-variance-authority';
2
+ import react__default, { SVGProps } from 'react';
3
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
6
+ import { VariantProps } from 'class-variance-authority';
7
+ import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
8
+ import { DayPicker } from 'react-day-picker';
9
+ export { DateRange } from 'react-day-picker';
10
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
12
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
6
13
  import * as TabsPrimitive from '@radix-ui/react-tabs';
7
14
 
15
+ type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
16
+ interface IconProps extends SVGAttributes {
17
+ size?: string | number;
18
+ duotone?: boolean;
19
+ }
20
+
21
+ declare const AccordionItem: react__default.ForwardRefExoticComponent<AccordionPrimitive.AccordionItemProps & react__default.RefAttributes<HTMLDivElement>>;
22
+ declare const Accordion: react__default.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & react__default.RefAttributes<HTMLDivElement>>;
23
+ type TriggerIcon = {
24
+ icon?: react__default.ReactElement<IconProps & react__default.RefAttributes<SVGSVGElement>>;
25
+ };
26
+ declare const AccordionTrigger: react__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & react__default.RefAttributes<HTMLButtonElement>, "ref"> & TriggerIcon & react__default.RefAttributes<HTMLButtonElement & TriggerIcon>>;
27
+ declare const AccordionContent: react__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
28
+
8
29
  declare const buttonVariants: (props?: ({
9
- variant?: "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | "link" | null | undefined;
30
+ variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
10
31
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
11
32
  declare const buttonSizes: (props?: ({
12
33
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
13
34
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
35
+ declare const iconButtonSizes: (props?: ({
36
+ size?: "xs" | "sm" | "md" | "lg" | null | undefined;
37
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
14
38
  interface ButtonProps extends react.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
15
39
  icon?: boolean;
16
40
  asChild?: boolean;
17
41
  }
18
42
  declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
19
43
 
44
+ declare const AlertDialog: react.FC<AlertDialogPrimitive.AlertDialogProps>;
45
+ declare const AlertDialogTrigger: react.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
46
+ declare const AlertDialogContent: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
47
+ declare const AlertDialogHeader: {
48
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
49
+ displayName: string;
50
+ };
51
+ declare const AlertDialogFooter: {
52
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
53
+ displayName: string;
54
+ };
55
+ declare const AlertDialogTitle: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
56
+ declare const AlertDialogDescription: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
57
+ type AlertDialogActionVariant = {
58
+ variant?: VariantProps<typeof buttonVariants>['variant'];
59
+ };
60
+ declare const AlertDialogAction: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & react.RefAttributes<HTMLButtonElement>, "ref"> & AlertDialogActionVariant & react.RefAttributes<HTMLButtonElement>>;
61
+ declare const AlertDialogCancel: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
62
+
20
63
  declare const badgeVariants: (props?: ({
21
- variant?: "outline" | "default" | "fill" | null | undefined;
64
+ variant?: "fill" | "default" | "outline" | null | undefined;
22
65
  color?: "gray" | "green" | "red" | "yellow" | "blue" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "orange" | null | undefined;
23
66
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
24
67
  interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
25
68
  }
26
69
  declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
27
70
 
71
+ type CalendarProps = react.ComponentProps<typeof DayPicker>;
72
+ declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
73
+ declare namespace Calendar {
74
+ var displayName: string;
75
+ }
76
+
77
+ declare const Dialog: react.FC<DialogPrimitive.DialogProps>;
78
+ declare const DialogTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
79
+ declare const DialogContent: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
80
+ declare const DialogHeader: {
81
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
82
+ displayName: string;
83
+ };
84
+ declare const DialogFooter: {
85
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
86
+ displayName: string;
87
+ };
88
+ declare const DialogTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
89
+ declare const DialogDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
90
+
91
+ declare const Popover: react.FC<PopoverPrimitive.PopoverProps>;
92
+ declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
93
+ declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
94
+
95
+ declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
96
+
28
97
  declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
29
98
  declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
30
99
  declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
31
100
  declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
32
101
 
33
- type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
34
- interface IconProps extends SVGAttributes {
35
- size?: string | number;
36
- duotone?: boolean;
37
- }
38
-
39
102
  declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
40
103
 
41
104
  declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
@@ -194,4 +257,4 @@ declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"
194
257
 
195
258
  declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
196
259
 
197
- export { ActivityIcon, AlertCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, DownloadIcon, EditIcon, ExpandIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon };
260
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityIcon, AlertCircleIcon, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, Calendar, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DownloadIcon, EditIcon, ExpandIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, Popover, PopoverContent, PopoverTrigger, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, buttonSizes, buttonVariants, iconButtonSizes };
package/dist/index.d.ts CHANGED
@@ -1,41 +1,104 @@
1
- import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
2
1
  import * as react from 'react';
3
- import { SVGProps } from 'react';
4
- import { VariantProps } from 'class-variance-authority';
2
+ import react__default, { SVGProps } from 'react';
3
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
6
+ import { VariantProps } from 'class-variance-authority';
7
+ import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
8
+ import { DayPicker } from 'react-day-picker';
9
+ export { DateRange } from 'react-day-picker';
10
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
12
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
6
13
  import * as TabsPrimitive from '@radix-ui/react-tabs';
7
14
 
15
+ type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
16
+ interface IconProps extends SVGAttributes {
17
+ size?: string | number;
18
+ duotone?: boolean;
19
+ }
20
+
21
+ declare const AccordionItem: react__default.ForwardRefExoticComponent<AccordionPrimitive.AccordionItemProps & react__default.RefAttributes<HTMLDivElement>>;
22
+ declare const Accordion: react__default.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & react__default.RefAttributes<HTMLDivElement>>;
23
+ type TriggerIcon = {
24
+ icon?: react__default.ReactElement<IconProps & react__default.RefAttributes<SVGSVGElement>>;
25
+ };
26
+ declare const AccordionTrigger: react__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & react__default.RefAttributes<HTMLButtonElement>, "ref"> & TriggerIcon & react__default.RefAttributes<HTMLButtonElement & TriggerIcon>>;
27
+ declare const AccordionContent: react__default.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & react__default.RefAttributes<HTMLDivElement>, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
28
+
8
29
  declare const buttonVariants: (props?: ({
9
- variant?: "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | "link" | null | undefined;
30
+ variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
10
31
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
11
32
  declare const buttonSizes: (props?: ({
12
33
  size?: "xs" | "sm" | "md" | "lg" | null | undefined;
13
34
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
35
+ declare const iconButtonSizes: (props?: ({
36
+ size?: "xs" | "sm" | "md" | "lg" | null | undefined;
37
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
14
38
  interface ButtonProps extends react.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
15
39
  icon?: boolean;
16
40
  asChild?: boolean;
17
41
  }
18
42
  declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
19
43
 
44
+ declare const AlertDialog: react.FC<AlertDialogPrimitive.AlertDialogProps>;
45
+ declare const AlertDialogTrigger: react.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
46
+ declare const AlertDialogContent: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
47
+ declare const AlertDialogHeader: {
48
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
49
+ displayName: string;
50
+ };
51
+ declare const AlertDialogFooter: {
52
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
53
+ displayName: string;
54
+ };
55
+ declare const AlertDialogTitle: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
56
+ declare const AlertDialogDescription: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
57
+ type AlertDialogActionVariant = {
58
+ variant?: VariantProps<typeof buttonVariants>['variant'];
59
+ };
60
+ declare const AlertDialogAction: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & react.RefAttributes<HTMLButtonElement>, "ref"> & AlertDialogActionVariant & react.RefAttributes<HTMLButtonElement>>;
61
+ declare const AlertDialogCancel: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
62
+
20
63
  declare const badgeVariants: (props?: ({
21
- variant?: "outline" | "default" | "fill" | null | undefined;
64
+ variant?: "fill" | "default" | "outline" | null | undefined;
22
65
  color?: "gray" | "green" | "red" | "yellow" | "blue" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "orange" | null | undefined;
23
66
  } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
24
67
  interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
25
68
  }
26
69
  declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
27
70
 
71
+ type CalendarProps = react.ComponentProps<typeof DayPicker>;
72
+ declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
73
+ declare namespace Calendar {
74
+ var displayName: string;
75
+ }
76
+
77
+ declare const Dialog: react.FC<DialogPrimitive.DialogProps>;
78
+ declare const DialogTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
79
+ declare const DialogContent: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
80
+ declare const DialogHeader: {
81
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
82
+ displayName: string;
83
+ };
84
+ declare const DialogFooter: {
85
+ ({ className, ...props }: react.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
86
+ displayName: string;
87
+ };
88
+ declare const DialogTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>, "ref"> & react.RefAttributes<HTMLHeadingElement>>;
89
+ declare const DialogDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
90
+
91
+ declare const Popover: react.FC<PopoverPrimitive.PopoverProps>;
92
+ declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
93
+ declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
94
+
95
+ declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
96
+
28
97
  declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
29
98
  declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
30
99
  declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
31
100
  declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
32
101
 
33
- type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
34
- interface IconProps extends SVGAttributes {
35
- size?: string | number;
36
- duotone?: boolean;
37
- }
38
-
39
102
  declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
40
103
 
41
104
  declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
@@ -194,4 +257,4 @@ declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"
194
257
 
195
258
  declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
196
259
 
197
- export { ActivityIcon, AlertCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, DownloadIcon, EditIcon, ExpandIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon };
260
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityIcon, AlertCircleIcon, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, Calendar, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DownloadIcon, EditIcon, ExpandIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, Popover, PopoverContent, PopoverTrigger, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Switch, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, buttonSizes, buttonVariants, iconButtonSizes };