import Icon from '@ant-design/icons'; import type { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon'; interface IconProps { onClick: () => void; } export default function SplitIcon(props: Partial) { return ( ( )} /> ); }