import { memo, ReactNode } from 'react'; import { Text } from '@/shared/ui'; interface IconLinkProps { href: string; icon: ReactNode; label: string; } export const IconLink = memo(({ href, icon, label }: IconLinkProps) => { return ( {icon} {label} ); });