1 | import * as React from "react";
|
2 | import * as StyledSystem from "styled-system";
|
3 | import * as Emotion from "@emotion/styled";
|
4 | import { PseudoBoxProps } from "../PseudoBox";
|
5 |
|
6 | export interface ILink {
|
7 | |
8 |
|
9 |
|
10 | isExternal?: boolean;
|
11 | |
12 |
|
13 |
|
14 | isDisabled?: boolean;
|
15 | |
16 |
|
17 |
|
18 | onClick?: React.MouseEventHandler<HTMLAnchorElement>;
|
19 | }
|
20 |
|
21 | export type LinkProps = ILink &
|
22 | PseudoBoxProps &
|
23 | React.HTMLProps<HTMLAnchorElement>;
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 | declare const Link: React.FC<LinkProps>;
|
30 |
|
31 | export default Link;
|