react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 368 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgOkta(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 10c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5 5 2.2 5 5z" fill="currentColor"/>
</Svg>);
}
export default SvgOkta;