import { PlusIcon } from "outline-icons"; import * as React from "react"; import stores from "~/stores"; import ApiKeyNew from "~/scenes/ApiKeyNew"; import { createAction } from ".."; import { SettingsSection } from "../sections"; export const createApiKey = createAction({ name: ({ t }) => t("New API key"), analyticsName: "New API key", section: SettingsSection, icon: , keywords: "create", visible: () => stores.policies.abilities(stores.auth.team?.id || "").createApiKey, perform: ({ t, event }) => { event?.preventDefault(); event?.stopPropagation(); stores.dialogs.openModal({ title: t("New API key"), content: , }); }, });