import React, { CSSProperties } from 'react'; export type Option = { label: string | JSX.Element; value: string | Date | number; icon?: JSX.Element; disabled?: boolean; }; export type Props = { options: Array