@vlinderclimate/net-zero-ui
Version:
<div align="center"> <img src="https://storage.yandexcloud.net/static.vlinderstorage.com/Telegram_VlinderTech.png" width=200 /> </div> <h1 align="center">Net Zero UI kit</h1>
10 lines (9 loc) • 464 B
TypeScript
/// <reference types="react" />
import { ChipProps as MuiChipProps } from "@mui/material/Chip";
export interface ChipProps extends Omit<MuiChipProps, "color"> {
color: "default" | "primary" | "secondary" | "error" | "info" | "success" | "warning";
}
export declare const backgroundMap: Record<ChipProps["color"], string>;
export declare const colorMap: Record<ChipProps["color"], string>;
declare const Chip: React.FC<ChipProps>;
export default Chip;