@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 626 B
TypeScript
import { BoxProps } from '../Box/Box';
export interface SkeletonShapeOwnProps {
width?: string;
height?: string;
round?: boolean;
}
export interface SkeletonShapeProps extends SkeletonShapeOwnProps, BoxProps {
}
export declare type SkeletonShapeStylesProps = Required<Pick<SkeletonShapeOwnProps, 'width' | 'height' | 'round'>>;
export declare const skeletonShapeClassName = "ui-skeleton__shape";
/**
* A SkeletonShape represents a shape (Image/Button/etc...) that will be loaded
*/
export declare const SkeletonShape: import("@fluentui/react-bindings").ComponentWithAs<"span", SkeletonShapeOwnProps & BoxProps>;