@trussworks/react-uswds
Version:
React USWDS 3 component library
10 lines (9 loc) • 343 B
TypeScript
import { JSX } from 'react';
type Language = 'english' | 'spanish';
type TLD = '.gov' | '.mil';
export type GovBannerProps = {
tld?: TLD;
language?: Language;
} & JSX.IntrinsicElements['section'];
export declare const GovBanner: ({ tld, language, className, ...sectionProps }: GovBannerProps) => JSX.Element;
export default GovBanner;