Interface ExternalLinkButton

interface ExternalLinkButton {
    href: string;
    id: string;
    style?: CSSProperties;
    target: "_blank" | "_self";
    title?: string;
    type: "external";
}

Hierarchy

  • BlockBase
    • ExternalLinkButton

Properties

href: string
id: string
target: "_blank" | "_self"
title?: string
type: "external"