UNPKG

@sishuguojixuefu/react-native-form

Version:
16 lines (15 loc) 365 B
import { Component } from 'react'; import { ImageSourcePropType } from 'react-native'; interface Props { required?: boolean; icon?: ImageSourcePropType; label?: string; } declare class Label extends Component<Props> { static defaultProps: { required: boolean; label: string; }; render(): JSX.Element; } export default Label;