@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 685 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const EarthquakeLine = /* @__PURE__ */ memo(function EarthquakeLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M5 21a1 1 0 0 1-.993-.883L4 20v-9H1l10.327-9.388a1 1 0 0 1 1.246-.08l.1.08L23 11h-3v9a1 1 0 0 1-.883.993L19 21zm7-17.298L6 9.156V19h4.357l1.393-1.5L8 14l5-3-2.5-2 3-3-.5 3 2.5 2-4 3 3.5 3-1.25 2H18V9.157z"/>
</Svg>);
});
/**
* Remix Icon: Earthquake Line
* @see {@link https://remixicon.com/icon/earthquake-line Remix Icon Docs}
*/
export { EarthquakeLine };