@nation-a/icons 0.2.0 → 0.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/README.md +74 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1330 -979
- package/dist/index.mjs.map +1 -1
- package/dist/types/HistoryOutlineIcon.d.ts +7 -0
- package/dist/types/PauseCircleOutlineIcon.d.ts +7 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CSSProperties, SVGProps } from 'react';
|
|
2
|
+
type Props = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number;
|
|
4
|
+
color?: CSSProperties['color'];
|
|
5
|
+
};
|
|
6
|
+
declare function HistoryOutlineIcon({ size, color, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default HistoryOutlineIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CSSProperties, SVGProps } from 'react';
|
|
2
|
+
type Props = SVGProps<SVGSVGElement> & {
|
|
3
|
+
size?: number;
|
|
4
|
+
color?: CSSProperties['color'];
|
|
5
|
+
};
|
|
6
|
+
declare function PauseCircleOutlineIcon({ size, color, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default PauseCircleOutlineIcon;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export { default as GroupCircleFillIcon } from './GroupCircleFillIcon';
|
|
|
54
54
|
export { default as GroupFillIcon } from './GroupFillIcon';
|
|
55
55
|
export { default as HateFillIcon } from './HateFillIcon';
|
|
56
56
|
export { default as HateOutlineIcon } from './HateOutlineIcon';
|
|
57
|
+
export { default as HistoryOutlineIcon } from './HistoryOutlineIcon';
|
|
57
58
|
export { default as HomeFillIcon } from './HomeFillIcon';
|
|
58
59
|
export { default as HomeOutlineIcon } from './HomeOutlineIcon';
|
|
59
60
|
export { default as InvisibleOutlineIcon } from './InvisibleOutlineIcon';
|
|
@@ -86,6 +87,7 @@ export { default as MyCircleOutlineIcon } from './MyCircleOutlineIcon';
|
|
|
86
87
|
export { default as NotificationFillIcon } from './NotificationFillIcon';
|
|
87
88
|
export { default as NotificationOffOutlineIcon } from './NotificationOffOutlineIcon';
|
|
88
89
|
export { default as NotificationOnOutlineIcon } from './NotificationOnOutlineIcon';
|
|
90
|
+
export { default as PauseCircleOutlineIcon } from './PauseCircleOutlineIcon';
|
|
89
91
|
export { default as PauseFillIcon } from './PauseFillIcon';
|
|
90
92
|
export { default as PauseOutlineIcon } from './PauseOutlineIcon';
|
|
91
93
|
export { default as PlayCircleFillIcon } from './PlayCircleFillIcon';
|