@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
24 lines • 671 B
TypeScript
export interface SkeletonShapeProps {
/**
* The width of the shape in `px` or `%`.
* @default 100%
*/
width?: number | string;
/**
* The height of the shape in `px` or `%`.
* @default 100%
*/
height?: number | string;
/**
* The borderRadius of the shape in `px` or `%`.
* @default 0
*/
borderRadius?: number | string;
/**
* The background color of the skeleton
* @default soap200
*/
backgroundColor?: string;
}
export declare const SkeletonShape: import("@workday/canvas-kit-react/common").ElementComponent<"div", SkeletonShapeProps>;
//# sourceMappingURL=skeletonShape.d.ts.map