@spaced-out/ui-design-system
Version:
Sense UI components library
14 lines (10 loc) • 328 B
Flow
// @flow strict
export type GroupAlign = 'vertical' | 'horizontal-fixed' | 'horizontal-fluid';
export const ALERT_SEMANTIC = Object.freeze({
neutral: 'neutral',
success: 'success',
information: 'information',
warning: 'warning',
danger: 'danger',
});
export type AlertSemanticType = $Values<typeof ALERT_SEMANTIC>;