@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 401 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAlertLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m12.865 3 9.526 16.5a1 1 0 0 1-.866 1.5H2.473a1 1 0 0 1-.866-1.5L11.133 3a1 1 0 0 1 1.732 0Zm-8.66 16h15.588L12 5.5 4.205 19Zm6.794-3h2v2h-2v-2Zm0-7h2v5h-2V9Z" />
</Svg>
);
export default SvgAlertLine;