import React, { forwardRef } from 'react'; import styles from './inputs.module.css'; import classNames from 'classnames'; type Props = Omit, 'type'> & { indeterminate?: boolean; } export default forwardRef(({ className, indeterminate, ...props }, ref) => ( ));