@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 500 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAlarmWarningLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M4.001 20v-6a8 8 0 0 1 16 0v6h1v2h-18v-2h1Zm2 0h12v-6a6 6 0 0 0-12 0v6Zm5-18h2v3h-2V2Zm8.778 2.808 1.414 1.414-2.12 2.121-1.415-1.414 2.121-2.121ZM2.81 6.222l1.414-1.414 2.121 2.12L4.93 8.344 2.809 6.222ZM7 14a5 5 0 0 1 5-5v2a3 3 0 0 0-3 3h-2Z" />
</Svg>
);
export default SvgAlarmWarningLine;