Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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
)
;
}

§Extends

§
Omit<LinkProps, "className" | "style" | "children">
[src]

§Properties

§
caseSensitive?: boolean
[src]
§
children?: React.ReactNode | ((props: {
isActive: boolean;
isPending: boolean;
}
) => React.ReactNode
)
[src]
§
className?: string | ((props: {
isActive: boolean;
isPending: boolean;
}
) => string | undefined
)
[src]
§
end?: boolean
[src]
§
style?: React.CSSProperties | ((props: {
isActive: boolean;
isPending: boolean;
}
) => React.CSSProperties | undefined
)
[src]