Skip to content

Commit 3b4477d

Browse files
committed
fix(Link): missing anchor HTML element attributes
1 parent fb9f6f3 commit 3b4477d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Components/Chakra__Link.res

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ open Chakra__MakeProps
33
@react.component @module("@chakra-ui/react")
44
external make: (
55
~children: React.element=?,
6+
/**
7+
Generic HTML Element <a/>
8+
**/
9+
~download: string=?,
10+
~href: string=?,
11+
~hrefLang: string=?,
12+
~ping: string=?,
13+
~rel: HTML.LinkTypes.t=?,
14+
~referrerpolicy: HTML.ReferrerPolicy.t=?,
15+
~target: HTML.Target.t=?,
16+
~_type: string=?,
17+
~isExternal: bool=?,
618
/**
719
Component Props {Link}
820
**/

0 commit comments

Comments
 (0)