import * as React from "react"; import type { SVGProps } from "react"; interface SVGRProps { title?: string; titleId?: string; } const CloseIcon = ({ title, titleId, ...props }: SVGProps & SVGRProps) => {title === undefined ? {"close icon"} : title ? {title} : null}; export default CloseIcon;