Skip to content

Commit

Permalink
Use default colour for block icon (#21618)
Browse files Browse the repository at this point in the history
The Tiled Gallery's icon color is not the same as other blocks. By removing 'fill="currentColor"' in this PR, the block icon will go back to the general default color that's used for all block icons, thus restoring consistency.
  • Loading branch information
Siobhan Bamber authored Nov 5, 2021
1 parent fce473f commit 0cc4eb2
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,7 @@ export const name = 'tiled-gallery';

export const icon = (
<SVG viewBox="0 0 24 24" width={ 24 } height={ 24 }>
<Path
fill="currentColor"
d="M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z"
/>
<Path d="M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z" />
</SVG>
);

Expand Down

0 comments on commit 0cc4eb2

Please sign in to comment.