UNPKG

@betterstore/react

Version:

11 lines (10 loc) 429 B
import { Input } from '../ui/input'; import { default as React } from 'react'; type InputControllerProps = { name: string; label?: string; icon?: React.ReactNode; showIcon?: boolean; } & Omit<React.ComponentProps<typeof Input>, "placeholder">; export default function InputController({ name, label, className, icon, showIcon, ...props }: InputControllerProps): import("react/jsx-runtime").JSX.Element; export {};