UNPKG

@primer/react-brand

Version:

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

14 lines (13 loc) 499 B
import { ColorModesEnum } from '../../../ThemeProvider'; import { Themes } from '../helpers'; type ArticleProps = { heroTitle?: string; lede?: string; content: 'real-world' | 'system'; gridOverlay?: boolean; colorMode?: ColorModesEnum; accentColor: Themes; isLightHero?: boolean; }; export declare function Article({ heroTitle, lede, content, gridOverlay, colorMode, isLightHero, accentColor, ...args }: ArticleProps): import("react/jsx-runtime").JSX.Element; export {};