@snapcall/design-system 1.2.0 → 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 +23 -11
- package/dist/index.d.ts +23 -11
- package/dist/index.js +647 -561
- package/dist/index.mjs +512 -431
- package/dist/tailwind.config.js +10 -0
- package/dist/tailwind.css +1 -1
- package/package.json +3 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import * as react from 'react';
|
|
3
|
-
import { SVGProps } from 'react';
|
|
2
|
+
import react__default, { SVGProps } from 'react';
|
|
3
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
5
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
5
6
|
import { VariantProps } from 'class-variance-authority';
|
|
6
7
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
@@ -8,10 +9,25 @@ import { DayPicker } from 'react-day-picker';
|
|
|
8
9
|
export { DateRange } from 'react-day-picker';
|
|
9
10
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
10
11
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
12
|
+
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
11
13
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
12
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
|
+
|
|
13
29
|
declare const buttonVariants: (props?: ({
|
|
14
|
-
variant?: "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" |
|
|
30
|
+
variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
|
|
15
31
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
16
32
|
declare const buttonSizes: (props?: ({
|
|
17
33
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
@@ -45,7 +61,7 @@ declare const AlertDialogAction: react.ForwardRefExoticComponent<Omit<AlertDialo
|
|
|
45
61
|
declare const AlertDialogCancel: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
46
62
|
|
|
47
63
|
declare const badgeVariants: (props?: ({
|
|
48
|
-
variant?: "
|
|
64
|
+
variant?: "fill" | "default" | "outline" | null | undefined;
|
|
49
65
|
color?: "gray" | "green" | "red" | "yellow" | "blue" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "orange" | null | undefined;
|
|
50
66
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
51
67
|
interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
@@ -76,17 +92,13 @@ declare const Popover: react.FC<PopoverPrimitive.PopoverProps>;
|
|
|
76
92
|
declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
77
93
|
declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
78
94
|
|
|
95
|
+
declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
96
|
+
|
|
79
97
|
declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
|
|
80
98
|
declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
81
99
|
declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
82
100
|
declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
83
101
|
|
|
84
|
-
type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
|
|
85
|
-
interface IconProps extends SVGAttributes {
|
|
86
|
-
size?: string | number;
|
|
87
|
-
duotone?: boolean;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
102
|
declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
91
103
|
|
|
92
104
|
declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
@@ -245,4 +257,4 @@ declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"
|
|
|
245
257
|
|
|
246
258
|
declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
247
259
|
|
|
248
|
-
export { 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, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, buttonSizes, buttonVariants, iconButtonSizes };
|
|
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,6 +1,7 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import * as react from 'react';
|
|
3
|
-
import { SVGProps } from 'react';
|
|
2
|
+
import react__default, { SVGProps } from 'react';
|
|
3
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
5
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
5
6
|
import { VariantProps } from 'class-variance-authority';
|
|
6
7
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
@@ -8,10 +9,25 @@ import { DayPicker } from 'react-day-picker';
|
|
|
8
9
|
export { DateRange } from 'react-day-picker';
|
|
9
10
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
10
11
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
12
|
+
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
11
13
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
12
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
|
+
|
|
13
29
|
declare const buttonVariants: (props?: ({
|
|
14
|
-
variant?: "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" |
|
|
30
|
+
variant?: "link" | "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | null | undefined;
|
|
15
31
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
16
32
|
declare const buttonSizes: (props?: ({
|
|
17
33
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
@@ -45,7 +61,7 @@ declare const AlertDialogAction: react.ForwardRefExoticComponent<Omit<AlertDialo
|
|
|
45
61
|
declare const AlertDialogCancel: react.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
46
62
|
|
|
47
63
|
declare const badgeVariants: (props?: ({
|
|
48
|
-
variant?: "
|
|
64
|
+
variant?: "fill" | "default" | "outline" | null | undefined;
|
|
49
65
|
color?: "gray" | "green" | "red" | "yellow" | "blue" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "orange" | null | undefined;
|
|
50
66
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
51
67
|
interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
@@ -76,17 +92,13 @@ declare const Popover: react.FC<PopoverPrimitive.PopoverProps>;
|
|
|
76
92
|
declare const PopoverTrigger: react.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>;
|
|
77
93
|
declare const PopoverContent: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
78
94
|
|
|
95
|
+
declare const Switch: react.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
96
|
+
|
|
79
97
|
declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
|
|
80
98
|
declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
81
99
|
declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
82
100
|
declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
83
101
|
|
|
84
|
-
type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
|
|
85
|
-
interface IconProps extends SVGAttributes {
|
|
86
|
-
size?: string | number;
|
|
87
|
-
duotone?: boolean;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
102
|
declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
91
103
|
|
|
92
104
|
declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
@@ -245,4 +257,4 @@ declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"
|
|
|
245
257
|
|
|
246
258
|
declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
247
259
|
|
|
248
|
-
export { 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, Tabs, TabsContent, TabsList, TabsTrigger, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, buttonSizes, buttonVariants, iconButtonSizes };
|
|
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 };
|