UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

12 lines (11 loc) 480 B
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 {};