@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
7 lines (6 loc) • 631 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import Svg, { Circle, Line } from 'react-native-svg';
const IconAlertCircle = ({ size, color, strokeWidth, fill, style }) => {
return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", style: style, children: [_jsx(Circle, { cx: "12", cy: "12", r: "10", stroke: color, strokeWidth: strokeWidth, fill: fill }), _jsx(Line, { x1: "12", y1: "7", x2: "12", y2: "12", stroke: color, strokeWidth: strokeWidth, strokeLinecap: "round" }), _jsx(Circle, { cx: "12", cy: "17", r: strokeWidth, fill: color })] }));
};
export default IconAlertCircle;