Skip to content

Commit

Permalink
Tiled Gallery: Add icon size and currentColor icon (#29942)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal authored Jan 9, 2019
1 parent 33d5456 commit 8bdd403
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions client/gutenberg/extensions/tiled-gallery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,11 @@ const blockAttributes = {
export const name = 'tiled-gallery';

export const icon = (
<SVG viewBox="0 0 24 24">
<Path fill="none" d="M0 0h24v24H0V0z" />
<Path d="M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z" />
<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"
/>
</SVG>
);

Expand Down

0 comments on commit 8bdd403

Please sign in to comment.