import { Pencil } from 'lucide-react'; import Dialog from '~/components/Dialog'; import Input from '~/components/Input'; import { User } from '~/types'; interface Props { user: User; } // TODO: Server side validation before submitting export default function RenameUser({ user }: Props) { return ( Rename {user.name}? Enter a new username for {user.name}. Changing a username will not update any ACL policies that may refer to this user by their old username. ); }