@nation-a/icons 0.2.0 → 0.2.1

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 HistoryOutlineIcon({ size, color, ...props }: Props): import("react/jsx-runtime").JSX.Element;
7
+ export default HistoryOutlineIcon;
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nation-a/icons",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/types/index.d.ts",