@visa/nova-react
Version:
Visa Product Design System Nova React library
14 lines (13 loc) • 690 B
TypeScript
import { ForwardedRef } from 'react';
import { SurfaceProperties } from '../surface';
export type InputContainerProperties = SurfaceProperties;
/**
* Container for styling input elements.
* @docs {@link https://design.visa.com/react/components/input | See Docs}
* @related combobox, input, select, textarea
*/
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> & SurfaceProperties) => import("react").ReactElement;
export default _default;