UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

14 lines (13 loc) 553 B
import { VuiComponent } from "../core/vui.js"; import { ButtonProps } from "../button/button.types.js"; import "../index.js"; //#region src/select/selectButton.d.ts /** * Displays a custom button component, which opens a popover on click. * Text within the button is either selected value or placeholder. * Includes special styling for disabled, readOnly and invalid states. */ declare const SelectButton: VuiComponent<"button", ButtonProps>; //#endregion export { SelectButton, SelectButton as default }; //# sourceMappingURL=selectButton.d.ts.map