import * as React from 'react' import type { SVGProps, Ref } from 'react' import { useLightLogo } from '../utils' import { IdeaplaceSymbolDark, IdeaplaceSymbolLight, } from '../../logos/components' const SvgIdeaplace = ( props: SVGProps, ref: Ref ) => useLightLogo() ? ( ) : ( ) export default React.forwardRef(SvgIdeaplace)