mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-11 08:13:29 +08:00
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import * as React from 'react';
|
|
import { ThemeShape } from '../types';
|
|
|
|
export interface HelperTextProps {
|
|
type?: 'error' | 'info';
|
|
visible?: boolean;
|
|
children: React.ReactNode;
|
|
style?: any;
|
|
theme?: ThemeShape;
|
|
}
|
|
|
|
export declare class HelperText extends React.Component<HelperTextProps> {}
|