react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 1.05 kB
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgNumber0 = 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.5c1.321 0 2.484.348 3.447.994.963.645 1.726 1.588 2.249 2.778.522 1.19.804 2.625.804 4.257v4.942c0 1.632-.282 3.068-.804 4.257-.523 1.19-1.286 2.133-2.25 2.778-.962.646-2.125.994-3.446.994s-2.484-.348-3.447-.994c-.963-.645-1.726-1.588-2.249-2.778-.522-1.19-.804-2.625-.804-4.257V9.529c0-1.632.282-3.068.804-4.257.523-1.19 1.286-2.133 2.25-2.778C9.515 1.848 10.678 1.5 12 1.5m0 2c-.916 0-1.694.226-2.333.655-.637.427-1.158 1.07-1.532 1.92-.412.94-.635 2.108-.635 3.454v4.942c0 1.346.223 2.514.635 3.453.374.852.895 1.494 1.532 1.921.639.428 1.417.655 2.333.655s1.694-.227 2.333-.655c.637-.427 1.158-1.07 1.531-1.92.413-.94.636-2.108.636-3.454V9.529c0-1.346-.223-2.514-.636-3.453-.373-.851-.894-1.494-1.53-1.921-.64-.429-1.418-.655-2.334-.655" />
</Svg>
);
export default SvgNumber0;