import * as React from 'react'; import { SVGProps } from 'react'; import { SVGRProps } from '.'; export const component = ({ title, titleId, ...props }: SVGProps & SVGRProps) => { return ( {title ? {title} : null} ); };