Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion apps/site/util/partners/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
import * as PartnersLogo from '@node-core/ui-components/Icons/PartnerLogos';
import {
CLOUDFLARE,
DIGITALOCEAN,
MICROSOFT,
HERODEVS,
NODESOURCE,
VERCEL,
} from '@node-core/ui-components/Icons/PartnerLogos';
import type { ElementType } from 'react';

import type { Partners } from '#site/types';

const PartnersLogo: Record<string, Record<string, ElementType>> = {
CLOUDFLARE,
DIGITALOCEAN,
MICROSOFT,
HERODEVS,
NODESOURCE,
VERCEL,
};

/**
* Creates an icon element for a component
*/
Expand Down
Loading