* migrate from react-icons to lucide-react * replace react-icon with lucide-dev: Webhook Icon * add lucide transformer * Fix LinkIcon import * Update yarn.lock to include monorepo deps * Migrated icons in ChargeCardDialog * Port Storybook to new icons as well * Adjust Info & Globe icons size to match react-icons size --------- Co-authored-by: Alex van Andel <me@alexvanandel.com>
21 lines
531 B
TypeScript
21 lines
531 B
TypeScript
import { Suspense } from "react";
|
|
|
|
import NoSSR from "@calcom/core/components/NoSSR";
|
|
import { Meta } from "@calcom/ui";
|
|
import { Loader } from "@calcom/ui/components/icon";
|
|
|
|
import { FlagAdminList } from "../components/FlagAdminList";
|
|
|
|
export const FlagListingView = () => {
|
|
return (
|
|
<>
|
|
<Meta title="Feature Flags" description="Here you can toggle your Cal.com instance features." />
|
|
<NoSSR>
|
|
<Suspense fallback={<Loader />}>
|
|
<FlagAdminList />
|
|
</Suspense>
|
|
</NoSSR>
|
|
</>
|
|
);
|
|
};
|