antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
14 lines (13 loc) • 409 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { WingBlankPropsType } from './PropsType';
export interface WingBlankProps extends WingBlankPropsType {
style?: StyleProp<ViewStyle>;
}
declare class WingBlank extends React.Component<WingBlankProps, any> {
static defaultProps: {
size: string;
};
render(): JSX.Element;
}
export default WingBlank;