@ukpc-lib/react 0.14.4-sandbox.saas-2920.patch-1 → 0.14.4-sandbox.saas-9642.patch-2

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 CHANGED
@@ -10,6 +10,7 @@ To install package, use the following command:
10
10
 
11
11
  ```bash
12
12
  npm install @ukpc-lib/react
13
+
13
14
  ```
14
15
 
15
16
  ### .NET
@@ -0,0 +1,4 @@
1
+ declare const HamburgerIcon: ({ color }: {
2
+ color?: string;
3
+ }) => import("react/jsx-runtime").JSX.Element;
4
+ export default HamburgerIcon;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+
3
+ interface SearchIconProps {
4
+ color?: string;
5
+ }
6
+ declare const SearchIcon: React.FC<SearchIconProps>;
7
+ export default SearchIcon;