import React from 'react'; import classNames from 'classnames'; interface Props { disabled?: boolean; label?: string; className?: string; onChange?: any; name?: string; checked: boolean; } export type CBProps = Partial; const CheckBox: React.FC = (props) => { const { disabled, name, label, className, ...restProps } = props; const classes = classNames('paypay-checkbox', className); return (
); }; export default CheckBox;