openreplay/frontend/app/components/ui/Checkbox/Checkbox.js
2021-05-01 15:12:01 +05:30

8 lines
No EOL
184 B
JavaScript

import { Checkbox } from 'semantic-ui-react';
export default ({ className = '', ...props }) => (
<Checkbox
className={`${ className } customCheckbox`}
{ ...props }
/>
);