@starter-ui/core
Version:
This is a UI Components built with the utility classes from Tailwind CSS.
18 lines (17 loc) • 373 B
TypeScript
import { ReactNode } from 'react';
interface Props {
id?: string;
src?: string;
name?: string;
alt?: string;
color?: string;
size?: number;
radius?: string;
bordered?: boolean;
disabled?: boolean;
fallback?: ReactNode;
className?: string;
onClick?: () => void;
}
declare const Avatar: React.FC<Props>;
export default Avatar;