@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
10 lines (9 loc) • 454 B
TypeScript
import type { PropsFor } from "../../types.js";
export type SkeletonRectProps = PropsFor<"div", {
/** 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 SkeletonRect: import("react").ForwardRefExoticComponent<SkeletonRectProps & import("react").RefAttributes<HTMLDivElement>>;
export default SkeletonRect;