@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
26 lines (25 loc) • 731 B
TypeScript
import type { ScheduleInfoColor } from './MeetingContainer.types';
declare const CLASS_PREFIX = "md-meeting-container";
declare const SCHEDULE_INFO_COLORS: Record<string, ScheduleInfoColor>;
declare const ANCHORS: {
TOP: string;
CENTER: string;
};
declare const DEFAULTS: {
ANCHOR: string;
IS_DISABLED: boolean;
SCHEDULE_INFO_COLOR: ScheduleInfoColor;
TITLE_TYPE: import("../Text/Text.types").FontStyle;
TITLE_TAG_NAME: "h3";
};
declare const STYLE: {
wrapper: string;
actions: string;
tags: string;
details: string;
avatar: string;
container: string;
spaceLink: string;
classification: string;
};
export { CLASS_PREFIX, DEFAULTS, STYLE, SCHEDULE_INFO_COLORS, ANCHORS };