Skip to content

Commit

Permalink
Update drag handle footprint. (#39342)
Browse files Browse the repository at this point in the history
* Update drag handle footprint.

* Wrap changelog.
  • Loading branch information
jasmussen committed Mar 10, 2022
1 parent f9c2838 commit 499d5a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/icons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Breaking Changes

- Changed `dragHandle` footprint from 18x18 to 24x24 to match other icons. ([#39342](https://github.com/WordPress/gutenberg/pull/39342))

## 7.0.0 (2022-02-23)

### New Features
Expand Down
8 changes: 4 additions & 4 deletions packages/icons/src/library/drag-handle.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import { SVG, Path } from '@wordpress/primitives';

const dragHandle = (
<SVG
width="18"
height="18"
width="24"
height="24"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 18 18"
viewBox="0 0 24 24"
>
<Path d="M5 4h2V2H5v2zm6-2v2h2V2h-2zm-6 8h2V8H5v2zm6 0h2V8h-2v2zm-6 6h2v-2H5v2zm6 0h2v-2h-2v2z" />
<Path d="M8 7h2V5H8v2zm0 6h2v-2H8v2zm0 6h2v-2H8v2zm6-14v2h2V5h-2zm0 8h2v-2h-2v2zm0 6h2v-2h-2v2z" />
</SVG>
);

Expand Down

0 comments on commit 499d5a8

Please sign in to comment.