Skip to content

Commit 00ba8aa

Browse files
committed
add href value
1 parent b9f4621 commit 00ba8aa

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/components/Link/Link.stories.jsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ const Template = (args) => <Link {...args} />
1313

1414
export const Default = Template.bind({})
1515
Default.args = {
16-
href: '',
16+
href: '/',
1717
label: 'I am a link',
1818
style: {},
1919
}
2020

2121
export const Alternate = Template.bind({})
2222
Alternate.args = {
23-
href: '',
23+
href: '/',
2424
icon: 'fa-envelope',
2525
label: 'No underline!',
2626
style: {
@@ -31,11 +31,8 @@ Alternate.args = {
3131

3232
export const NoLabel = Template.bind({})
3333
NoLabel.args = {
34-
href: '',
34+
href: '/',
3535
icon: 'fa-download',
3636
label: '',
37-
style: {
38-
textDecoration: 'none',
39-
color: '#AS8908',
40-
},
37+
style: {},
4138
}

0 commit comments

Comments
 (0)