UNPKG

460 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface PlaceholderProps extends React.HTMLAttributes<HTMLElement> {
5 [key: string]: any;
6 color?: string;
7 tag?: React.ElementType;
8 animation?: string;
9 className?: string;
10 cssModule?: CSSModule;
11 size?: string;
12 widths?: string[];
13 innerRef?: React.Ref<HTMLElement>;
14}
15
16declare class Placeholder extends React.Component<PlaceholderProps> {}
17export default Placeholder;
\No newline at end of file