misc_pterodactyl-panel/resources/scripts/components/elements/inputs/Checkbox.tsx

20 lines
563 B
TypeScript
Raw Normal View History

2022-02-27 01:59:29 +00:00
import React, { forwardRef } from 'react';
import styles from './inputs.module.css';
import classNames from 'classnames';
type Props = Omit<React.ComponentProps<'input'>, 'type'> & {
indeterminate?: boolean;
}
2022-02-27 01:59:29 +00:00
export default forwardRef<HTMLInputElement, Props>(({ className, indeterminate, ...props }, ref) => (
2022-02-27 01:59:29 +00:00
<input
ref={ref}
type={'checkbox'}
className={classNames('form-checkbox', {
[styles.checkbox]: true,
[styles.indeterminate]: indeterminate,
}, className)}
{...props}
2022-02-27 01:59:29 +00:00
/>
));