@spark-web/text-link
Version:
--- title: Text Link storybookPath: navigation-textlink--default isExperimentalPackage: true ---
12 lines (11 loc) • 605 B
TypeScript
import type { DataAttributeMap } from '@spark-web/utils/internal';
import type { HTMLAttributes } from 'react';
export declare type TextLinkButtonProps = {
/** Sets data attributes on the component. */
data?: DataAttributeMap;
} & HTMLAttributes<HTMLSpanElement>;
/** The appearance of `TextLink`, with the semantics of a `<button/>`. */
export declare const TextLinkButton: import("react").ForwardRefExoticComponent<{
/** Sets data attributes on the component. */
data?: DataAttributeMap | undefined;
} & HTMLAttributes<HTMLSpanElement> & import("react").RefAttributes<HTMLSpanElement>>;