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

15 lines
433 B
TypeScript
Raw Normal View History

import React, { forwardRef } from 'react';
import classNames from 'classnames';
import styles from './styles.module.css';
2022-07-02 22:27:29 +00:00
type Props = Omit<React.ComponentProps<'input'>, 'type'>;
export default forwardRef<HTMLInputElement, Props>(({ className, ...props }, ref) => (
<input
ref={ref}
type={'checkbox'}
className={classNames('form-input', styles.checkbox_input, className)}
{...props}
/>
));