mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
14 lines
261 B
React
14 lines
261 B
React
|
import React from 'react';
|
||
|
|
||
|
const NotificationImage = ({type_of}) => {
|
||
|
return(
|
||
|
<div className="text-center">
|
||
|
<span className="assignment">
|
||
|
<i className="fa fa-newspaper-o" />
|
||
|
</span>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default NotificationImage;
|