UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

18 lines (17 loc) 766 B
import { ElementType, ForwardedRef } from 'react'; export type InputControlProperties = { /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Container for icons controlling form elements, such as a dropdown icon for a select element. * @docs {@link https://design.visa.com/react/components/input | See Docs} * @related select */ declare const _default: <HTMLElementType = HTMLDivElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & InputControlProperties) => import("react").ReactElement; export default _default;