@primer/react-brand
Version:
Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.
17 lines (16 loc) • 658 B
TypeScript
import { ColorModesEnum } from '../../../ThemeProvider';
type SolutionsOverviewProps = {
variant: 'size' | 'industry' | 'use-case';
gridOverlay?: boolean;
colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK;
heroLabel: string;
heroTitle: string;
heroDescription: string;
heroCtaTextPrimary: string;
heroCtaTextSecondary: string;
sectionIntroText: string;
introVariant: 'pillars' | 'editorial prose' | 'editorial list';
[key: string]: unknown;
};
export declare function SolutionsOverview({ variant, gridOverlay, colorMode, ...args }: SolutionsOverviewProps): import("react/jsx-runtime").JSX.Element;
export {};