make label italic

This commit is contained in:
sanish-bruno
2026-01-01 19:27:54 +05:30
parent e7da3e590f
commit afccfaa12e
2 changed files with 5 additions and 1 deletions

View File

@@ -41,6 +41,10 @@ const StyledWrapper = styled.div`
line-height: 1;
}
.label {
font-style: italic;
}
svg {
flex-shrink: 0;
}

View File

@@ -88,7 +88,7 @@ const FilePickerEditor = ({
case 'labelAndIcon':
return (
<>
<span>{displayLabel}</span>
<span className="label">{displayLabel}</span>
<IconComponent size={16} />
</>
);