Skip to content

Commit 2a43a5b

Browse files
fix(Link): remove non-standard html props flow down
1 parent 027aed0 commit 2a43a5b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/Link/web/Link.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import styled from 'styled-components';
23

34
const styles = {
@@ -31,7 +32,17 @@ const styles = {
3132
},
3233
};
3334

34-
const Link = styled.a`
35+
const Link = styled(
36+
({
37+
color,
38+
children,
39+
...props
40+
}) => (
41+
<a {...props}>
42+
{children}
43+
</a>
44+
),
45+
)`
3546
color: ${styles.color};
3647
text-decoration: none;
3748
cursor: pointer;

0 commit comments

Comments
 (0)