@engie-group/fluid-design-system-react
Version:
Fluid Design System React
12 lines (11 loc) • 480 B
TypeScript
import React from 'react';
import { ISkeletonBaseProps } from './NJSkeletonBase';
export declare const NJSkeletonRectangle: React.ForwardRefExoticComponent<ISkeletonRectangleProps & React.RefAttributes<HTMLDivElement>>;
type TfontSize = 'peta' | 'tera' | 'giga' | 'mega' | 'kilo' | 'hecto' | 'deca' | 'base' | 'deci' | 'centi';
export interface ISkeletonRectangleProps extends ISkeletonBaseProps {
/**
* Rectangle skeleton size
*/
size?: TfontSize;
}
export {};