import * as React from "react"; import { Row, Col, Form } from "react-bootstrap"; import { FieldCheckboxProps } from "../types"; export const FieldCheckbox = ({ label, name, text, isRequired, showLabel = false }: FieldCheckboxProps) => { return ( {label} {isRequired ? * : null} ); };