import { type GroupBase, type Props } from "react-select"; import React from "react"; /** * Exceptional case for this file: * We use postcss-url to inline and base64 our image assets. * But the library can only see as far as css files. * When javascript gets in the way (react-select uses a package called `emotion` for styles), postcss-url cannot * bundle the svg assets used here, and we end up with some broken style. */ import "./Select.scss"; import { type OptionMinimal } from "./Select.types"; type FormFieldWidth = "sm" | "md" | "lg" | "xl" | "full"; export interface SelectProps