import * as React from "react"; import { cn } from "@root/lib/utils"; // Определяем пропсы: принимает все атрибуты для div и булевый пропс `selected` export interface ProfileBoxProps extends React.HTMLAttributes { selected?: boolean; } export const ProfileBox = React.forwardRef( ({ className, selected, children, ...props }, ref) => { return (
{children}
); }, ); ProfileBox.displayName = "ProfileBox";