react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 533 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgBearSmileFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M17.5 2a4.5 4.5 0 0 1 2.951 7.897c.355.967.549 2.013.549 3.103a9 9 0 1 1-18 0c0-1.09.194-2.136.55-3.103a4.5 4.5 0 1 1 6.791-5.744 9.05 9.05 0 0 1 3.32 0A4.5 4.5 0 0 1 17.5 2M10 13H8a4 4 0 0 0 8 0h-2a2 2 0 1 1-4 0" />
</Svg>
);
export default SvgBearSmileFill;