UNPKG

@primer/react-brand

Version:

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

49 lines (48 loc) 1.68 kB
import React from 'react'; import { ColorModesEnum } from '../../..'; import { Themes } from '../helpers'; type FeaturePreviewLevelTwoProps = { gridOverlay?: boolean; variant?: 'Maximum' | 'Minimum'; colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK; accentColor: Themes; subNavVisible: boolean; heroAlign: 'start' | 'center'; heroBg: boolean; showHeroVisual: boolean; heroLabel: string; heroTitle: string; heroDescription: string; heroCtaTextPrimary: string; heroCtaTextSecondary: string; sectionIntroAlign: 'start' | 'center'; sectionIntroText: string | React.ReactElement[]; sectionIntroVisible: boolean; pillarVisible: boolean; pillarBackground: boolean; logoSuiteVisible: boolean; riverOneVisible: boolean; riverOneType: 'start' | 'end' | 'breakout'; riverOneTitle: string; riverOneDescription: string; riverOneCtaText: string; riverTwoVisible: boolean; riverTwoType: 'start' | 'end' | 'breakout'; riverTwoTitle: string; riverTwoDescription: string; riverTwoCtaText: string; riverThreeVisible: boolean; riverThreeType: 'start' | 'end' | 'breakout'; riverThreeTitle: string; riverThreeDescription: string; riverThreeCtaText: string; testimonialVisible: boolean; testimonialQuantity: number; ctaBannerVisible: boolean; ctaBannerShowBg: boolean; faqVisible: boolean; faqType: 'group' | 'single'; cardsVisible: boolean; }; export declare function FeaturePreviewLevelTwo({ accentColor, variant, gridOverlay, colorMode, ...args }: FeaturePreviewLevelTwoProps): import("react/jsx-runtime").JSX.Element; export {};