import clsx from 'clsx'; import { useUsers } from '@/context/UsersContext'; import { UserID } from '@/models/user'; import { CProps } from '../props'; interface InfoUsersProps extends CProps.Styling { items: UserID[]; prefix: string; header?: string; } function InfoUsers({ items, className, prefix, header, ...restProps }: InfoUsersProps) { const { getUserLabel } = useUsers(); return (