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