import { NotificationGroupProps } from "./NotificationGroupProps";
import { NotificationGroup as KendoNotificationGroup } from "@progress/kendo-react-notification";

const NotificationGroup: React.FC<NotificationGroupProps> = ({
  dataTestId,
  children,
  id,
  className,
  style,
}) => (
  <div data-test-id={dataTestId}>
    <KendoNotificationGroup
      data-testid={id}
      className={className}
      style={style}
    >
      {children}
    </KendoNotificationGroup>
  </div>
);

export default NotificationGroup;
