@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
11 lines (10 loc) • 480 B
TypeScript
import type { PropsFor } from "../../types.js";
export type SkeletonTextProps = PropsFor<"span", {
/** Width of element. If type is number, value is in px */
width?: number | string;
/** Height of element. If type is number, value is in px*/
height?: number | string;
}>;
/** Text placeholder */
declare const SkeletonText: import("react").ForwardRefExoticComponent<SkeletonTextProps & import("react").RefAttributes<HTMLSpanElement>>;
export default SkeletonText;