UNPKG

@cfxjs/react-ui

Version:

Modern and minimalist React UI library.

10 lines (9 loc) 367 B
import React from 'react'; import { CfxUIThemesPalette } from '../styles/themes'; import { MessageColors } from 'components/utils/prop-types'; export interface MessageColorGroup { bgColor: string; color: string; icon: React.ReactNode; } export declare const getStyles: (palette: CfxUIThemesPalette, color: MessageColors | undefined) => MessageColorGroup;