react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 726 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEmojiStickerFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21.902 10.598a9.986 9.986 0 0 0-9.381 3.873 4.977 4.977 0 0 1-3.854-1.246l-1.334 1.49a6.98 6.98 0 0 0 4.014 1.753A10 10 0 0 0 10.5 20.5q0 .714.098 1.402C5.738 21.221 2 17.047 2 12 2 6.477 6.477 2 12 2c5.047 0 9.22 3.739 9.902 8.598m-.031 2.019a7.99 7.99 0 0 0-7.964 3.35A7.96 7.96 0 0 0 12.5 20.5q0 .701.117 1.37zM8.5 11.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m7 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3" />
</Svg>
);
export default SvgEmojiStickerFill;