import { Circle, Svg } from 'react-native-svg' import { useCurrentColor } from 'tamagui' import type { SvgProps } from 'react-native-svg' const SvgMoreIcon = (props: SvgProps) => { const { color: colorToken = 'currentColor', ...rest } = props const color = useCurrentColor(colorToken) return ( ) } export default SvgMoreIcon