react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 356 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgEllipsisV(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 7a2 2 0 10-2-2 2 2 0 002 2zm0 10a2 2 0 102 2 2 2 0 00-2-2zm0-7a2 2 0 102 2 2 2 0 00-2-2z" fill="currentColor"/>
</Svg>);
}
export default SvgEllipsisV;