remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 537 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSparkling2Fill = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="m17 1.208 1.32 2.473L20.792 5 18.32 6.319 17 8.792l-1.318-2.473-2.473-1.32 2.473-1.318zM8 4.333l2.667 5 5 2.667-5 2.667-2.666 5-2.667-5-5-2.667 5-2.667zm11.667 12-1.666-3.125-1.667 3.125L13.209 18l3.125 1.667 1.667 3.125 1.666-3.125L22.792 18z" />
</Svg>
);
export default SvgSparkling2Fill;