@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
15 lines (14 loc) • 417 B
TypeScript
import { TextStyle, ViewStyle } from 'react-native';
import { Theme } from '../../style';
export interface InputStyle {
container: ViewStyle;
input: ViewStyle;
clearIcon: ViewStyle;
prefix: ViewStyle | TextStyle;
showCount: TextStyle;
suffix: ViewStyle | TextStyle;
warning: TextStyle;
error: TextStyle;
}
declare const _default: (theme: Theme) => InputStyle;
export default _default;