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