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