import { IconCheck } from "@tabler/icons-react"; import { Group, Select, SelectProps, Text } from "@mantine/core"; import React from "react"; import { spaceRoleData } from "@/features/space/types/space-role-data.ts"; import { useTranslation } from "react-i18next"; import { IRoleData } from "@/lib/types.ts"; const iconProps = { stroke: 1.5, color: "currentColor", opacity: 0.6, size: 18, }; const renderSelectOption: SelectProps["renderOption"] = ({ option, checked, }) => (
{option.label} {option["description"]}
{" "} {checked && ( )}
); interface SpaceMemberRoleProps { onSelect: (value: string) => void; defaultRole: string; label?: string; } export function SpaceMemberRole({ onSelect, defaultRole, label, }: SpaceMemberRoleProps) { const { t } = useTranslation(); return (