react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 478 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgDraggabledots(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M8.5 10a2 2 0 102 2 2 2 0 00-2-2zm0 7a2 2 0 102 2 2 2 0 00-2-2zm7-10a2 2 0 10-2-2 2 2 0 002 2zm-7-4a2 2 0 102 2 2 2 0 00-2-2zm7 14a2 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 SvgDraggabledots;