UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 342 B
import React from 'react'; export type Props = { message: string; icon?: React.ReactNode; bgColor?: string; highlightColor?: string; } & React.HTMLAttributes<HTMLDivElement>; declare const NotificationBar: ({ icon, bgColor, highlightColor, message, ...rest }: Props) => React.JSX.Element; export { NotificationBar };