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