react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 457 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgAsterisk(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<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;