@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
17 lines (13 loc) • 322 B
text/typescript
const CLASS_PREFIX = 'md-toggle';
const DEFAULTS = {
IS_DISABLED: false,
DEFAULT_SELECTION: false,
LABEL: undefined,
};
const STYLE = {
wrapper: `${CLASS_PREFIX}-wrapper`,
toggle: `${CLASS_PREFIX}-switch`,
on: `${CLASS_PREFIX}-on`,
off: `${CLASS_PREFIX}-off`,
};
export { CLASS_PREFIX, DEFAULTS, STYLE };