UNPKG

react-native-unicons

Version:
9 lines (8 loc) 556 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgKid(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M10 10a1 1 0 10-1 1 1 1 0 001-1zm4.5 4.06a1 1 0 00-1.37.36 1.3 1.3 0 01-2.26 0 1 1 0 00-1.37-.36 1 1 0 00-.37 1.36 3.31 3.31 0 005.74 0 1 1 0 00-.37-1.36zM15 9a1 1 0 101 1 1 1 0 00-1-1zm-3-7a10 10 0 1010 10A10 10 0 0012 2zm0 18A8 8 0 019 4.57 3 3 0 009 5a3 3 0 003 3 1 1 0 000-2 1 1 0 010-2 8 8 0 010 16z" fill="currentColor"/> </Svg>); } export default SvgKid;