import { EntityChip, EntityChipVariant } from '@/ui/chip/components/EntityChip'; export type PersonChipPropsType = { id: string; name: string; pictureUrl?: string; variant?: EntityChipVariant; }; export const PersonChip = ({ id, name, pictureUrl, variant, }: PersonChipPropsType) => ( );