wabi-sabi-ds
Version:
Abundance's Wabi Sabi Design System.
16 lines (15 loc) • 656 B
TypeScript
import * as T from './Link.types';
/**
* Custom WabiSabi link component.
*
* @param size - The size of the component ranging from '56', '48', '40', '32', '24' and '16'.
* @param variant - Visual style of the button:'text', 'primary', 'secondary-outline',
* 'secondary-outline-ghost', 'tertiary', 'destructive'.
* @param disabled - Disable link interactions.
* @param isLoading - Show a loading message and disable the button while true.
* @param loadingMessage - Set a custom loading message when isLoading.
*
* @returns A link element.
*/
declare function Link(props: T.LinkProps): import("react/jsx-runtime").JSX.Element;
export default Link;