@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 342 B
TypeScript
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 };