mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
interface UserRoleProps {
|
|
name: string;
|
|
color: string;
|
|
}
|
|
|
|
export const UserRole = ({ name, color }: UserRoleProps) => {
|
|
return (
|
|
<div
|
|
className={`text-[var(--color)] border border-[var(--color)] rounded-md`}
|
|
style={{ "--color": `#${color}` } as React.CSSProperties}
|
|
>
|
|
<p className="px-1.5 py-0.5">{name}</p>
|
|
</div>
|
|
);
|
|
};
|