UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

9 lines (8 loc) 306 B
import { FC } from "react"; import VibeComponentProps from "../../../types/VibeComponentProps"; export interface AlertBannerTextProps extends VibeComponentProps { text: string; marginLeft?: boolean; } declare const AlertBannerText: FC<AlertBannerTextProps>; export default AlertBannerText;