File size: 340 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import React, { type SelectHTMLAttributes } from "react";
/**
* Render a `select` element.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Select(props: SelectHTMLAttributes<HTMLSelectElement>) {
return <select {...props} />;
}
export type SelectProps = Parameters<typeof Select>[0];
|