@itgold/grandbazar-ui-kit
Version:
Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.
15 lines (14 loc) • 583 B
TypeScript
/// <reference types="react" />
import { SkeletonCardContent } from '@/components/skeletons/components/SkeletonCardContent';
import { SkeletonCardFooter } from '@/components/skeletons/components/SkeletonCardFooter';
type TSkeletonCardProps = {
theme: 'light' | 'dark';
className?: string;
children?: React.ReactNode;
};
declare function SkeletonCard({ theme, className, children }: TSkeletonCardProps): React.ReactElement;
declare namespace SkeletonCard {
var Content: typeof SkeletonCardContent;
var Footer: typeof SkeletonCardFooter;
}
export { SkeletonCard };