react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 434 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgNumber9 = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 1.5a6.5 6.5 0 0 1 5.619 9.77l-6.196 10.729H9.114l4.439-7.686A6.5 6.5 0 1 1 12 1.5m0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9" />
</Svg>
);
export default SvgNumber9;