mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
18 lines
511 B
TypeScript
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 |