mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-10 18:56:39 +00:00
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import React, { FC } from "react";
|
|
|
|
interface IProps {
|
|
picture: string;
|
|
}
|
|
export const Avatar: FC<IProps> = ({ picture }) => {
|
|
return (
|
|
<>
|
|
<img className="circle" src={picture} height="100vh" width="100vh" />
|
|
</>
|
|
);
|
|
};
|