@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
16 lines (15 loc) • 446 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { IconCheck, IconMinus } from '@coveord/plasma-react-icons';
export const CheckboxIcon = ({ indeterminate, ...others })=>{
if (indeterminate) {
return /*#__PURE__*/ _jsx(IconMinus, {
stroke: 3,
...others
});
}
return /*#__PURE__*/ _jsx(IconCheck, {
stroke: 3,
...others
});
};
//# sourceMappingURL=CheckboxIcon.js.map