Skip to content

Commit

Permalink
Remove useless css class. Icon was using the default nommal which i…
Browse files Browse the repository at this point in the history
…s `w-4`
  • Loading branch information
andresgutgon committed Sep 6, 2024
1 parent ee304cb commit 769e3b6
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,14 @@ export function TreeToolbar() {
variant='ghost'
size='none'
lookDisabled={isMerged}
iconProps={{
name: 'folderPlus',
className: 'w-5 h-5',
}}
iconProps={{ name: 'folderPlus' }}
onClick={onClick(EntityType.Folder)}
/>
<Button
variant='ghost'
size='none'
lookDisabled={isMerged}
iconProps={{
name: 'filePlus',
className: 'w-5 h-5',
}}
iconProps={{ name: 'filePlus' }}
onClick={onClick(EntityType.File)}
/>
</div>
Expand Down

0 comments on commit 769e3b6

Please sign in to comment.