jy-headless 0.0.11 → 0.0.12

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.
@@ -1,7 +1,8 @@
1
- export { default as CloseIcon } from './CloseIcon';
2
- export { default as CallIcon } from './CallIcon';
3
- export { default as HomeIcon } from './HomeIcon';
4
- export { default as SearchIcon } from './SearchIcon';
1
+ import CloseIcon from './CloseIcon';
2
+ import CallIcon from './CallIcon';
3
+ import HomeIcon from './HomeIcon';
4
+ import SearchIcon from './SearchIcon';
5
+ export { CloseIcon, CallIcon, HomeIcon, SearchIcon };
5
6
  export interface IconProps {
6
7
  color?: string;
7
8
  size?: string;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './index';
2
+ import React from 'react';
3
+ declare const CallIcon: React.FC<IconProps>;
4
+ export default CallIcon;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './index';
2
+ import React from 'react';
3
+ declare const CloseIcon: React.FC<IconProps>;
4
+ export default CloseIcon;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './index';
2
+ import React from 'react';
3
+ declare const HomeIcon: React.FC<IconProps>;
4
+ export default HomeIcon;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './index';
2
+ import React from 'react';
3
+ declare const SearchIcon: React.FC<IconProps>;
4
+ export default SearchIcon;
@@ -0,0 +1,11 @@
1
+ import CloseIcon from './CloseIcon';
2
+ import CallIcon from './CallIcon';
3
+ import HomeIcon from './HomeIcon';
4
+ import SearchIcon from './SearchIcon';
5
+ export { CloseIcon, CallIcon, HomeIcon, SearchIcon };
6
+ export interface IconProps {
7
+ color?: string;
8
+ size?: string;
9
+ fill?: string;
10
+ bgColor?: string;
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jy-headless",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "typings": "dist/index.d.ts",