react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 460 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"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13 3v7.267l6.294-3.633 1 1.732-6.293 3.633 6.293 3.635-1 1.732L13 13.732V21h-2v-7.268l-6.294 3.634-1-1.732L9.999 12 3.706 8.366l1-1.732L11 10.267V3z" />
</Svg>
);
export default SvgAsterisk;