import { isBoolean } from 'lodash-es';
import React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
const Boolean = ({
  data: {
    value: bool
  }
}) => isBoolean(bool) ? /*#__PURE__*/_jsx("div", {
  children: bool.toString()
}) : null;
export default Boolean;