2024-02-18 17:33:20 +01:00
|
|
|
import { UserIcon } from 'shared/components/icons.mjs'
|
2024-01-14 18:31:52 +01:00
|
|
|
|
|
|
|
export const Role = ({ role }) => (
|
2024-02-18 17:33:20 +01:00
|
|
|
<div className="text-sm font-medium badge badge-accent mt-4 flex flex-row gap-2 px-3 py-3 items-center">
|
|
|
|
<UserIcon className="w-4 h-4" stroke={2} /> {role}
|
2024-01-14 18:31:52 +01:00
|
|
|
</div>
|
|
|
|
)
|