import { AvatarImage, Avatar as AvatarComponent, AvatarFallback, } from "../avatar"; interface AvatarProps extends React.ComponentProps { imageProps?: React.ComponentProps; fallbackProps?: React.ComponentProps; } export default function Avatar({ imageProps, fallbackProps, ...props }: AvatarProps) { return ( {imageProps && } {fallbackProps && } ); }