@wizleap-inc/wiz-ui-react 2.32.0 → 2.34.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/components/base/buttons/icon/components/icon-button.d.ts +1 -1
- package/dist/components/base/card/components/card.d.ts +2 -1
- package/dist/components/base/card/stories/card.stories.d.ts +1 -0
- package/dist/components/custom/voice-input/components/voice-input.d.ts +1 -0
- package/dist/components/custom/voice-input/stories/voice-input.stories.d.ts +22 -0
- package/dist/components/icons/account-circle-bold.d.ts +10 -0
- package/dist/components/icons/assignment-bold.d.ts +10 -0
- package/dist/components/icons/calendar-month-bold.d.ts +10 -0
- package/dist/components/icons/cancel-bold.d.ts +10 -0
- package/dist/components/icons/check-circle-bold.d.ts +10 -0
- package/dist/components/icons/clock-loader-20-bold.d.ts +10 -0
- package/dist/components/icons/index.d.ts +13 -2
- package/dist/components/icons/location-on-bold.d.ts +10 -0
- package/dist/components/icons/rotate-right-bold.d.ts +10 -0
- package/dist/components/icons/schedule-bold.d.ts +10 -0
- package/dist/components/icons/settings-bold.d.ts +10 -0
- package/dist/components/icons/videocam-bold.d.ts +10 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +3025 -2856
- package/dist/wiz-ui.umd.js +24 -24
- package/package.json +3 -3
|
@@ -3,7 +3,7 @@ import { TIcon } from '../../../..';
|
|
|
3
3
|
import { BaseProps } from '../../../../../types';
|
|
4
4
|
type Props = BaseProps & {
|
|
5
5
|
icon: TIcon;
|
|
6
|
-
variant?: "primary" | "sub" | "transparent" | "link" | "white";
|
|
6
|
+
variant?: "primary" | "sub" | "transparent" | "link" | "white" | "green";
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
size?: "sm" | "md" | "lg" | "xl";
|
|
9
9
|
} & ComponentProps<"button">;
|
|
@@ -9,6 +9,7 @@ type Props = BaseProps & {
|
|
|
9
9
|
shadow?: boolean;
|
|
10
10
|
border?: boolean;
|
|
11
11
|
borderColor?: ColorKeys;
|
|
12
|
+
borderStyle?: "solid" | "dashed" | "dotted";
|
|
12
13
|
align?: "start" | "center" | "end" | "stretch";
|
|
13
14
|
fit?: boolean;
|
|
14
15
|
hexpand?: boolean;
|
|
@@ -20,7 +21,7 @@ type Props = BaseProps & {
|
|
|
20
21
|
footerArea?: ReactNode;
|
|
21
22
|
} & ComponentProps<"div">;
|
|
22
23
|
export declare const WizCard: {
|
|
23
|
-
({ className, style, p, px, py, backgroundColor, shadow, border, align, fit, hexpand, maxWidth, gap, children, mainHeaderArea, subHeaderArea, footerArea, borderColor, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
({ className, style, p, px, py, backgroundColor, shadow, border, align, fit, hexpand, maxWidth, gap, children, mainHeaderArea, subHeaderArea, footerArea, borderColor, borderStyle, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
24
25
|
displayName: "WizCard";
|
|
25
26
|
};
|
|
26
27
|
export {};
|
|
@@ -7,6 +7,7 @@ export declare const Default: Story;
|
|
|
7
7
|
export declare const Shadow: Story;
|
|
8
8
|
export declare const Border: Story;
|
|
9
9
|
export declare const borderColor: Story;
|
|
10
|
+
export declare const BorderStyle: Story;
|
|
10
11
|
export declare const Align: Story;
|
|
11
12
|
export declare const Gap: Story;
|
|
12
13
|
export declare const Compound: Story;
|
|
@@ -9,6 +9,7 @@ export declare const Default: import('@storybook/core/csf').AnnotatedStoryFn<imp
|
|
|
9
9
|
micDisabled: boolean;
|
|
10
10
|
expand?: boolean;
|
|
11
11
|
rows?: number;
|
|
12
|
+
resize?: "none" | "vertical";
|
|
12
13
|
maxWidth?: string;
|
|
13
14
|
minWidth?: string;
|
|
14
15
|
isListening: boolean;
|
|
@@ -22,6 +23,7 @@ export declare const Placeholder: import('@storybook/core/csf').AnnotatedStoryFn
|
|
|
22
23
|
micDisabled: boolean;
|
|
23
24
|
expand?: boolean;
|
|
24
25
|
rows?: number;
|
|
26
|
+
resize?: "none" | "vertical";
|
|
25
27
|
maxWidth?: string;
|
|
26
28
|
minWidth?: string;
|
|
27
29
|
isListening: boolean;
|
|
@@ -35,6 +37,7 @@ export declare const Expand: import('@storybook/core/csf').AnnotatedStoryFn<impo
|
|
|
35
37
|
micDisabled: boolean;
|
|
36
38
|
expand?: boolean;
|
|
37
39
|
rows?: number;
|
|
40
|
+
resize?: "none" | "vertical";
|
|
38
41
|
maxWidth?: string;
|
|
39
42
|
minWidth?: string;
|
|
40
43
|
isListening: boolean;
|
|
@@ -48,6 +51,7 @@ export declare const Disabled: import('@storybook/core/csf').AnnotatedStoryFn<im
|
|
|
48
51
|
micDisabled: boolean;
|
|
49
52
|
expand?: boolean;
|
|
50
53
|
rows?: number;
|
|
54
|
+
resize?: "none" | "vertical";
|
|
51
55
|
maxWidth?: string;
|
|
52
56
|
minWidth?: string;
|
|
53
57
|
isListening: boolean;
|
|
@@ -61,6 +65,7 @@ export declare const Row: import('@storybook/core/csf').AnnotatedStoryFn<import(
|
|
|
61
65
|
micDisabled: boolean;
|
|
62
66
|
expand?: boolean;
|
|
63
67
|
rows?: number;
|
|
68
|
+
resize?: "none" | "vertical";
|
|
64
69
|
maxWidth?: string;
|
|
65
70
|
minWidth?: string;
|
|
66
71
|
isListening: boolean;
|
|
@@ -74,6 +79,21 @@ export declare const Listening: import('@storybook/core/csf').AnnotatedStoryFn<i
|
|
|
74
79
|
micDisabled: boolean;
|
|
75
80
|
expand?: boolean;
|
|
76
81
|
rows?: number;
|
|
82
|
+
resize?: "none" | "vertical";
|
|
83
|
+
maxWidth?: string;
|
|
84
|
+
minWidth?: string;
|
|
85
|
+
isListening: boolean;
|
|
86
|
+
onMicClick: () => void;
|
|
87
|
+
onChange?: (value: string) => void;
|
|
88
|
+
} & import('react').RefAttributes<HTMLTextAreaElement>>;
|
|
89
|
+
export declare const Resize: import('@storybook/core/csf').AnnotatedStoryFn<import('@storybook/react/*').ReactRenderer, Omit<Omit<import('react').DetailedHTMLProps<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref">, "resize" | "value" | "onChange" | "rows"> & {
|
|
90
|
+
value: string;
|
|
91
|
+
placeholder?: string;
|
|
92
|
+
disabled?: boolean;
|
|
93
|
+
micDisabled: boolean;
|
|
94
|
+
expand?: boolean;
|
|
95
|
+
rows?: number;
|
|
96
|
+
resize?: "none" | "vertical";
|
|
77
97
|
maxWidth?: string;
|
|
78
98
|
minWidth?: string;
|
|
79
99
|
isListening: boolean;
|
|
@@ -87,6 +107,7 @@ export declare const Test: import('@storybook/core/csf').AnnotatedStoryFn<import
|
|
|
87
107
|
micDisabled: boolean;
|
|
88
108
|
expand?: boolean;
|
|
89
109
|
rows?: number;
|
|
110
|
+
resize?: "none" | "vertical";
|
|
90
111
|
maxWidth?: string;
|
|
91
112
|
minWidth?: string;
|
|
92
113
|
isListening: boolean;
|
|
@@ -100,6 +121,7 @@ export declare const Playground: import('@storybook/core/csf').AnnotatedStoryFn<
|
|
|
100
121
|
micDisabled: boolean;
|
|
101
122
|
expand?: boolean;
|
|
102
123
|
rows?: number;
|
|
124
|
+
resize?: "none" | "vertical";
|
|
103
125
|
maxWidth?: string;
|
|
104
126
|
minWidth?: string;
|
|
105
127
|
isListening: boolean;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIAccountCircleBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIAssignmentBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizICalendarMonthBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizICancelBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizICheckCircleBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIClockLoader20Bold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WizIAccountCircleBold } from './account-circle-bold';
|
|
1
2
|
import { WizIAdd } from './add';
|
|
2
3
|
import { WizIAddCircle } from './add-circle';
|
|
3
4
|
import { WizIAdjust } from './adjust';
|
|
@@ -11,6 +12,7 @@ import { WizIArrowUpward } from './arrow-upward';
|
|
|
11
12
|
import { WizIArticleBold } from './article-bold';
|
|
12
13
|
import { WizIAssignment } from './assignment';
|
|
13
14
|
import { WizIAssignmentAdd } from './assignment-add';
|
|
15
|
+
import { WizIAssignmentBold } from './assignment-bold';
|
|
14
16
|
import { WizIAttachFile } from './attach-file';
|
|
15
17
|
import { WizIAutoRenew } from './auto-renew';
|
|
16
18
|
import { WizIBarChart4Bars } from './bar-chart-4-bars';
|
|
@@ -18,14 +20,17 @@ import { WizIBook } from './book';
|
|
|
18
20
|
import { WizIBrightFilled } from './bright-filled';
|
|
19
21
|
import { WizIBusinessCenter } from './business-center';
|
|
20
22
|
import { WizICalendar } from './calendar';
|
|
23
|
+
import { WizICalendarMonthBold } from './calendar-month-bold';
|
|
21
24
|
import { WizICallBold } from './call-bold';
|
|
22
25
|
import { WizICamera } from './camera';
|
|
23
26
|
import { WizICancel } from './cancel';
|
|
27
|
+
import { WizICancelBold } from './cancel-bold';
|
|
24
28
|
import { WizIChangeHistory } from './change-history';
|
|
25
29
|
import { WizIChat } from './chat';
|
|
26
30
|
import { WizIChatBubbleFilled } from './chat-bubble-filled';
|
|
27
31
|
import { WizICheck } from './check';
|
|
28
32
|
import { WizICheckBold } from './check-bold';
|
|
33
|
+
import { WizICheckCircleBold } from './check-circle-bold';
|
|
29
34
|
import { WizICheckCircleFilled } from './check-circle-filled';
|
|
30
35
|
import { WizIChevronLeft } from './chevron-left';
|
|
31
36
|
import { WizIChevronLeftBold } from './chevron-left-bold';
|
|
@@ -34,6 +39,7 @@ import { WizIChevronRightBold } from './chevron-right-bold';
|
|
|
34
39
|
import { WizICircle } from './circle';
|
|
35
40
|
import { WizICircleCheck } from './circle-check';
|
|
36
41
|
import { WizIClinicalNotes } from './clinical-notes';
|
|
42
|
+
import { WizIClockLoader20Bold } from './clock-loader-20-bold';
|
|
37
43
|
import { WizIClose } from './close';
|
|
38
44
|
import { WizICloseBold } from './close-bold';
|
|
39
45
|
import { WizICloudUpload } from './cloud-upload';
|
|
@@ -104,6 +110,7 @@ import { WizILinkBold } from './link-bold';
|
|
|
104
110
|
import { WizILinkOff } from './link-off';
|
|
105
111
|
import { WizILocationCity } from './location-city';
|
|
106
112
|
import { WizILocationOn } from './location-on';
|
|
113
|
+
import { WizILocationOnBold } from './location-on-bold';
|
|
107
114
|
import { WizILogin } from './login';
|
|
108
115
|
import { WizIMail } from './mail';
|
|
109
116
|
import { WizIMailBold } from './mail-bold';
|
|
@@ -135,10 +142,13 @@ import { WizIRecordVoiceOverBold } from './record-voice-over-bold';
|
|
|
135
142
|
import { WizIRemove } from './remove';
|
|
136
143
|
import { WizIRemoveBold } from './remove-bold';
|
|
137
144
|
import { WizIReviews } from './reviews';
|
|
145
|
+
import { WizIRotateRightBold } from './rotate-right-bold';
|
|
138
146
|
import { WizISchedule } from './schedule';
|
|
147
|
+
import { WizIScheduleBold } from './schedule-bold';
|
|
139
148
|
import { WizISearch } from './search';
|
|
140
149
|
import { WizISend } from './send';
|
|
141
150
|
import { WizISettings } from './settings';
|
|
151
|
+
import { WizISettingsBold } from './settings-bold';
|
|
142
152
|
import { WizIShineBold } from './shine-bold';
|
|
143
153
|
import { WizIShoppingmode } from './shoppingmode';
|
|
144
154
|
import { WizISmartphone } from './smartphone';
|
|
@@ -155,9 +165,10 @@ import { WizITimerFilled } from './timer-filled';
|
|
|
155
165
|
import { WizITune } from './tune';
|
|
156
166
|
import { WizIUpload } from './upload';
|
|
157
167
|
import { WizIVideoCameraBackBold } from './video-camera-back-bold';
|
|
168
|
+
import { WizIVideocamBold } from './videocam-bold';
|
|
158
169
|
import { WizIViewModuleBold } from './view-module-bold';
|
|
159
170
|
import { WizIWarning } from './warning';
|
|
160
171
|
import { WizIZoomInBold } from './zoom-in-bold';
|
|
161
172
|
import { WizIZoomOutBold } from './zoom-out-bold';
|
|
162
|
-
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIAdjustBold | typeof WizIAdjust | typeof WizIApprovalFilled | typeof WizIArrowDownward | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIArrowUpward | typeof WizIArticleBold | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBarChart4Bars | typeof WizIBook | typeof WizIBrightFilled | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICallBold | typeof WizICamera | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChatBubbleFilled | typeof WizIChat | typeof WizICheckBold | typeof WizICheckCircleFilled | typeof WizICheck | typeof WizIChevronLeftBold | typeof WizIChevronLeft | typeof WizIChevronRightBold | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizICircle | typeof WizIClinicalNotes | typeof WizICloseBold | typeof WizIClose | typeof WizICloudUpload | typeof WizIContactPageFilled | typeof WizIContentCopy | typeof WizIContract | typeof WizICorporateFare | typeof WizICounter1Filled | typeof WizICounter1 | typeof WizICounter2Filled | typeof WizICounter2 | typeof WizICounter3Filled | typeof WizICounter3 | typeof WizICounter4Filled | typeof WizICounter4 | typeof WizICounter5Filled | typeof WizICounter5 | typeof WizICounter6Filled | typeof WizICounter6 | typeof WizICounter7Filled | typeof WizICounter7 | typeof WizICounter8Filled | typeof WizICounter8 | typeof WizICounter9Filled | typeof WizICounter9 | typeof WizIDashboard | typeof WizIDeleteBold | typeof WizIDelete | typeof WizIDemography | typeof WizIDescription | typeof WizIDomain | typeof WizIDownloadBold | typeof WizIDownload | typeof WizIDraft | typeof WizIDrafts | typeof WizIEditNoteBold | typeof WizIEditNote | typeof WizIEditPencilBold | typeof WizIEmergencyHome | typeof WizIErrorBold | typeof WizIErrorFilled | typeof WizIExpandLess | typeof WizIExpandMoreBold | typeof WizIExpandMore | typeof WizIEye | typeof WizIFamilyHome | typeof WizIFeedback | typeof WizIFolderBold | typeof WizIFolderFilled | typeof WizIFolderSharedBold | typeof WizIFolderSharedFilled | typeof WizIForwardToInbox | typeof WizIGroupBold | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIHourglassTop | typeof WizIImageBold | typeof WizIImagesmodeBold | typeof WizIInboxCustomize | typeof WizIInfoBold | typeof WizIInfoFilled | typeof WizIInfo | typeof WizIJamboardKioskBold | typeof WizIKeepBold | typeof WizILinkBold | typeof WizILinkOff | typeof WizILocationCity | typeof WizILocationOn | typeof WizILogin | typeof WizIMailBold | typeof WizIMail | typeof WizIManageAccounts | typeof WizIMenuOpen | typeof WizIMenu | typeof WizIMergeTypeBold | typeof WizIMicBold | typeof WizIMicFilled | typeof WizIMicOffFilled | typeof WizIMinusFilled | typeof WizIMonitoring | typeof WizIMoreVertBold | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPauseCircleBold | typeof WizIPersonAddBold | typeof WizIPersonFilled | typeof WizIPictureAsPdfBold | typeof WizIPictureAsPdfFilled | typeof WizIPieChart | typeof WizIPinDrop | typeof WizIPlayArrowFilled | typeof WizIPlayCircleBold | typeof WizIPublic | typeof WizIRecordVoiceOverBold | typeof WizIRemoveBold | typeof WizIRemove | typeof WizIReviews | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettings | typeof WizIShineBold | typeof WizIShoppingmode | typeof WizISmartphoneBold | typeof WizISmartphone | typeof WizISmsBold | typeof WizIStarBold | typeof WizIStarFilled | typeof WizIStars | typeof WizIStopFilled | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizITimerFilled | typeof WizITune | typeof WizIUpload | typeof WizIVideoCameraBackBold | typeof WizIViewModuleBold | typeof WizIWarning | typeof WizIZoomInBold | typeof WizIZoomOutBold;
|
|
163
|
-
export { WizIAddCircle, WizIAdd, WizIAdjustBold, WizIAdjust, WizIApprovalFilled, WizIArrowDownward, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIArrowUpward, WizIArticleBold, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBarChart4Bars, WizIBook, WizIBrightFilled, WizIBusinessCenter, WizICalendar, WizICallBold, WizICamera, WizICancel, WizIChangeHistory, WizIChatBubbleFilled, WizIChat, WizICheckBold, WizICheckCircleFilled, WizICheck, WizIChevronLeftBold, WizIChevronLeft, WizIChevronRightBold, WizIChevronRight, WizICircleCheck, WizICircle, WizIClinicalNotes, WizICloseBold, WizIClose, WizICloudUpload, WizIContactPageFilled, WizIContentCopy, WizIContract, WizICorporateFare, WizICounter1Filled, WizICounter1, WizICounter2Filled, WizICounter2, WizICounter3Filled, WizICounter3, WizICounter4Filled, WizICounter4, WizICounter5Filled, WizICounter5, WizICounter6Filled, WizICounter6, WizICounter7Filled, WizICounter7, WizICounter8Filled, WizICounter8, WizICounter9Filled, WizICounter9, WizIDashboard, WizIDeleteBold, WizIDelete, WizIDemography, WizIDescription, WizIDomain, WizIDownloadBold, WizIDownload, WizIDraft, WizIDrafts, WizIEditNoteBold, WizIEditNote, WizIEditPencilBold, WizIEmergencyHome, WizIErrorBold, WizIErrorFilled, WizIExpandLess, WizIExpandMoreBold, WizIExpandMore, WizIEye, WizIFamilyHome, WizIFeedback, WizIFolderBold, WizIFolderFilled, WizIFolderSharedBold, WizIFolderSharedFilled, WizIForwardToInbox, WizIGroupBold, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIHourglassTop, WizIImageBold, WizIImagesmodeBold, WizIInboxCustomize, WizIInfoBold, WizIInfoFilled, WizIInfo, WizIJamboardKioskBold, WizIKeepBold, WizILinkBold, WizILinkOff, WizILocationCity, WizILocationOn, WizILogin, WizIMailBold, WizIMail, WizIManageAccounts, WizIMenuOpen, WizIMenu, WizIMergeTypeBold, WizIMicBold, WizIMicFilled, WizIMicOffFilled, WizIMinusFilled, WizIMonitoring, WizIMoreVertBold, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPauseCircleBold, WizIPersonAddBold, WizIPersonFilled, WizIPictureAsPdfBold, WizIPictureAsPdfFilled, WizIPieChart, WizIPinDrop, WizIPlayArrowFilled, WizIPlayCircleBold, WizIPublic, WizIRecordVoiceOverBold, WizIRemoveBold, WizIRemove, WizIReviews, WizISchedule, WizISearch, WizISend, WizISettings, WizIShineBold, WizIShoppingmode, WizISmartphoneBold, WizISmartphone, WizISmsBold, WizIStarBold, WizIStarFilled, WizIStars, WizIStopFilled, WizIStoreFront, WizITab, WizITask, WizITimerFilled, WizITune, WizIUpload, WizIVideoCameraBackBold, WizIViewModuleBold, WizIWarning, WizIZoomInBold, WizIZoomOutBold, };
|
|
173
|
+
export type TIcon = typeof WizIAccountCircleBold | typeof WizIAddCircle | typeof WizIAdd | typeof WizIAdjustBold | typeof WizIAdjust | typeof WizIApprovalFilled | typeof WizIArrowDownward | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIArrowUpward | typeof WizIArticleBold | typeof WizIAssignmentAdd | typeof WizIAssignmentBold | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBarChart4Bars | typeof WizIBook | typeof WizIBrightFilled | typeof WizIBusinessCenter | typeof WizICalendarMonthBold | typeof WizICalendar | typeof WizICallBold | typeof WizICamera | typeof WizICancelBold | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChatBubbleFilled | typeof WizIChat | typeof WizICheckBold | typeof WizICheckCircleBold | typeof WizICheckCircleFilled | typeof WizICheck | typeof WizIChevronLeftBold | typeof WizIChevronLeft | typeof WizIChevronRightBold | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizICircle | typeof WizIClinicalNotes | typeof WizIClockLoader20Bold | typeof WizICloseBold | typeof WizIClose | typeof WizICloudUpload | typeof WizIContactPageFilled | typeof WizIContentCopy | typeof WizIContract | typeof WizICorporateFare | typeof WizICounter1Filled | typeof WizICounter1 | typeof WizICounter2Filled | typeof WizICounter2 | typeof WizICounter3Filled | typeof WizICounter3 | typeof WizICounter4Filled | typeof WizICounter4 | typeof WizICounter5Filled | typeof WizICounter5 | typeof WizICounter6Filled | typeof WizICounter6 | typeof WizICounter7Filled | typeof WizICounter7 | typeof WizICounter8Filled | typeof WizICounter8 | typeof WizICounter9Filled | typeof WizICounter9 | typeof WizIDashboard | typeof WizIDeleteBold | typeof WizIDelete | typeof WizIDemography | typeof WizIDescription | typeof WizIDomain | typeof WizIDownloadBold | typeof WizIDownload | typeof WizIDraft | typeof WizIDrafts | typeof WizIEditNoteBold | typeof WizIEditNote | typeof WizIEditPencilBold | typeof WizIEmergencyHome | typeof WizIErrorBold | typeof WizIErrorFilled | typeof WizIExpandLess | typeof WizIExpandMoreBold | typeof WizIExpandMore | typeof WizIEye | typeof WizIFamilyHome | typeof WizIFeedback | typeof WizIFolderBold | typeof WizIFolderFilled | typeof WizIFolderSharedBold | typeof WizIFolderSharedFilled | typeof WizIForwardToInbox | typeof WizIGroupBold | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIHourglassTop | typeof WizIImageBold | typeof WizIImagesmodeBold | typeof WizIInboxCustomize | typeof WizIInfoBold | typeof WizIInfoFilled | typeof WizIInfo | typeof WizIJamboardKioskBold | typeof WizIKeepBold | typeof WizILinkBold | typeof WizILinkOff | typeof WizILocationCity | typeof WizILocationOnBold | typeof WizILocationOn | typeof WizILogin | typeof WizIMailBold | typeof WizIMail | typeof WizIManageAccounts | typeof WizIMenuOpen | typeof WizIMenu | typeof WizIMergeTypeBold | typeof WizIMicBold | typeof WizIMicFilled | typeof WizIMicOffFilled | typeof WizIMinusFilled | typeof WizIMonitoring | typeof WizIMoreVertBold | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPauseCircleBold | typeof WizIPersonAddBold | typeof WizIPersonFilled | typeof WizIPictureAsPdfBold | typeof WizIPictureAsPdfFilled | typeof WizIPieChart | typeof WizIPinDrop | typeof WizIPlayArrowFilled | typeof WizIPlayCircleBold | typeof WizIPublic | typeof WizIRecordVoiceOverBold | typeof WizIRemoveBold | typeof WizIRemove | typeof WizIReviews | typeof WizIRotateRightBold | typeof WizIScheduleBold | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettingsBold | typeof WizISettings | typeof WizIShineBold | typeof WizIShoppingmode | typeof WizISmartphoneBold | typeof WizISmartphone | typeof WizISmsBold | typeof WizIStarBold | typeof WizIStarFilled | typeof WizIStars | typeof WizIStopFilled | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizITimerFilled | typeof WizITune | typeof WizIUpload | typeof WizIVideoCameraBackBold | typeof WizIVideocamBold | typeof WizIViewModuleBold | typeof WizIWarning | typeof WizIZoomInBold | typeof WizIZoomOutBold;
|
|
174
|
+
export { WizIAccountCircleBold, WizIAddCircle, WizIAdd, WizIAdjustBold, WizIAdjust, WizIApprovalFilled, WizIArrowDownward, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIArrowUpward, WizIArticleBold, WizIAssignmentAdd, WizIAssignmentBold, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBarChart4Bars, WizIBook, WizIBrightFilled, WizIBusinessCenter, WizICalendarMonthBold, WizICalendar, WizICallBold, WizICamera, WizICancelBold, WizICancel, WizIChangeHistory, WizIChatBubbleFilled, WizIChat, WizICheckBold, WizICheckCircleBold, WizICheckCircleFilled, WizICheck, WizIChevronLeftBold, WizIChevronLeft, WizIChevronRightBold, WizIChevronRight, WizICircleCheck, WizICircle, WizIClinicalNotes, WizIClockLoader20Bold, WizICloseBold, WizIClose, WizICloudUpload, WizIContactPageFilled, WizIContentCopy, WizIContract, WizICorporateFare, WizICounter1Filled, WizICounter1, WizICounter2Filled, WizICounter2, WizICounter3Filled, WizICounter3, WizICounter4Filled, WizICounter4, WizICounter5Filled, WizICounter5, WizICounter6Filled, WizICounter6, WizICounter7Filled, WizICounter7, WizICounter8Filled, WizICounter8, WizICounter9Filled, WizICounter9, WizIDashboard, WizIDeleteBold, WizIDelete, WizIDemography, WizIDescription, WizIDomain, WizIDownloadBold, WizIDownload, WizIDraft, WizIDrafts, WizIEditNoteBold, WizIEditNote, WizIEditPencilBold, WizIEmergencyHome, WizIErrorBold, WizIErrorFilled, WizIExpandLess, WizIExpandMoreBold, WizIExpandMore, WizIEye, WizIFamilyHome, WizIFeedback, WizIFolderBold, WizIFolderFilled, WizIFolderSharedBold, WizIFolderSharedFilled, WizIForwardToInbox, WizIGroupBold, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIHourglassTop, WizIImageBold, WizIImagesmodeBold, WizIInboxCustomize, WizIInfoBold, WizIInfoFilled, WizIInfo, WizIJamboardKioskBold, WizIKeepBold, WizILinkBold, WizILinkOff, WizILocationCity, WizILocationOnBold, WizILocationOn, WizILogin, WizIMailBold, WizIMail, WizIManageAccounts, WizIMenuOpen, WizIMenu, WizIMergeTypeBold, WizIMicBold, WizIMicFilled, WizIMicOffFilled, WizIMinusFilled, WizIMonitoring, WizIMoreVertBold, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPauseCircleBold, WizIPersonAddBold, WizIPersonFilled, WizIPictureAsPdfBold, WizIPictureAsPdfFilled, WizIPieChart, WizIPinDrop, WizIPlayArrowFilled, WizIPlayCircleBold, WizIPublic, WizIRecordVoiceOverBold, WizIRemoveBold, WizIRemove, WizIReviews, WizIRotateRightBold, WizIScheduleBold, WizISchedule, WizISearch, WizISend, WizISettingsBold, WizISettings, WizIShineBold, WizIShoppingmode, WizISmartphoneBold, WizISmartphone, WizISmsBold, WizIStarBold, WizIStarFilled, WizIStars, WizIStopFilled, WizIStoreFront, WizITab, WizITask, WizITimerFilled, WizITune, WizIUpload, WizIVideoCameraBackBold, WizIVideocamBold, WizIViewModuleBold, WizIWarning, WizIZoomInBold, WizIZoomOutBold, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizILocationOnBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIRotateRightBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIScheduleBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizISettingsBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIVideocamBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|