interface ChipLinkProps {
    href: string;
    onNavigate: ((to) => void);
    text: string;
}

Properties

Properties

href: string

The URL to navigate to when the chip is clicked

onNavigate: ((to) => void)

Callback when navigating to a url

Type declaration

    • (to): void
    • Callback when navigating to a url

      Parameters

      • to: string

      Returns void

text: string

The text to display in the chip

Generated using TypeDoc