import { cn } from '@/lib/cn' interface UserTwoToneIconProps { className?: string /** رنگ لایه اصلی — مثلاً `text-gray-800` */ primaryClassName?: string /** رنگ لایه ثانویه — مثلاً `text-primary`؛ پیش‌فرض opacity-40 مثل Iconsax */ secondaryClassName?: string } export default function UserTwoToneIcon({ className = 'size-6', primaryClassName, secondaryClassName }: UserTwoToneIconProps) { return ( ) }