@fruits-chain/react-native-xiaoshu
Version:
React Native UI library
31 lines (30 loc) • 603 B
TypeScript
import type React from 'react';
import type { StyleProp, ViewStyle, TextStyle } from 'react-native';
export interface EmptyProps {
/**
* 最外层 View 的样式
*/
style?: StyleProp<ViewStyle>;
/**
* 文案样式
*/
textStyle?: StyleProp<TextStyle>;
/**
* 图标样式
*/
iconStyle?: StyleProp<ViewStyle>;
/**
* 自定义图标
*/
icon?: React.ReactNode;
/**
* 空数据提示文案
* @default '暂无数据'
*/
text?: string;
/**
* 全屏填充
* @default false
*/
full?: boolean;
}