@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
12 lines (11 loc) • 352 B
TypeScript
import { PropsWithChildren } from "react";
export type SkeletonProps = PropsWithChildren<{
/** Render children N times */
repeat?: number;
}>;
/** Wrapper for repeating elements */
declare const Skeleton: {
({ children, repeat }: SkeletonProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Skeleton;