| 4 | import { cn } from "@/lib/utils"; |
| 5 | |
| 6 | interface InputProps extends React.ComponentProps<typeof BaseInput> { |
| 7 | inputContainerClassName?: string; |
| 8 | leadingIcon?: React.ReactNode; |
| 9 | trailingIcon?: React.ReactNode; |
| 10 | } |
| 11 | |
| 12 | const Input = ({ |
| 13 | inputContainerClassName, |
nothing calls this directly
no outgoing calls
no test coverage detected