Files
flotilla/src/app/components/RoleBadge.svelte
T
Jon Staab 7ec5a28d1f Add roles
2026-06-22 15:45:31 -07:00

18 lines
406 B
Svelte

<script lang="ts">
import {roleColor, roleColorSoft, type SpaceRole} from "@app/members"
interface Props {
role: SpaceRole
}
const {role}: Props = $props()
</script>
<div
class="badge min-w-0"
style="background-color: {roleColorSoft(role.color)}; border-color: {roleColor(
role.color,
)}; color: {roleColor(role.color)};">
<strong>{role.label || "Untitled Role"}</strong>
</div>