@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
10 lines (9 loc) • 456 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;
}>;
declare const SkeletonText: import("react").ForwardRefExoticComponent<SkeletonTextProps & import("react").RefAttributes<HTMLSpanElement>>;
export default SkeletonText;