files-ui-react-19
Version:
UI components for file uploads with React js - with React 19 support
30 lines (29 loc) • 797 B
TypeScript
import { OverridableComponentProps } from "../overridable";
export interface FuiSkeletonPropsMap extends OverridableComponentProps {
/**
* The animation.
* If `false` the animation effect is disabled.
* @default 'pulse'
*/
animation?: 'pulse' | 'wave' | false;
/**
* The type of content that will be rendered.
* @default 'rectangular'
*/
variant?: 'rectangular' | 'circular';
/**
* Width of the skeleton.
*/
width?: number | string;
/**
* Height of the skeleton.
*/
height?: number | string;
}
export type FuiSkeletonProps = {
[S in keyof FuiSkeletonPropsMap]: FuiSkeletonPropsMap[S];
};
/**
* Dafult properties for Skeleton Component
*/
export declare const FuiSkeletonDefaultProps: FuiSkeletonProps;