Skip to content

Commit

Permalink
Library: Update icons in the creation menu (#52108)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskoster authored Jun 30, 2023
1 parent 87b002d commit 908fbff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/edit-site/src/components/add-new-pattern/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { DropdownMenu } from '@wordpress/components';
import { useState } from '@wordpress/element';
import { __ } from '@wordpress/i18n';
import { plus, header, file } from '@wordpress/icons';
import { plus, symbol, symbolFilled } from '@wordpress/icons';
import { privateApis as routerPrivateApis } from '@wordpress/router';

/**
Expand Down Expand Up @@ -56,12 +56,12 @@ export default function AddNewPattern() {
<DropdownMenu
controls={ [
{
icon: header,
icon: symbolFilled,
onClick: () => setShowTemplatePartModal( true ),
title: __( 'Create template part' ),
},
{
icon: file,
icon: symbol,
onClick: () => setShowPatternModal( true ),
title: __( 'Create pattern' ),
},
Expand Down

0 comments on commit 908fbff

Please sign in to comment.