feather icons and inter (#3366)

This commit is contained in:
Peer Richelsen
2022-07-26 20:24:00 -06:00
committed by GitHub
parent a1fcdcae44
commit b9645b4de5
142 changed files with 636 additions and 941 deletions
+8 -14
View File
@@ -1,13 +1,7 @@
import {
CreditCardIcon,
KeyIcon,
LockClosedIcon,
UserGroupIcon,
UserIcon,
CodeIcon,
} from "@heroicons/react/solid";
import React, { ComponentProps } from "react";
import { Icon } from "@calcom/ui/Icon";
import ErrorBoundary from "@lib/ErrorBoundary";
import NavTabs from "./NavTabs";
@@ -17,32 +11,32 @@ const tabs = [
{
name: "profile",
href: "/settings/profile",
icon: UserIcon,
icon: Icon.User,
},
{
name: "teams",
href: "/settings/teams",
icon: UserGroupIcon,
icon: Icon.Users,
},
{
name: "security",
href: "/settings/security",
icon: KeyIcon,
icon: Icon.Key,
},
{
name: "developer",
href: "/settings/developer",
icon: CodeIcon,
icon: Icon.Terminal,
},
{
name: "billing",
href: "/settings/billing",
icon: CreditCardIcon,
icon: Icon.CreditCard,
},
{
name: "admin",
href: "/settings/admin",
icon: LockClosedIcon,
icon: Icon.Lock,
adminRequired: true,
},
];