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) • 416 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShining2Line = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="m16 8 7.5 4-7.5 4-4 7.5L8 16 .5 12 8 8l4-7.5zm3.25 4-4.728-2.522L12 4.75 9.478 9.478 4.75 12l4.728 2.522L12 19.25l2.522-4.728z" />
</Svg>
);
export default SvgShining2Line;