Hex Core JS
    Preparing search index...

    Type Alias ExternalLinkProps

    ExternalLinkProps: {
        href: string;
        id?: string;
        rel?: string;
        target?: string;
        title?: string;
    } & Partial<ClassNameProps & StyleProps & ChildrenProps>

    Type Declaration

    • href: string

      URI for the link (same as HTML a.href). If a protocol is not set, one is automatically added (note that this means that relative paths cannot be used, instead use InternalLink).

    • Optionalid?: string

      HTML id of the element.

    • Optionalrel?: string

      HTML rel property on the link.

    • Optionaltarget?: string

      HTML target property on the link.

    • Optionaltitle?: string

      HTML title property on the link.