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

14 lines
421 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'>
export default forwardRef<HTMLInputElement, Props>(({ className, ...props }, ref) => (
<input
ref={ref}
type={'checkbox'}
className={classNames('form-checkbox', styles.checkbox, className)} {...props}
/>
));