UNPKG

@kietpt2003/react-native-core-ui

Version:
7 lines (6 loc) 599 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import Svg, { Path, Rect } from 'react-native-svg'; const IconCheckBox = ({ size, color, strokeWidth, fill, style }) => { return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", style: style, children: [_jsx(Rect, { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2", stroke: color, strokeWidth: strokeWidth, fill: fill }), _jsx(Path, { d: "M7 12.5L10.5 16L17 8", stroke: color, strokeWidth: strokeWidth, strokeLinecap: "round", strokeLinejoin: "round" })] })); }; export default IconCheckBox;