openreplay/frontend/app/components/ui/Checkbox/Checkbox.tsx
2025-03-05 17:10:21 +01:00

16 lines
342 B
TypeScript

import React from 'react';
import { Checkbox as AntCheckbox } from 'antd'
interface Props {
className?: string;
label?: string;
[x: string]: any;
}
export default (props: Props) => {
const { className = '', label, ...rest } = props;
return (
<AntCheckbox {...rest}>
{label}
</AntCheckbox>
);
};