mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
import React, { FC } from "react";
|
|
import { FloatingButton } from "./FloatingButton";
|
|
|
|
interface AvatarListProps {
|
|
avatars: string[];
|
|
}
|
|
|
|
export const AvatarList: FC<AvatarListProps> = ({ avatars }) => {
|
|
return (
|
|
<>
|
|
{avatars.map((avatar: string) => (
|
|
<img className="circle" src={avatar} width="32vh" height="32vh" />
|
|
))}
|
|
</>
|
|
);
|
|
};
|