import * as React from 'react' import { NavLink } from '@mantine/core' interface FnNavLinkProps { label: string description?: string icon?: React.ReactNode active?: boolean onClick?: React.MouseEventHandler href?: string children?: React.ReactNode opened?: boolean defaultOpened?: boolean } function FnNavLink({ label, description, icon, active, onClick, href, children, opened, defaultOpened, }: FnNavLinkProps) { return ( {children} ) } export { FnNavLink } export type { FnNavLinkProps }