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