@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
22 lines (21 loc) • 521 B
TypeScript
import { Size } from './ButtonCircleLink.types';
declare const CLASS_PREFIX = "md-button-circle-link";
declare const DEFAULTS: {
COLOR: string;
DISABLED: boolean;
SHALLOW_DISABLED: boolean;
GHOST: boolean;
OUTLINE: boolean;
SIZE: number;
INVERTED: boolean;
};
declare const COLORS: {
JOIN: string;
CANCEL: string;
MESSAGE: string;
};
declare const SIZES: Record<number, Size>;
declare const STYLE: {
wrapper: string;
};
export { CLASS_PREFIX, STYLE, DEFAULTS, COLORS, SIZES };