@visa/nova-react
Version:
Visa Product Design System Nova React library
19 lines (18 loc) • 739 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type SelectProperties = {
/** @ignore */
className?: string;
/** Tag of Component */
tag?: ElementType;
};
/**
* HTML element that allows users to select one option from a list.
* @docs {@link https://design.visa.com/react/components/select | See Docs}
* @vgar TODO
* @wcag TODO
*/
declare const _default: <HTMLElementType = HTMLSelectElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & SelectProperties) => import("react").ReactElement;
export default _default;