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