react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 445 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"
width={24}
height={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;