react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 492 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEarthquakeFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11.327 1.612a1 1 0 0 1 1.246-.08l.1.08L23 11h-3v9a1 1 0 0 1-.883.993L19 21h-6.5l2.5-4-3.5-3 4-3L13 9l.5-3-3 3 2.5 2-5 3 3.75 3.5L8.5 21H5a1 1 0 0 1-.993-.883L4 20v-9H1z" />
</Svg>
);
export default SvgEarthquakeFill;