import { Select, SelectProps } from "@chakra-ui/react"; import { forwardRef } from "react"; import { ElementOf } from "src/types/utils"; export const roles = ["general", "admin", "banned"] as const; export type Role = ElementOf; type RoleSelectProps = Omit & { defaultValue?: Role; value?: Role; }; export const RoleSelect = forwardRef((props, ref) => { return ( ); }); RoleSelect.displayName = "RoleSelect";