UNPKG

react-native-unicons

Version:
9 lines (8 loc) 429 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgRainbow(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M5 12a1 1 0 000 2 5 5 0 015 5 1 1 0 002 0 7 7 0 00-7-7zm0-8a1 1 0 000 2 13 13 0 0113 13 1 1 0 002 0A15 15 0 005 4zm0 4a1 1 0 000 2 9 9 0 019 9 1 1 0 002 0A11 11 0 005 8z" fill="currentColor"/> </Svg>); } export default SvgRainbow;