@postenbring/hedwig-react
Version:
React components for [Hedwig Design System](https://github.com/bring/hedwig-design-system).
8 lines • 389 B
TypeScript
import type { ReactNode } from "react";
import React from "react";
export interface WarningBannerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
title: ReactNode;
description?: ReactNode;
}
export declare const WarningBanner: React.ForwardRefExoticComponent<WarningBannerProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=warning-banner.d.ts.map