@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
14 lines (13 loc) • 407 B
TypeScript
import { ComponentProps } from 'react';
type SkeletonProps = ComponentProps<"div"> & {
/**
* Full circle skeleton
* */
round?: boolean;
};
/**
* Skeleton to indicate content loading state.
* Useful if you load data partially and want to preserve layout size.
* */
export declare const Skeleton: ({ className, round, ...props }: SkeletonProps) => import("react").JSX.Element;
export {};