import { globalIDs } from '@/utils/constants'; import { type Button as ButtonStyle, type Control } from '../props'; import { cn } from '../utils'; interface ButtonProps extends Control, ButtonStyle { /** Icon to display first. */ icon?: React.ReactNode; /** Text to display second. */ text?: string; /** Indicates whether to render the button in a dense style. */ dense?: boolean; /** Indicates loading state to prevent interactions and change visual style. */ loading?: boolean; } /** * Customizable `button` with text, icon, tooltips and various styles. */ export function Button({ icon, text, title, titleHtml, hideTitle, loading, dense, disabled, noBorder, noOutline, className, ...restProps }: ButtonProps) { return ( ); }