UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

20 lines (19 loc) 493 B
/// <reference types="react" /> interface ILink { /** * Kind availables (deprecated - use variant) */ kind?: 'default' | 'monochrome' | 'underline'; /** * Tag html availables */ as?: Extract<keyof JSX.IntrinsicElements, 'span' | 'a'>; /** * Variants availables */ variant?: 'default' | 'monochrome' | 'underline' | 'brandunderline'; onClick?: () => void; _t?: (text: string) => string; useT?: boolean; } export type { ILink };