mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-12 17:18:12 +08:00
13 lines
299 B
TypeScript
13 lines
299 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> {}
|