aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/buttons/button-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/buttons/button-link.tsx')
-rw-r--r--src/components/atoms/buttons/button-link.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/atoms/buttons/button-link.tsx b/src/components/atoms/buttons/button-link.tsx
index 77a7f7b..906fa76 100644
--- a/src/components/atoms/buttons/button-link.tsx
+++ b/src/components/atoms/buttons/button-link.tsx
@@ -1,5 +1,5 @@
import Link from 'next/link';
-import { FC } from 'react';
+import { FC, ReactNode } from 'react';
import styles from './buttons.module.scss';
export type ButtonLinkProps = {
@@ -8,6 +8,10 @@ export type ButtonLinkProps = {
*/
'aria-label'?: string;
/**
+ * The button link body.
+ */
+ children: ReactNode;
+ /**
* Set additional classnames to the button link.
*/
className?: string;