UNPKG

react-day-picker

Version:

Customizable Date Picker for React

19 lines 1.15 kB
import React from "react"; import { UI } from "../UI.js"; /** * Render a dropdown component to use in the navigation bar. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export function Dropdown(props) { const { options, className, components, classNames, ...selectProps } = props; const cssClassSelect = [classNames[UI.Dropdown], className].join(" "); const selectedOption = options?.find(({ value }) => value === selectProps.value); return (React.createElement("span", { "data-disabled": selectProps.disabled, className: classNames[UI.DropdownRoot] }, React.createElement(components.Select, { className: cssClassSelect, ...selectProps }, options?.map(({ value, label, disabled }) => (React.createElement(components.Option, { key: value, value: value, disabled: disabled }, label)))), React.createElement("span", { className: classNames[UI.CaptionLabel], "aria-hidden": true }, selectedOption?.label, React.createElement(components.Chevron, { orientation: "down", size: 18, className: classNames[UI.Chevron] })))); } //# sourceMappingURL=Dropdown.js.map