Files
commerce/src/components/modules/Notification/NotificationEmptyPage/NotificationEmptyPage.tsx
2021-09-14 16:04:19 +07:00

18 lines
511 B
TypeScript

import React from 'react'
import { IconBell } from 'src/components/icons'
import s from '../NotificationEmptyPage/NotificationEmptyPage.module.scss'
const NotificationEmptyPage = () => {
return (
<section className={s.emptyPage}>
<div className={s.emptyIcon}>
<IconBell />
</div>
<div className={s.emptyContent}>
<p>Your Notification is empty</p>
</div>
</section>
)
}
export default NotificationEmptyPage