fix: Use caption variant in IconLinkVertical icon label
Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
committed by
Carlos Lopez
parent
4ae7842953
commit
1a36e2f06d
@@ -82,7 +82,11 @@ export function IconLinkVertical({
|
||||
return (
|
||||
<Box title={title} className={classnames(classes.link, classes.disabled)}>
|
||||
{icon}
|
||||
<Typography variant="body2" component="span" className={classes.label}>
|
||||
<Typography
|
||||
variant="caption"
|
||||
component="span"
|
||||
className={classes.label}
|
||||
>
|
||||
{label}
|
||||
</Typography>
|
||||
</Box>
|
||||
@@ -97,7 +101,7 @@ export function IconLinkVertical({
|
||||
onClick={onClick}
|
||||
>
|
||||
{icon}
|
||||
<Typography variant="body2" component="span" className={classes.label}>
|
||||
<Typography variant="caption" component="span" className={classes.label}>
|
||||
{label}
|
||||
</Typography>
|
||||
</Link>
|
||||
|
||||
Reference in New Issue
Block a user