import classNames from "classnames"; import React from "react"; import Typography, { ETypo, ETypoColor } from "../Typography"; import classes from "./classes.module.scss"; import Button, { EButtonSize, EButtonstyletype, EButtonVariant, IButtonProps } from "../Button"; type IProps = { text: string; read: boolean; button: IButtonProps; className?: string; }; export default function NotificationBox(props: IProps) { const { className, text, button, read } = props; return (