16 lines
458 B
TypeScript
16 lines
458 B
TypeScript
import React from "react";
|
|
import classes from "./classes.module.scss";
|
|
import Image from "next/image";
|
|
import ProfileIcon from "@Assets/icons/user.svg";
|
|
|
|
type IProps = {};
|
|
type IState = {};
|
|
|
|
export default class Profile extends React.Component<IProps, IState> {
|
|
public override render(): JSX.Element {
|
|
return <div className={classes["root"]}>
|
|
<Image alt="notifications" src={ProfileIcon} className={classes["profile-icon"]} />
|
|
</div>;
|
|
}
|
|
}
|