We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d9512 commit f3c5f33Copy full SHA for f3c5f33
src/Lumi/Components2/Link.purs
@@ -24,6 +24,7 @@ type LinkProps
24
, navigate :: Maybe (Effect Unit)
25
, tabIndex :: Int
26
, target :: Maybe String
27
+ , rel :: Maybe String
28
, download :: Maybe String
29
, content :: Array JSX
30
, className :: String
@@ -41,6 +42,7 @@ link =
41
42
, navigate: Nothing
43
, tabIndex: 0
44
, target: Nothing
45
+ , rel: Nothing
46
, download: Nothing
47
, content: []
48
}
@@ -64,6 +66,7 @@ link =
64
66
(handler stopPropagation mempty)
65
67
syntheticEvent
68
, target: toNullable props.target
69
+ , rel: toNullable props.rel
70
, tabIndex: props.tabIndex
71
, download: toNullable props.download
72
0 commit comments