@antscorp/antsomi-ui 1.2.3-beta.2 → 1.2.3-beta.4
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.js +1 -1
- package/dist/types/components/icons/AudioRecordIcon.d.ts +1 -0
- package/dist/types/components/icons/CameraIcon.d.ts +1 -0
- package/dist/types/components/icons/CaptureIcon.d.ts +1 -0
- package/dist/types/components/icons/MuteIcon.d.ts +1 -0
- package/dist/types/components/icons/PauseIcon.d.ts +1 -0
- package/dist/types/components/icons/StopRecordIcon.d.ts +1 -0
- package/dist/types/components/icons/VerticalDotsIcon.d.ts +1 -0
- package/dist/types/components/icons/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const AudioRecordIcon: (props: any) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CameraIcon: (props: any) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CaptureIcon: (props: any) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const MuteIcon: (props: any) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PauseIcon: (props: any) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const StopRecordIcon: (props: any) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VerticalDotsIcon: (props: any) => JSX.Element;
|
|
@@ -11,3 +11,10 @@ export { CheckSlimIcon } from './CheckSlimIcon';
|
|
|
11
11
|
export { CommentIcon } from './CommentIcon';
|
|
12
12
|
export { FreeDrawIcon } from './FreeDrawIcon';
|
|
13
13
|
export { InvisibleIcon } from './InvisibleIcon';
|
|
14
|
+
export { AudioRecordIcon } from './AudioRecordIcon';
|
|
15
|
+
export { CameraIcon } from './CameraIcon';
|
|
16
|
+
export { CaptureIcon } from './CaptureIcon';
|
|
17
|
+
export { MuteIcon } from './MuteIcon';
|
|
18
|
+
export { PauseIcon } from './PauseIcon';
|
|
19
|
+
export { StopRecordIcon } from './StopRecordIcon';
|
|
20
|
+
export { VerticalDotsIcon } from './VerticalDotsIcon';
|