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