import Svg, {Path, type PathProps, type SvgProps} from 'react-native-svg' import {usePalette} from '#/lib/hooks/usePalette' const ratio = 22 / 110.3335 export function Logotype({ fill, ...rest }: {fill?: PathProps['fill']} & SvgProps) { const pal = usePalette('default') // @ts-ignore it's fiiiiine const size = parseInt(rest.width || 32) * 1.5 return ( ) }