import type { FC, SVGAttributes } from 'react' type MarkerProps = SVGAttributes & { id: string isHighlighted?: boolean } export const CardinalityZeroOrManyLeftMarker: FC = ({ id, isHighlighted, ...props }) => { return ( {isHighlighted && ( n )} ) }