UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

14 lines (13 loc) 269 B
import * as React from "react"; interface AlertProps { body: any; alertClass: string; id?: string; } /** * This components renders bootstrap alert. * * @returns JSX of the generated Alert. */ export declare const Alert: React.FC<AlertProps>; export {};