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