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, 5 insertions, 3 deletions
diff --git a/packages/website/ts/@next/components/definition.tsx b/packages/website/ts/@next/components/definition.tsx
index 965466f60..8adef8d54 100644
--- a/packages/website/ts/@next/components/definition.tsx
+++ b/packages/website/ts/@next/components/definition.tsx
@@ -9,7 +9,7 @@ interface Action {
label: string;
url?: string;
onClick?: () => void;
- useAnchorTag?: boolean;
+ shouldUseAnchorTag?: boolean;
}
interface Props {
@@ -41,7 +41,9 @@ export const Definition = (props: Props) => (
</Heading>
{typeof props.description === 'string' ? (
- <Paragraph isMuted={true} size={props.fontSize || 'default'}>{props.description}</Paragraph>
+ <Paragraph isMuted={true} size={props.fontSize || 'default'}>
+ {props.description}
+ </Paragraph>
) : (
<>{props.description}</>
)}
@@ -55,7 +57,7 @@ export const Definition = (props: Props) => (
onClick={item.onClick}
isWithArrow={true}
isAccentColor={true}
- useAnchorTag={item.useAnchorTag}
+ shouldUseAnchorTag={item.shouldUseAnchorTag}
target="_blank"
>
{item.label}