rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
14 lines (13 loc) • 432 B
TypeScript
import React from 'react';
import { ImageSourcePropType } from 'react-native';
type Props = {
backgroundColor?: string;
defaultText?: string;
fontSize?: number;
image?: ImageSourcePropType;
size?: number;
textColor?: string;
onPress?: () => void;
};
export declare const CircleAvatar: ({ backgroundColor, defaultText, fontSize, image, onPress, size, textColor, }: Props) => React.JSX.Element;
export {};