@openhands/ui
Version:
OpenHands UI Components
11 lines (10 loc) • 400 B
TypeScript
import { ReactNode } from 'react';
export type InteractiveChipType = "elevated" | "filled";
type ButtonStyle = {
button: string;
icon: string;
text: string;
};
export declare const buttonStyles: Record<InteractiveChipType, ButtonStyle>;
export declare const useAndApplyBoldTextWidth: (textNode: ReactNode, varName: string) => import('react').RefObject<HTMLSpanElement | null>;
export {};