mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-11 08:13:29 +08:00
13 lines
392 B
TypeScript
13 lines
392 B
TypeScript
import * as React from 'react';
|
|
import { ThemeShape, IconSource } from '../types';
|
|
import { TouchableRipplePropsWithoutChildren } from './TouchableRipple';
|
|
|
|
export interface IconButtonProps extends TouchableRipplePropsWithoutChildren {
|
|
icon: IconSource;
|
|
color?: string;
|
|
size?: number;
|
|
animated?: boolean;
|
|
}
|
|
|
|
export declare class IconButton extends React.Component<IconButtonProps> {}
|