import { ROLE } from "@/constants/constants"

export const dialogContent: Record<
  string,
  { title: string; description: string }
> = {
  [ROLE.CREATE]: {
    title: "Create Role",
    description: "Add a new role to your organization.",
  },
  [ROLE.RENAME]: {
    title: "Rename Role",
    description: "Update the details of this role.",
  },
}
