UNPKG

@unicity/design-system

Version:

A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support

22 lines 615 B
import React from 'react'; import { SkeletonProps as MuiSkeletonProps } from '@mui/material'; export interface SkeletonProps extends MuiSkeletonProps { /** * The variant of the skeleton */ variant?: 'text' | 'rectangular' | 'rounded' | 'circular'; /** * The animation of the skeleton */ animation?: 'pulse' | 'wave' | false; /** * The width of the skeleton */ width?: string | number; /** * The height of the skeleton */ height?: string | number; } export declare const Skeleton: React.FC<SkeletonProps>; //# sourceMappingURL=Skeleton.d.ts.map