UNPKG

@primer/react-brand

Version:

Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.

16 lines (15 loc) 599 B
import { ColorModesEnum } from '../../..'; type CategoryPageProps = { variant: 'size' | 'industry' | 'use-case'; gridOverlay?: boolean; colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK; heroLabel: string; heroTitle: string; heroDescription: string; heroCtaTextPrimary: string; heroCtaTextSecondary: string; introVariant: 'pillars' | 'editorial prose' | 'editorial list'; [key: string]: unknown; }; export declare function CategoryPage({ variant, gridOverlay, colorMode, ...args }: CategoryPageProps): import("react/jsx-runtime").JSX.Element; export {};