From 6a8f592e25e61c30e34c325ea03c33ec8fc0b1ae Mon Sep 17 00:00:00 2001 From: Joen Asmussen Date: Thu, 27 Apr 2017 10:34:16 +0200 Subject: [PATCH] Dashicons: Update to latest version. This includes a new `align-full-width` icon. Heads up https://github.com/WordPress/gutenberg/pull/518 Dashicons PR here: https://github.com/WordPress/dashicons/pull/180 --- editor/components/dashicon/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/components/dashicon/index.js b/editor/components/dashicon/index.js index 07f5cebf40b546..d03623864c4c81 100644 --- a/editor/components/dashicon/index.js +++ b/editor/components/dashicon/index.js @@ -97,6 +97,10 @@ export default class Dashicon extends wp.element.Component { title = 'Align Center'; path = 'M3 5h14V3H3v2zm12 8V7H5v6h10zM3 17h14v-2H3v2z'; break; + case 'align-full-width': + title = 'Align Full Width'; + path = 'M5 5h10V3H5v2zm12 8V7H3v6h14zM5 17h10v-2H5v2z'; + break; case 'align-left': title = 'Align Left'; path = 'M3 5h14V3H3v2zm9 8V7H3v6h9zm2-4h3V7h-3v2zm0 4h3v-2h-3v2zM3 17h14v-2H3v2z';