@okshaun/components 0.3.1 → 0.3.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/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -745,6 +745,8 @@ declare type SpinnerProps = Omit<BoxProps, keyof SpinnerVariantProps> & SpinnerV
|
|
|
745
745
|
className?: string;
|
|
746
746
|
};
|
|
747
747
|
|
|
748
|
+
export declare const splitProps: (props: Record<string, any>) => [string, Record<string, any>];
|
|
749
|
+
|
|
748
750
|
export declare const Tag: React.FC<TagProps>;
|
|
749
751
|
|
|
750
752
|
declare type TagProps = BoxProps & TagVariantProps & {
|
package/dist/index.js
CHANGED