@trussworks/react-uswds
Version:
React USWDS 3 component library
11 lines (10 loc) • 532 B
TypeScript
import { ReactElement, JSX } from 'react';
import { IdentifierLinkItemProps } from '../IdentifierLinkItem/IdentifierLinkItem';
export type IdentifierLinksProps = {
children: ReactElement<IdentifierLinkItemProps> | ReactElement<IdentifierLinkItemProps>[];
className?: string;
navProps?: JSX.IntrinsicElements['nav'];
listProps?: JSX.IntrinsicElements['ul'];
};
export declare const IdentifierLinks: ({ children, className, navProps, listProps, }: IdentifierLinksProps) => JSX.Element;
export default IdentifierLinks;