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.

21 lines (19 loc) 752 B
import vui from "../core/vui.js"; import { IconButton } from "../button/buttons.js"; import { jsx } from "react/jsx-runtime"; //#region src/datePicker/datePickerTriggerButton.tsx /** Preconfigured icon-only trigger button for `DatePicker` (e.g. used as `TextField`'s `itemRight`). */ const DatePickerTriggerButton = vui((props, ref) => /* @__PURE__ */ jsx(IconButton, { "aria-label": "Open calendar", icon: "uiCalendarAlt", ref, size: "md", title: "Open calendar", variant: "tertiary", ...props })); DatePickerTriggerButton.displayName = "DatePickerTriggerButton"; //#endregion export { DatePickerTriggerButton, DatePickerTriggerButton as default }; globalThis.__vuiVersion__ = "5.4.0-alpha" //# sourceMappingURL=datePickerTriggerButton.js.map