diff --git a/apps/web/src/components/Docs/LinkTree/Link/styles.ts b/apps/web/src/components/Docs/LinkTree/Link/styles.ts index 588d120..f26dba2 100644 --- a/apps/web/src/components/Docs/LinkTree/Link/styles.ts +++ b/apps/web/src/components/Docs/LinkTree/Link/styles.ts @@ -49,6 +49,8 @@ export const Button = styled('a', { }, }) +type ButtonType = typeof Button + export type ButtonProps = { href: string -} & typeof Button['defaultProps'] +} & ButtonType['defaultProps']