1 | import { SVGAttributes } from 'react';
|
2 | import ContentLoader from './ContentLoader';
|
3 | export interface IContentLoaderProps extends SVGAttributes<SVGElement> {
|
4 | animate?: boolean;
|
5 | backgroundColor?: string;
|
6 | backgroundOpacity?: number;
|
7 | baseUrl?: string;
|
8 | foregroundColor?: string;
|
9 | foregroundOpacity?: number;
|
10 | gradientRatio?: number;
|
11 | rtl?: boolean;
|
12 | speed?: number;
|
13 | title?: string;
|
14 | uniqueKey?: string;
|
15 | beforeMask?: JSX.Element;
|
16 | }
|
17 | export { default as Facebook } from './presets/FacebookStyle';
|
18 | export { default as Instagram } from './presets/InstagramStyle';
|
19 | export { default as Code } from './presets/CodeStyle';
|
20 | export { default as List } from './presets/ListStyle';
|
21 | export { default as BulletList } from './presets/BulletListStyle';
|
22 | export default ContentLoader;
|
23 |
|
\ | No newline at end of file |