@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 370 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAlertFill = 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-1.866 13v2h2v-2h-2Zm0-7v5h2V9h-2Z" />
</Svg>
);
export default SvgAlertFill;