UNPKG
acres-ui-test2
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
Acres React component library
acres-ui-test2
/
build
/
components
/
link
/
Link.d.ts
12 lines
(11 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
'./Link.scss'
;
interface
LinkProps
{
children
:
string
;
disabled
?:
boolean
;
href
:
string
;
newTab
?:
boolean
;
small
?:
boolean
; }
export
declare
const
Link
:
React
.
FC
<
LinkProps
>;
export
{};