acsi-core 0.1.7 → 0.1.9

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,4 @@
1
+ import React from "react";
2
+ import { IIcon } from "../types";
3
+ declare const Close: (props: IIcon) => React.JSX.Element;
4
+ export default Close;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IIcon } from "../types";
3
+ declare const Search: (props: IIcon) => React.JSX.Element;
4
+ export default Search;
@@ -0,0 +1,2 @@
1
+ export { default as Search } from "./Search";
2
+ export { default as Close } from "./Close";
@@ -2,3 +2,7 @@ export interface INavigateProps {
2
2
  onNavigate: (pathname: string) => void;
3
3
  role: string;
4
4
  }
5
+ export interface IIcon {
6
+ color?: string;
7
+ size?: number;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acsi-core",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Contains core components && functions for acsi-core project",
5
5
  "author": "brss",
6
6
  "license": "MIT",