baseui
Version:
A React Component library implementing the Base design language
19 lines (18 loc) • 623 B
TypeScript
import type { Override } from '../helpers/overrides';
export type SkeletonOverrides = {
Row?: Override;
Root?: Override;
};
export type SkeletonProps = {
overrides?: SkeletonOverrides;
/** Defines the number of row element in a skeleton */
rows?: number;
/** Defines if the skeleton has an animation default is false*/
animation: boolean;
/** Defines the height of the skeleton container*/
height?: string;
/** Defines the width of the skeleton container*/
width?: string;
/** Determines whether rows expand in height to fill vertical space */
autoSizeRows?: boolean;
};