Skip to content

Commit

Permalink
Update Dashicons with new full-width icon
Browse files Browse the repository at this point in the history
This PR updates Dashicons, and adds a new full-width icon. This renames the old icon to "wide". See also discussion in #546
  • Loading branch information
jasmussen committed Jun 2, 2017
1 parent a5c1487 commit 58b87cb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/dashicon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class Dashicon extends wp.element.Component {
break;
case 'align-full-width':
title = 'Align Full Width';
path = 'M5 5h10V3H5v2zm12 8V7H3v6h14zM5 17h10v-2H5v2z';
path = 'M17 13V3H3v10h14zM5 17h10v-2H5v2z';
break;
case 'align-left':
title = 'Align Left';
Expand All @@ -113,6 +113,10 @@ export default class Dashicon extends wp.element.Component {
title = 'Align Right';
path = 'M3 5h14V3H3v2zm0 4h3V7H3v2zm14 4V7H8v6h9zM3 13h3v-2H3v2zm0 4h14v-2H3v2z';
break;
case 'align-wide':
title = 'Align Wide';
path = 'M5 5h10V3H5v2zm12 8V7H3v6h14zM5 17h10v-2H5v2z';
break;
case 'analytics':
title = 'Analytics';
path = 'M18 18V2H2v16h16zM16 5H4V4h12v1zM7 7v3h3c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3zm1 2V7c1.1 0 2 .9 2 2H8zm8-1h-4V7h4v1zm0 3h-4V9h4v2zm0 2h-4v-1h4v1zm0 3H4v-1h12v1z';
Expand Down

0 comments on commit 58b87cb

Please sign in to comment.