aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/definition.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components/definition.tsx')
-rw-r--r--packages/website/ts/@next/components/definition.tsx8
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/website/ts/@next/components/definition.tsx b/packages/website/ts/@next/components/definition.tsx
index cab153361..e19f041c7 100644
--- a/packages/website/ts/@next/components/definition.tsx
+++ b/packages/website/ts/@next/components/definition.tsx
@@ -1,7 +1,7 @@
import * as React from 'react';
import styled from 'styled-components';
-import {Link} from 'ts/@next/components/button';
+import { Button } from 'ts/@next/components/button';
import { Icon } from 'ts/@next/components/icon';
import { Paragraph } from 'ts/@next/components/text';
@@ -42,15 +42,13 @@ export const Definition = (props: Props) => (
{props.actions &&
<LinkWrap>
{props.actions.map((item, index) => (
- <Link
+ <Button
href={item.url}
isWithArrow={true}
- isTransparent={true}
- isNoBorder={true}
isAccentColor={true}
>
{item.label}
- </Link>
+ </Button>
))}
</LinkWrap>
}