import type { RemixiconComponentType } from '@remixicon/react' import React from 'react' type ItemProps = { Icon: RemixiconComponentType title: string description: string onClick: () => void } const Item = ({ Icon, title, description, onClick, }: ItemProps) => { return (
{title}
{description}
) } export default React.memo(Item)