import { forwardRef, useMemo } from 'react'; import { IconProps } from './types'; export const IconAuth016 = forwardRef( ({ color = 'currentColor', title, ...props }, svgRef) => { const titleId = useMemo( () => title ? 'title-' + Math.random().toString(36).substr(2, 9) : undefined, [title] ); return ( {title ? {title} : null} ); } );