7 lines
115 B
TypeScript
7 lines
115 B
TypeScript
import { ImageProps } from "next/image"
|
|
|
|
export interface AvatarProps {
|
|
image?: ImageProps
|
|
initials?: string
|
|
}
|