import Link from 'next/link' import React from 'react' type OptionProps = { Icon: React.ComponentType<{ className?: string }> text: string href: string } const Option = ({ Icon, text, href, }: OptionProps) => { return ( {text} ) } export default React.memo(Option)