Skip to content

Commit

Permalink
Correct visual error in the quote block icon (#14091)
Browse files Browse the repository at this point in the history
Fixes #13659.

The current quote block icon appears to have some over-simplified edges. This replaces it with a crisper version.
  • Loading branch information
kjellr committed Feb 26, 2019
1 parent e0adbe0 commit 63832a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/block-library/src/quote/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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: <SVG viewBox="0 0 24 24" xmlns="http:https://www.w3.org/2000/svg"><Path fill="none" d="M0 0h24v24H0V0z" /><G><Path d="M19 18h-6l2-4h-2V6h8v7l-2 5zm-2-2l2-3V8h-4v4h4l-2 4zm-8 2H3l2-4H3V6h8v7l-2 5zm-2-2l2-3V8H5v4h4l-2 4z" /></G></SVG>,
icon: <SVG viewBox="0 0 24 24" xmlns="http:https://www.w3.org/2000/svg"><Path fill="none" d="M0 0h24v24H0V0z" /><Path d="M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z" /></SVG>,
category: 'common',
keywords: [ __( 'blockquote' ) ],

Expand Down

0 comments on commit 63832a2

Please sign in to comment.