({ className, ...props }: React.ComponentProps<"div">)
| 27 | } |
| 28 | |
| 29 | function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">) { |
| 30 | return ( |
| 31 | <div |
| 32 | data-slot="input-otp-group" |
| 33 | className={cn("flex items-center", className)} |
| 34 | {...props} |
| 35 | /> |
| 36 | ) |
| 37 | } |
| 38 | |
| 39 | function InputOTPSlot({ |
| 40 | index, |