import { globalIDs } from '@/utils/constants'; import { type Button } from '../props'; import { cn } from '../utils'; interface SelectorButtonProps extends Button { /** Text to display in the button. */ text?: string; /** Icon to display in the button. */ icon?: React.ReactNode; } /** * Displays a button with an icon and text that opens a dropdown menu. */ export function SelectorButton({ text, icon, title, titleHtml, className, hideTitle, ...restProps }: SelectorButtonProps) { return ( ); }