Web: Components: LinkRow: fixed icon

This commit is contained in:
Nikita Gopienko 2024-08-29 17:25:47 +03:00
parent ccebb14019
commit 153bae389c
2 changed files with 6 additions and 0 deletions

View File

@ -143,6 +143,11 @@ const StyledLinkRow = styled.div<{ isExpired?: boolean; isDisabled?: boolean }>`
min-width: 16px;
min-height: 16px;
}
.link-actions_copy-icon {
min-width: 16px;
min-height: 16px;
}
}
.loader {

View File

@ -174,6 +174,7 @@ const LinkRow = ({
<div className="link-actions">
{!isArchiveFolder && (
<IconButton
className="link-actions_copy-icon"
size={16}
iconName={CopyIcon}
onClick={() => onCopyLink(link)}