monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
8 lines (7 loc) • 331 B
TypeScript
import React from "react";
import { TypographyColor } from "../Typography/TypographyConstants";
type AlertBannerContextType = {
textColor: TypographyColor.ON_PRIMARY | TypographyColor.ON_INVERTED | TypographyColor.FIXED_DARK;
};
export declare const AlertBannerContext: React.Context<AlertBannerContextType>;
export {};