1 | import * as React from 'react';
|
2 | import { IconSource } from './Icon';
|
3 | import type { ThemeProp } from '../types';
|
4 | declare type Props = {
|
5 | /**
|
6 | * Icon to display for the `CrossFadeIcon`.
|
7 | */
|
8 | source: IconSource;
|
9 | /**
|
10 | * Color of the icon.
|
11 | */
|
12 | color: string;
|
13 | /**
|
14 | * Size of the icon.
|
15 | */
|
16 | size: number;
|
17 | /**
|
18 | * TestID used for testing purposes
|
19 | */
|
20 | testID?: string;
|
21 | /**
|
22 | * @optional
|
23 | */
|
24 | theme?: ThemeProp;
|
25 | };
|
26 | declare const CrossFadeIcon: ({ color, size, source, theme: themeOverrides, testID, }: Props) => React.JSX.Element;
|
27 | export default CrossFadeIcon;
|
28 | //# sourceMappingURL=CrossFadeIcon.d.ts.map |
\ | No newline at end of file |