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

8 lines
340 B
TypeScript
Raw Normal View History

import React, { forwardRef } from 'react';
import classNames from 'classnames';
import styles from './styles.module.css';
export default forwardRef<HTMLInputElement, React.ComponentProps<'input'>>(({ className, ...props }, ref) => (
<input ref={ref} className={classNames('form-input', styles.text_input, className)} {...props} />
));