UNPKG

@trussworks/react-uswds

Version:
10 lines (9 loc) 343 B
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;