import * as React from 'react' import type { SVGProps, Ref } from 'react' import { useLightLogo } from '../utils' const SvgPortfolios = ( props: SVGProps, ref: Ref ) => { const fill = useLightLogo() ? '#fff' : '#070606' return ( ) } export default React.forwardRef(SvgPortfolios)