@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 392 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAsterisk = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M13 3v7.267l6.294-3.633 1 1.732L14 11.999l6.294 3.635-1 1.732-6.295-3.634V21h-2v-7.268l-6.294 3.634-1-1.732L9.998 12 3.705 8.366l1-1.732L11 10.267V3h2Z" />
</Svg>
);
export default SvgAsterisk;