@project44-manifest/react
Version:
Manifest Design System react components
16 lines (13 loc) • 360 B
text/typescript
import { IContentLoaderProps } from 'react-content-loader';
import type { CSS } from '@project44-manifest/react-styles';
export const SkeletonElement = 'svg';
export interface SkeletonProps extends IContentLoaderProps {
/**
* Classes to be applied to the root element
*/
className?: string;
/**
* Theme aware style object
*/
css?: CSS;
}