import Svg, { Path } from "react-native-svg"; type Props = { height?: number; color?: string; }; const ASPECT_RATIO = 89 / 18; export function FlowyLogo({ height = 18, color = "#828282" }: Props) { const width = height * ASPECT_RATIO; return ( ); }