'use client' import clsx from 'clsx' import type { ComponentProps } from 'react' import styles from './Avatar.module.css' type UserAvatarIconProps = { className?: string } & ComponentProps<'svg'> export const UserAvatarIcon = ({ className, ...props }: UserAvatarIconProps) => { return ( User Avatar ) }