Add typescript support for title

This commit is contained in:
Adam Harvey
2020-11-17 13:45:11 -05:00
parent 8b7737d0b8
commit 5efc00c6a6
@@ -23,6 +23,7 @@ export type IconLinkVerticalProps = {
icon?: React.ReactNode;
href?: string;
disabled?: boolean;
title?: string;
label: string;
};
@@ -57,6 +58,7 @@ export function IconLinkVertical({
<Link
className={classnames(classes.link, classes.disabled)}
underline="none"
title={props.title}
{...props}
>
{icon}