import * as BUI from "@base-ui/react"; type AvatarPorps = { size?: "sm" | "md" | "lg"; src?: string; alt?: string; }; export const Avatar = (props: AvatarPorps) => { const { size = "md", src, alt } = props; return ( ); };