input.tsx 1.0 KB

123456789101112131415161718192021
  1. import * as React from 'react';
  2. import { cn } from '@/common/helpers/cn';
  3. function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
  4. return (
  5. <input
  6. type={type}
  7. data-slot="input"
  8. className={cn(
  9. 'flex h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none selection:bg-primary selection:text-primary-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm',
  10. 'focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50',
  11. 'aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40',
  12. className,
  13. )}
  14. {...props}
  15. />
  16. );
  17. }
  18. export { Input };