@cfxjs/react-ui
Version:
Modern and minimalist React UI library.
9 lines (8 loc) • 354 B
TypeScript
import { SnippetColors } from 'components/utils/prop-types';
import { CfxUIThemesPalette } from 'components/styles/themes';
export declare type SnippetStyles = {
color: string;
border: string;
bgColor: string;
};
export declare const getStyles: (type: SnippetColors, palette: CfxUIThemesPalette, fill?: boolean | undefined) => SnippetStyles;