@wizleap-inc/wiz-ui-react 1.2.0 → 1.4.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/accordion/components/accordion.d.ts +1 -1
- package/dist/components/base/calendar/components/calendar.d.ts +1 -0
- package/dist/components/base/calendar/stories/calendar.stories.d.ts +3 -0
- package/dist/components/base/dialog/components/dialog.d.ts +1 -1
- package/dist/components/base/dropdown/components/dropdown.d.ts +1 -1
- package/dist/components/base/full-modal-view/components/full-modal-view.d.ts +1 -1
- package/dist/components/base/header/components/header.d.ts +1 -1
- package/dist/components/base/information-panel/components/information-panel.d.ts +1 -1
- package/dist/components/base/inputs/date-picker/components/date-picker.d.ts +2 -1
- package/dist/components/base/inputs/date-picker/stories/date-picker.stories.d.ts +2 -0
- package/dist/components/base/inputs/date-range-picker/components/date-range-picker.d.ts +2 -1
- package/dist/components/base/inputs/date-range-picker/stories/date-range-picker.stories.d.ts +2 -0
- package/dist/components/base/inputs/password/components/password-input.d.ts +1 -1
- package/dist/components/base/inputs/search-input/components/search-input.d.ts +1 -1
- package/dist/components/base/inputs/search-selector/components/search-selector.d.ts +1 -1
- package/dist/components/base/inputs/selectbox/components/selectbox.d.ts +1 -1
- package/dist/components/base/inputs/time-picker/components/time-picker.d.ts +1 -1
- package/dist/components/base/inputs/toggle-switch/components/toggle-switch.d.ts +1 -1
- package/dist/components/base/pagination/components/pagination.d.ts +1 -1
- package/dist/components/base/popup/components/popup.d.ts +1 -1
- package/dist/components/base/show-more-less/components/show-more-less.d.ts +1 -1
- package/dist/components/base/snackbar/components/snackbar.d.ts +1 -1
- package/dist/components/base/tab/components/tab-pane.d.ts +1 -1
- package/dist/components/base/tab/components/tab.d.ts +1 -1
- package/dist/components/base/text-area/components/text-area.d.ts +1 -1
- package/dist/components/custom/chat/components/chat-card.d.ts +3 -3
- package/dist/components/custom/chat/components/chat-form.d.ts +2 -2
- package/dist/components/icons/error-filled.d.ts +10 -0
- package/dist/components/icons/image-bold.d.ts +10 -0
- package/dist/components/icons/index.d.ts +7 -2
- package/dist/components/icons/keep-bold.d.ts +10 -0
- package/dist/components/icons/pause-circle-bold.d.ts +10 -0
- package/dist/components/icons/play-circle-bold.d.ts +10 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +3658 -3538
- package/dist/wiz-ui.umd.js +25 -25
- package/package.json +4 -4
|
@@ -7,3 +7,6 @@ export declare const Default: Story;
|
|
|
7
7
|
export declare const CurrentMonth: Story;
|
|
8
8
|
export declare const ActiveDates: Story;
|
|
9
9
|
export declare const FilledWeeks: Story;
|
|
10
|
+
export declare const Today: Story;
|
|
11
|
+
export declare const DisabledToday: Story;
|
|
12
|
+
export declare const SelectedToday: Story;
|
|
@@ -7,7 +7,8 @@ type Props = BaseProps & {
|
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
error?: boolean;
|
|
9
9
|
isDirectionFixed?: boolean;
|
|
10
|
-
|
|
10
|
+
_today?: Date;
|
|
11
|
+
onChangeDate?: (selectedValue: Date | null) => void;
|
|
11
12
|
/**
|
|
12
13
|
* @description 日付が無効かどうかを判定する関数です。無効な日付はクリック不可になります。
|
|
13
14
|
* @param date
|
|
@@ -9,7 +9,8 @@ type Props = BaseProps & {
|
|
|
9
9
|
selectBoxValue?: string;
|
|
10
10
|
isDirectionFixed?: boolean;
|
|
11
11
|
error?: boolean;
|
|
12
|
-
|
|
12
|
+
_today?: Date;
|
|
13
|
+
onChangeDateRange?: (dateRange: DateRange) => void;
|
|
13
14
|
onChangeSelectBoxValue?: (value: string) => void;
|
|
14
15
|
disabledDate?: (date: Date) => boolean;
|
|
15
16
|
/**
|
|
@@ -12,7 +12,7 @@ type Props = BaseProps & {
|
|
|
12
12
|
width?: string;
|
|
13
13
|
autocomplete?: Extract<AutoCompleteKeys, "currentPassword" | "newPassword">;
|
|
14
14
|
error?: boolean;
|
|
15
|
-
onChange
|
|
15
|
+
onChange?: (value: string) => void;
|
|
16
16
|
} & Omit<PrivateBaseInputProps, "onChange">;
|
|
17
17
|
export declare const WizPasswordInput: import('react').ForwardRefExoticComponent<Omit<Props, "ref"> & import('react').RefAttributes<HTMLInputElement>>;
|
|
18
18
|
export {};
|
|
@@ -16,7 +16,7 @@ type Props<T extends CheckboxOption> = BaseProps & {
|
|
|
16
16
|
icon?: TIcon;
|
|
17
17
|
showSelectedItem?: boolean;
|
|
18
18
|
showParentLabel?: boolean;
|
|
19
|
-
onChangeValues
|
|
19
|
+
onChangeValues?: (values: T[]) => void;
|
|
20
20
|
};
|
|
21
21
|
export declare const WizSearchInput: {
|
|
22
22
|
<T extends CheckboxOption>({ className, style, options, values, name, placeholder, disabled, expand, singleSelect, inputWidth, popupWidth, isDirectionFixed, emptyMessage, showSelectedItem, onChangeValues, showParentLabel, icon, }: Props<T>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,7 +16,7 @@ type Props<T> = BaseProps & {
|
|
|
16
16
|
isDirectionFixed?: boolean;
|
|
17
17
|
showExLabel?: boolean;
|
|
18
18
|
dropdownMaxHeight?: string;
|
|
19
|
-
onChange
|
|
19
|
+
onChange?: (value: T | null) => void;
|
|
20
20
|
};
|
|
21
21
|
export declare const WizSelectBox: {
|
|
22
22
|
<T>({ className, style, options, value, placeholder, width, disabled, expand, error, isDirectionFixed, showExLabel, dropdownMaxHeight, onChange, }: Props<T>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,7 +4,7 @@ import { BaseProps } from '../../../../types';
|
|
|
4
4
|
import { DirectionKey } from '../types/direction';
|
|
5
5
|
type Props = BaseProps & {
|
|
6
6
|
isOpen: boolean;
|
|
7
|
-
onClose
|
|
7
|
+
onClose?: () => void;
|
|
8
8
|
anchorElement: RefObject<HTMLElement>;
|
|
9
9
|
direction?: DirectionKey;
|
|
10
10
|
gap?: Exclude<SpacingKeys, "at">;
|
|
@@ -12,5 +12,5 @@ export declare const WizTextArea: import('react').ForwardRefExoticComponent<Base
|
|
|
12
12
|
minWidth?: string | undefined;
|
|
13
13
|
maxHeight?: string | undefined;
|
|
14
14
|
minHeight?: string | undefined;
|
|
15
|
-
onChange
|
|
15
|
+
onChange?: ((value: string) => void) | undefined;
|
|
16
16
|
} & import('react').RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -15,9 +15,9 @@ type Props<T> = BaseProps & {
|
|
|
15
15
|
statusOptions?: ComponentProps<typeof WizSelectBox<T>>["options"];
|
|
16
16
|
statusPlaceholder?: string;
|
|
17
17
|
onChangeStatus?: (status: T | null) => void;
|
|
18
|
-
onChangeTextValue
|
|
19
|
-
onSubmit
|
|
20
|
-
onToggle
|
|
18
|
+
onChangeTextValue?: (value: string) => void;
|
|
19
|
+
onSubmit?: () => void;
|
|
20
|
+
onToggle?: () => void;
|
|
21
21
|
};
|
|
22
22
|
export declare const WizChatCard: {
|
|
23
23
|
<T>({ className, style, isOpen, textValue, username, placeholder, messages, haveNewMessage, formRows, typingUsername, status, statusOptions, statusPlaceholder, onChangeStatus, onChangeTextValue, onSubmit, onToggle, }: Props<T>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,8 +5,8 @@ type Props = BaseProps & {
|
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
placeholder?: string;
|
|
7
7
|
formRows?: number;
|
|
8
|
-
onChange
|
|
9
|
-
onSubmit
|
|
8
|
+
onChange?: (value: string) => void;
|
|
9
|
+
onSubmit?: () => void;
|
|
10
10
|
};
|
|
11
11
|
export declare const WizChatForm: FC<Props>;
|
|
12
12
|
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIErrorFilled: {
|
|
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 WizIImageBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -65,6 +65,7 @@ import { WizIDraft } from './draft';
|
|
|
65
65
|
import { WizIDrafts } from './drafts';
|
|
66
66
|
import { WizIEditNote } from './edit-note';
|
|
67
67
|
import { WizIEmergencyHome } from './emergency-home';
|
|
68
|
+
import { WizIErrorFilled } from './error-filled';
|
|
68
69
|
import { WizIExpandLess } from './expand-less';
|
|
69
70
|
import { WizIExpandMore } from './expand-more';
|
|
70
71
|
import { WizIExpandMoreBold } from './expand-more-bold';
|
|
@@ -77,10 +78,12 @@ import { WizIHelp } from './help';
|
|
|
77
78
|
import { WizIHistory } from './history';
|
|
78
79
|
import { WizIHome } from './home';
|
|
79
80
|
import { WizIHourglassTop } from './hourglass-top';
|
|
81
|
+
import { WizIImageBold } from './image-bold';
|
|
80
82
|
import { WizIInboxCustomize } from './inbox-customize';
|
|
81
83
|
import { WizIInfo } from './info';
|
|
82
84
|
import { WizIInfoBold } from './info-bold';
|
|
83
85
|
import { WizIInfoFilled } from './info-filled';
|
|
86
|
+
import { WizIKeepBold } from './keep-bold';
|
|
84
87
|
import { WizILinkOff } from './link-off';
|
|
85
88
|
import { WizILocationCity } from './location-city';
|
|
86
89
|
import { WizILocationOn } from './location-on';
|
|
@@ -94,9 +97,11 @@ import { WizIMoreVert } from './more-vert';
|
|
|
94
97
|
import { WizINoteAdd } from './note-add';
|
|
95
98
|
import { WizINotification } from './notification';
|
|
96
99
|
import { WizIOpenInNew } from './open-in-new';
|
|
100
|
+
import { WizIPauseCircleBold } from './pause-circle-bold';
|
|
97
101
|
import { WizIPersonFilled } from './person-filled';
|
|
98
102
|
import { WizIPieChart } from './pie-chart';
|
|
99
103
|
import { WizIPinDrop } from './pin-drop';
|
|
104
|
+
import { WizIPlayCircleBold } from './play-circle-bold';
|
|
100
105
|
import { WizIPublic } from './public';
|
|
101
106
|
import { WizIRemove } from './remove';
|
|
102
107
|
import { WizIRemoveBold } from './remove-bold';
|
|
@@ -116,5 +121,5 @@ import { WizITimerFilled } from './timer-filled';
|
|
|
116
121
|
import { WizITune } from './tune';
|
|
117
122
|
import { WizIUpload } from './upload';
|
|
118
123
|
import { WizIWarning } from './warning';
|
|
119
|
-
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIAdjustBold | typeof WizIAdjust | typeof WizIApprovalFilled | typeof WizIArrowDownward | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIArrowUpward | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBarChart4Bars | typeof WizIBook | typeof WizIBrightFilled | typeof WizIBusinessCenter | typeof WizICalendar | 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 WizICloseBold | typeof WizIClose | typeof WizICloudUpload | typeof WizIContactPageFilled | typeof WizIContentCopy | typeof WizIContract | 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 WizIDelete | typeof WizIDemography | typeof WizIDescription | typeof WizIDomain | typeof WizIDownload | typeof WizIDraft | typeof WizIDrafts | typeof WizIEditNote | typeof WizIEmergencyHome | typeof WizIExpandLess | typeof WizIExpandMoreBold | typeof WizIExpandMore | typeof WizIEye | typeof WizIFamilyHome | typeof WizIFeedback | typeof WizIForwardToInbox | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIHourglassTop | typeof WizIInboxCustomize | typeof WizIInfoBold | typeof WizIInfoFilled | typeof WizIInfo | typeof WizILinkOff | typeof WizILocationCity | typeof WizILocationOn | typeof WizILogin | typeof WizIMail | typeof WizIManageAccounts | typeof WizIMenuOpen | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPersonFilled | typeof WizIPieChart | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemoveBold | typeof WizIRemove | typeof WizIReviews | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettings | typeof WizIShoppingmode | typeof WizISmartphone | typeof WizIStarFilled | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizITimerFilled | typeof WizITune | typeof WizIUpload | typeof WizIWarning;
|
|
120
|
-
export { WizIAddCircle, WizIAdd, WizIAdjustBold, WizIAdjust, WizIApprovalFilled, WizIArrowDownward, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIArrowUpward, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBarChart4Bars, WizIBook, WizIBrightFilled, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChatBubbleFilled, WizIChat, WizICheckBold, WizICheckCircleFilled, WizICheck, WizIChevronLeftBold, WizIChevronLeft, WizIChevronRightBold, WizIChevronRight, WizICircleCheck, WizICircle, WizICloseBold, WizIClose, WizICloudUpload, WizIContactPageFilled, WizIContentCopy, WizIContract, WizICounter1Filled, WizICounter1, WizICounter2Filled, WizICounter2, WizICounter3Filled, WizICounter3, WizICounter4Filled, WizICounter4, WizICounter5Filled, WizICounter5, WizICounter6Filled, WizICounter6, WizICounter7Filled, WizICounter7, WizICounter8Filled, WizICounter8, WizICounter9Filled, WizICounter9, WizIDashboard, WizIDelete, WizIDemography, WizIDescription, WizIDomain, WizIDownload, WizIDraft, WizIDrafts, WizIEditNote, WizIEmergencyHome, WizIExpandLess, WizIExpandMoreBold, WizIExpandMore, WizIEye, WizIFamilyHome, WizIFeedback, WizIForwardToInbox, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIHourglassTop, WizIInboxCustomize, WizIInfoBold, WizIInfoFilled, WizIInfo, WizILinkOff, WizILocationCity, WizILocationOn, WizILogin, WizIMail, WizIManageAccounts, WizIMenuOpen, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPersonFilled, WizIPieChart, WizIPinDrop, WizIPublic, WizIRemoveBold, WizIRemove, WizIReviews, WizISchedule, WizISearch, WizISend, WizISettings, WizIShoppingmode, WizISmartphone, WizIStarFilled, WizIStars, WizIStoreFront, WizITab, WizITask, WizITimerFilled, WizITune, WizIUpload, WizIWarning, };
|
|
124
|
+
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIAdjustBold | typeof WizIAdjust | typeof WizIApprovalFilled | typeof WizIArrowDownward | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIArrowUpward | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBarChart4Bars | typeof WizIBook | typeof WizIBrightFilled | typeof WizIBusinessCenter | typeof WizICalendar | 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 WizICloseBold | typeof WizIClose | typeof WizICloudUpload | typeof WizIContactPageFilled | typeof WizIContentCopy | typeof WizIContract | 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 WizIDelete | typeof WizIDemography | typeof WizIDescription | typeof WizIDomain | typeof WizIDownload | typeof WizIDraft | typeof WizIDrafts | typeof WizIEditNote | typeof WizIEmergencyHome | typeof WizIErrorFilled | typeof WizIExpandLess | typeof WizIExpandMoreBold | typeof WizIExpandMore | typeof WizIEye | typeof WizIFamilyHome | typeof WizIFeedback | typeof WizIForwardToInbox | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIHourglassTop | typeof WizIImageBold | typeof WizIInboxCustomize | typeof WizIInfoBold | typeof WizIInfoFilled | typeof WizIInfo | typeof WizIKeepBold | typeof WizILinkOff | typeof WizILocationCity | typeof WizILocationOn | typeof WizILogin | typeof WizIMail | typeof WizIManageAccounts | typeof WizIMenuOpen | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPauseCircleBold | typeof WizIPersonFilled | typeof WizIPieChart | typeof WizIPinDrop | typeof WizIPlayCircleBold | typeof WizIPublic | typeof WizIRemoveBold | typeof WizIRemove | typeof WizIReviews | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettings | typeof WizIShoppingmode | typeof WizISmartphone | typeof WizIStarFilled | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizITimerFilled | typeof WizITune | typeof WizIUpload | typeof WizIWarning;
|
|
125
|
+
export { WizIAddCircle, WizIAdd, WizIAdjustBold, WizIAdjust, WizIApprovalFilled, WizIArrowDownward, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIArrowUpward, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBarChart4Bars, WizIBook, WizIBrightFilled, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChatBubbleFilled, WizIChat, WizICheckBold, WizICheckCircleFilled, WizICheck, WizIChevronLeftBold, WizIChevronLeft, WizIChevronRightBold, WizIChevronRight, WizICircleCheck, WizICircle, WizICloseBold, WizIClose, WizICloudUpload, WizIContactPageFilled, WizIContentCopy, WizIContract, WizICounter1Filled, WizICounter1, WizICounter2Filled, WizICounter2, WizICounter3Filled, WizICounter3, WizICounter4Filled, WizICounter4, WizICounter5Filled, WizICounter5, WizICounter6Filled, WizICounter6, WizICounter7Filled, WizICounter7, WizICounter8Filled, WizICounter8, WizICounter9Filled, WizICounter9, WizIDashboard, WizIDelete, WizIDemography, WizIDescription, WizIDomain, WizIDownload, WizIDraft, WizIDrafts, WizIEditNote, WizIEmergencyHome, WizIErrorFilled, WizIExpandLess, WizIExpandMoreBold, WizIExpandMore, WizIEye, WizIFamilyHome, WizIFeedback, WizIForwardToInbox, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIHourglassTop, WizIImageBold, WizIInboxCustomize, WizIInfoBold, WizIInfoFilled, WizIInfo, WizIKeepBold, WizILinkOff, WizILocationCity, WizILocationOn, WizILogin, WizIMail, WizIManageAccounts, WizIMenuOpen, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPauseCircleBold, WizIPersonFilled, WizIPieChart, WizIPinDrop, WizIPlayCircleBold, WizIPublic, WizIRemoveBold, WizIRemove, WizIReviews, WizISchedule, WizISearch, WizISend, WizISettings, WizIShoppingmode, WizISmartphone, WizIStarFilled, WizIStars, WizIStoreFront, WizITab, WizITask, WizITimerFilled, WizITune, WizIUpload, WizIWarning, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
className?: string;
|
|
4
|
+
style?: CSSProperties;
|
|
5
|
+
};
|
|
6
|
+
export declare const WizIKeepBold: {
|
|
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 WizIPauseCircleBold: {
|
|
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 WizIPlayCircleBold: {
|
|
7
|
+
({ className, style }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|