UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

9 lines (8 loc) 395 B
/// <reference types="react" /> import { IChildren, IClassName } from '../../../../types'; import { ILink } from './ILink'; /** * Links take users to another place, and usually appear within or directly following a sentence. */ declare function Link({ kind, variant, className, children, as: ElementText, onClick, _t, useT }: ILink & IChildren & IClassName): JSX.Element; export default Link;