@zentrades-ui/components 0.1.6 → 0.2.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 +455 -9
- package/dist/components.css +3059 -2899
- package/dist/components.css.map +1 -1
- package/dist/components.d.ts +2476 -18
- package/dist/components.js +263 -177
- package/dist/components.js.map +1 -1
- package/dist/icons.d.ts +3 -3
- package/dist/index.css +3059 -2899
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +190 -44
- package/dist/index.js +263 -177
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/icons.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import
|
|
2
|
+
import React, { ReactNode } from 'react';
|
|
3
3
|
|
|
4
4
|
type IconSize = "12" | "16" | "20" | "24" | "32" | "40" | "48";
|
|
5
5
|
type IconOwnProps = {
|
|
@@ -14,8 +14,8 @@ type IconOwnProps = {
|
|
|
14
14
|
/** Additional class name */
|
|
15
15
|
className?: string;
|
|
16
16
|
};
|
|
17
|
-
type IconProps = IconOwnProps & Omit<
|
|
18
|
-
declare const Icon:
|
|
17
|
+
type IconProps = IconOwnProps & Omit<React.SVGProps<SVGSVGElement>, keyof IconOwnProps>;
|
|
18
|
+
declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19
19
|
declare function ChevronLeftIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
20
20
|
declare function ChevronRightIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
21
21
|
declare function ChevronDownIcon(props: IconProps): react_jsx_runtime.JSX.Element;
|