import React from 'react' import type { RemixiconComponentType } from '@remixicon/react' type OperationItemProps = { Icon: RemixiconComponentType name: string handleClick?: () => void } const OperationItem = ({ Icon, name, handleClick, }: OperationItemProps) => { return (