@utrecht/component-library-react
Version:
React component library bundle for the Municipality of Utrecht based on the NL Design System architecture
24 lines • 1.09 kB
TypeScript
import type { LinkProps } from '@utrecht/link-react';
import { HTMLAttributes, PropsWithChildren } from 'react';
import type { LinkButtonProps } from './LinkButton';
export interface NavListProps extends HTMLAttributes<HTMLUListElement> {
appearance?: undefined | string | 'center';
}
export declare const NavList: import("react").ForwardRefExoticComponent<NavListProps & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLUListElement>>;
export interface NavListLinkProps extends LinkProps {
center?: boolean;
}
export declare const NavListLink: {
({ center, children, className, ...restProps }: PropsWithChildren<NavListLinkProps>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export interface NavListLinkButtonProps extends LinkButtonProps {
center?: boolean;
}
export declare const NavListLinkButton: {
({ center, children, className, ...restProps }: PropsWithChildren<NavListLinkButtonProps>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
//# sourceMappingURL=NavList.d.ts.map