UNPKG

react-native-unicons

Version:
9 lines (8 loc) 426 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgToggleOn(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M16 8.5a3.5 3.5 0 103.5 3.5A3.5 3.5 0 0016 8.5zm0 5a1.5 1.5 0 111.5-1.5 1.5 1.5 0 01-1.5 1.5zM16 5H8a7 7 0 000 14h8a7 7 0 000-14zm0 12H8A5 5 0 018 7h8a5 5 0 010 10z" fill="currentColor"/> </Svg>); } export default SvgToggleOn;