@nation-a/icons 0.2.1 → 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.
@@ -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;
@@ -87,6 +87,7 @@ export { default as MyCircleOutlineIcon } from './MyCircleOutlineIcon';
87
87
  export { default as NotificationFillIcon } from './NotificationFillIcon';
88
88
  export { default as NotificationOffOutlineIcon } from './NotificationOffOutlineIcon';
89
89
  export { default as NotificationOnOutlineIcon } from './NotificationOnOutlineIcon';
90
+ export { default as PauseCircleOutlineIcon } from './PauseCircleOutlineIcon';
90
91
  export { default as PauseFillIcon } from './PauseFillIcon';
91
92
  export { default as PauseOutlineIcon } from './PauseOutlineIcon';
92
93
  export { default as PlayCircleFillIcon } from './PlayCircleFillIcon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nation-a/icons",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/types/index.d.ts",