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