Skip to content

Commit

Permalink
Fix plus. (#22704)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmussen committed Jun 16, 2020
1 parent 78ea4fd commit 3f65d98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

// Animate appearance.
.block-list-appender__toggle {
padding: 0;
opacity: 1;
transform: scale(1);
transition: all 0.1s ease;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import classnames from 'classnames';
import { Button, Tooltip, VisuallyHidden } from '@wordpress/components';
import { forwardRef } from '@wordpress/element';
import { _x, sprintf } from '@wordpress/i18n';
import { Icon, create } from '@wordpress/icons';
import { Icon, plus } from '@wordpress/icons';

/**
* Internal dependencies
Expand Down Expand Up @@ -71,7 +71,7 @@ function ButtonBlockAppender(
{ ! hasSingleBlockType && (
<VisuallyHidden as="span">{ label }</VisuallyHidden>
) }
<Icon icon={ create } />
<Icon icon={ plus } />
{ hasSingleBlockType && (
<span className="block-editor-button-block-appender__label">
{ label }{ ' ' }
Expand Down

0 comments on commit 3f65d98

Please sign in to comment.