NavLinkProps
interface NavLinkProps extends Omit<LinkProps, "className" | "style" | "children"> {
caseSensitive?: boolean;
children?: React.ReactNode | ((props: {
isActive: boolean;
isPending: boolean;
}) => React.ReactNode);className?: string | ((props: {
isActive: boolean;
isPending: boolean;
}) => string | undefined);end?: boolean;
style?: React.CSSProperties | ((props: {
}isActive: boolean;
isPending: boolean;
}) => React.CSSProperties | undefined);§Properties
§
children?: React.ReactNode | ((props: {
[src]isActive: boolean;
isPending: boolean;
}) => React.ReactNode)§
className?: string | ((props: {
[src]isActive: boolean;
isPending: boolean;
}) => string | undefined)§
style?: React.CSSProperties | ((props: {
[src]isActive: boolean;
isPending: boolean;
}) => React.CSSProperties | undefined)