@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 389 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" 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.5L16 8Zm3.25 4-4.728-2.522L12 4.75 9.478 9.478 4.75 12l4.728 2.522L12 19.25l2.522-4.728L19.25 12Z" />
</Svg>
);
export default SvgShining2Line;