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