@paubox/ui 0.1.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.
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # ui
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Running unit tests
6
+
7
+ Run `nx test ui` to execute the unit tests via [Vitest](https://vitest.dev/).
package/icons/Add.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './SvgProps';
2
+
3
+ export declare const Add: (props: IconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Add;
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Calendar: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Calendar;
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Close: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Close;
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Error: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Error;
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Info: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Info;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './SvgProps';
2
+
3
+ export declare const KeyboardArrowDown: (props: IconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default KeyboardArrowDown;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './SvgProps';
2
+
3
+ export declare const LoadingWheel: (props: IconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default LoadingWheel;
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Return: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Return;
@@ -0,0 +1,4 @@
1
+ import { IconProps } from './SvgProps';
2
+
3
+ export declare const SearchIcon: (props: IconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default SearchIcon;
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Success: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Success;
@@ -0,0 +1,8 @@
1
+ import { SVGProps as ReactSVGProps } from 'react';
2
+
3
+ export interface SvgProps extends ReactSVGProps<SVGSVGElement> {
4
+ }
5
+ export interface IconProps {
6
+ size?: string;
7
+ color?: string;
8
+ }
@@ -0,0 +1,4 @@
1
+ import { SvgProps } from './SvgProps';
2
+
3
+ export declare const Warning: (props: SvgProps) => import("@emotion/react/jsx-runtime").JSX.Element;
4
+ export default Warning;
@@ -0,0 +1,12 @@
1
+ export * from './Add';
2
+ export * from './Calendar';
3
+ export * from './Close';
4
+ export * from './Error';
5
+ export * from './Info';
6
+ export * from './KeyboardArrowDown';
7
+ export * from './LoadingWheel';
8
+ export * from './Return';
9
+ export * from './SearchIcon';
10
+ export * from './Success';
11
+ export * from './Warning';
12
+ export * from './SvgProps';
package/index.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ export * from './lib/AlertBar/AlertBar';
2
+ export * from './lib/Button/Button';
3
+ export * from './lib/Dropdown/Dropdown';
4
+ export * from './lib/Inputs/index';
5
+ export * from './lib/Tooltip/Tooltip';
6
+ export * from './lib/Typography/Typography';
7
+ export * from './icons/index';
8
+ export * from './theme/index';