import { createContext } from '../../helpers/utils'; import type { AvatarContextValue } from './avatar.types'; /** * Avatar context provider and hook * Provides size, color, and animation state to child components */ export const [AvatarProvider, useInnerAvatarContext] = createContext({ name: 'AvatarContext', });