import React, { FunctionComponent } from 'react'; import globalize from '../../../scripts/globalize'; const createCheckBoxElement = ({ labelClassName, type, className, title }) => ({ __html: `` }); type IProps = { labelClassName?: string; type?: string; className?: string; title?: string } const CheckBoxElement: FunctionComponent = ({ labelClassName, type, className, title }: IProps) => { return (
); }; export default CheckBoxElement;