1 | import * as React from 'react';
|
2 | import { IconSource } from './Icon';
|
3 | declare type Props = {
|
4 | |
5 |
|
6 |
|
7 | source: IconSource;
|
8 | |
9 |
|
10 |
|
11 | color: string;
|
12 | |
13 |
|
14 |
|
15 | size: number;
|
16 | |
17 |
|
18 |
|
19 | theme: ReactNativePaper.Theme;
|
20 | };
|
21 | declare const _default: React.ComponentType<Pick<Props, "source" | "color" | "size"> & {
|
22 | theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
|
23 | }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<Props> & (({ color, size, source, theme }: Props) => JSX.Element), {}>;
|
24 | export default _default;
|
25 |
|
\ | No newline at end of file |