UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

11 lines (10 loc) 314 B
import { PropsWithChildren } from "react"; export type SkeletonProps = PropsWithChildren<{ /** Render children N times */ repeat?: number; }>; declare const Skeleton: { ({ children, repeat }: SkeletonProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Skeleton;