@geist-ui/react
Version:
Modern and minimalist React UI library.
9 lines (8 loc) • 341 B
TypeScript
import { SnippetTypes } from "../utils/prop-types";
import { GeistUIThemesPalette } from "../themes/presets";
export declare type SnippetStyles = {
color: string;
border: string;
bgColor: string;
};
export declare const getStyles: (type: SnippetTypes, palette: GeistUIThemesPalette, fill?: boolean | undefined) => SnippetStyles;