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