/** * Shared button recipes for the Company ID modals (extract, push), so the * primary and ghost actions look identical across dialogs instead of each * one re-declaring the class list. Light palette, matching the page. */ /** Primary action pill for modal footers (submit, confirm). */ export const MODAL_PRIMARY_BUTTON_CLASS = 'flex h-9 cursor-pointer items-center justify-center gap-2 whitespace-nowrap rounded-[9px] border border-[#e1e3e5] bg-[#f6f6f7] px-4 text-[13px] font-medium text-[#202223] transition-colors hover:border-[#c9cccf] disabled:opacity-60'; /** Ghost action pill for modal footers (cancel, close). */ export const MODAL_GHOST_BUTTON_CLASS = 'h-9 cursor-pointer whitespace-nowrap rounded-[9px] border border-[#e1e3e5] px-3.5 text-[13px] text-[#6d7175] disabled:opacity-60';