@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 300 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShining2Fill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M12 .5 16 8l7.5 4-7.5 4-4 7.5L8 16 .5 12 8 8l4-7.5Z" />
</Svg>
);
export default SvgShining2Fill;