UNPKG

wabi-sabi-ds

Version:

Abundance's Wabi Sabi Design System.

11 lines (10 loc) 418 B
import React from 'react'; export type LinkAttributes = React.AnchorHTMLAttributes<HTMLAnchorElement>; export interface LinkProps extends LinkAttributes { size?: '56' | '48' | '40' | '32' | '24' | '16'; href: string; disabled?: boolean; isLoading?: boolean; loadingMessage?: string; variant?: 'primary' | 'secondary-outline' | 'secondary-outline-ghost' | 'tertiary' | 'text' | 'destructive'; }