import { GlobeLock, Group, User2 } from 'lucide-react'; import React from 'react'; import { Form } from 'react-router'; import Button from '~/components/Button'; import TableList from '~/components/TableList'; import cn from '~/utils/cn'; interface RestrictionProps { children: React.ReactNode; type: 'domain' | 'group' | 'user'; values: string[]; isDisabled?: boolean; } export default function RestrictionTable({ children, type, values, isDisabled, }: RestrictionProps) { return (
{'
{value}
)}All {type}s are permitted to authenticate.