import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors from 'src/styles/colors' interface Props { color?: string } const TripleDotVertical = ({ color = Colors.contentPrimary }: Props) => ( ) export default TripleDotVertical