UNPKG

@uiw/react-native

Version:
24 lines (23 loc) 501 B
import React from 'react'; import { ViewProps, ImageProps } from 'react-native'; export interface AvatarProps extends ViewProps { imageProps?: ImageProps; src?: string | number; /** * 尺寸 * @default 40 */ size?: number; /** * 设置圆角 * @default 3 */ rounded?: number; /** * 指定头像的形状 * @default square */ shape?: 'circle' | 'square'; } declare const Avatar: React.FC<AvatarProps>; export default Avatar;