@udus/notion-renderer
Version:

4 lines (3 loc) • 307 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { Checkbox } from "../Common/Checkbox.js";
export const CheckboxProperty = ({ propertyItem, }) => (_jsx("div", { id: propertyItem.id, className: "notion-property-item notion-checkbox", children: _jsx(Checkbox, { checked: propertyItem.checkbox }) }));