From 165d75fa5bac42a0898942d912ba9c3a06299ca1 Mon Sep 17 00:00:00 2001 From: Kjell Reigstad Date: Tue, 26 Feb 2019 10:47:55 -0500 Subject: [PATCH] Correct visual error in the quote block icon (#14091) Fixes #13659. The current quote block icon appears to have some over-simplified edges. This replaces it with a crisper version. --- packages/block-library/src/quote/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/block-library/src/quote/index.js b/packages/block-library/src/quote/index.js index 6a2506eb5f2e0f..43c380be09f3ab 100644 --- a/packages/block-library/src/quote/index.js +++ b/packages/block-library/src/quote/index.js @@ -15,7 +15,7 @@ import { RichText, } from '@wordpress/editor'; import { join, split, create, toHTMLString } from '@wordpress/rich-text'; -import { G, Path, SVG } from '@wordpress/components'; +import { Path, SVG } from '@wordpress/components'; const ATTRIBUTE_QUOTE = 'value'; const ATTRIBUTE_CITATION = 'citation'; @@ -44,7 +44,7 @@ export const name = 'core/quote'; export const settings = { title: __( 'Quote' ), description: __( 'Give quoted text visual emphasis. "In quoting others, we cite ourselves." — Julio Cortázar' ), - icon: , + icon: , category: 'common', keywords: [ __( 'blockquote' ) ],