@hybr1d-tech/charizard 0.6.26 → 0.6.28

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,3 @@
1
+ type SkeletonProps = React.HTMLAttributes<HTMLDivElement>;
2
+ export declare function Skeleton({ className, ...props }: SkeletonProps): import("react/jsx-runtime").JSX.Element;
3
+ export {};
@@ -0,0 +1 @@
1
+ export { Skeleton } from './Skeleton';
@@ -3,7 +3,7 @@ import { default as React, ReactElement } from 'react';
3
3
  interface TabsProps {
4
4
  id: string;
5
5
  activeKey: string;
6
- onSelect: (kay: string) => void;
6
+ onSelect: (key: string) => void;
7
7
  customClassName?: string;
8
8
  customStyles?: React.CSSProperties;
9
9
  children: ReactElement[];