UNPKG

@theguild/components

Version:
23 lines (20 loc) 977 B
import { FC, SVGProps, HTMLProps } from 'react'; import { MenuItem } from 'nextra/normalize-pages'; type ProductType = 'HIVE' | 'CONDUCTOR' | 'YOGA' | 'ENVELOP' | 'INSPECTOR' | 'CODEGEN' | 'MESH' | 'TOOLS' | 'MODULES' | 'ESLINT' | 'CONFIG' | 'SCALARS' | 'SOFA' | 'STITCHING' | 'ANGULAR' | 'WHATSAPP' | 'KITQL' | 'SSE' | 'WS' | 'FETS' | 'HELTIN' | 'NEXTRA'; declare const PRODUCTS: Record<ProductType, { name: string; title: string; href: `https://${string}`; logo: FC<SVGProps<SVGElement>> | FC<HTMLProps<HTMLElement>>; primaryColor: `#${string}`; }>; declare const SIX_HIGHLIGHTED_PRODUCTS: { name: string; title: string; href: `https://${string}`; logo: FC<SVGProps<SVGElement>> | FC<HTMLProps<HTMLElement>>; primaryColor: `#${string}`; }[]; /** List of products displayed in hamburger menu. */ declare const PRODUCTS_MENU_LIST: MenuItem['items']; export { PRODUCTS, PRODUCTS_MENU_LIST, type ProductType, SIX_HIGHLIGHTED_PRODUCTS };