UNPKG

@university-ecosystem/ui-kit

Version:
15 lines (14 loc) 434 B
/// <reference types="react" /> import { Theme } from '@emotion/react'; export type StatusColorValues = 'succsess' | 'error' | 'info' | 'warning' | 'default'; export declare const StatusColor: (theme: Theme) => { succsess: string; error: string; info: string; warning: string; default: string; }; export interface StatusProps { status: StatusColorValues; children?: React.ReactElement | React.ReactNode; }