import React, { CSSProperties } from 'react'; type Option = { label: string; value: string; type: 'upload' | 'download'; icon?: JSX.Element; url?: string; fileAcceptedType?: string; multiple?: boolean; }; export type Props = { options: Array