UNPKG

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

Version:

Fluid Design System React

21 lines (20 loc) 499 B
import React, { CSSProperties } from 'react'; export declare const NJSkeletonBase: React.ForwardRefExoticComponent<ISkeletonBaseProps & React.RefAttributes<HTMLDivElement>>; export interface ISkeletonBaseProps { /** * Skeleton custom height */ height?: string; /** * Skeleton custom width */ width?: string; /** * Skeleton additional style */ style?: CSSProperties; /** * Optional additional className */ className?: string; }