react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 496 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgPower(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M10.21 6.21l.79-.8V10a1 1 0 002 0V5.41l.79.8a1 1 0 001.42 0 1 1 0 000-1.42l-2.5-2.5a1 1 0 00-.33-.21 1 1 0 00-.76 0 1 1 0 00-.33.21l-2.5 2.5a1 1 0 001.42 1.42zM18 7.56A1 1 0 1016.56 9a6.45 6.45 0 11-9.12 0A1 1 0 106 7.56a8.46 8.46 0 1012 0z" fill="currentColor"/>
</Svg>);
}
export default SvgPower;