Skip to content

Commit

Permalink
Fix/block meta icon prop errors (#40710)
Browse files Browse the repository at this point in the history
* Fix hyphenated prop errors
* Correct wrong icon export name
  • Loading branch information
danieliser authored Apr 29, 2022
1 parent 9d8a2c3 commit 012c86c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/icons/src/library/block-meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
*/
import { SVG, Path } from '@wordpress/primitives';

const blockDefault = (
const blockMeta = (
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fill-rule="evenodd"
fillRule="evenodd"
d="M8.95 11.25H4v1.5h4.95v4.5H13V18c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2h-3c-1.1 0-2 .9-2 2v.75h-2.55v-7.5H13V9c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3c-1.1 0-2 .9-2 2v.75H8.95v4.5ZM14.5 15v3c0 .3.2.5.5.5h3c.3 0 .5-.2.5-.5v-3c0-.3-.2-.5-.5-.5h-3c-.3 0-.5.2-.5.5Zm0-6V6c0-.3.2-.5.5-.5h3c.3 0 .5.2.5.5v3c0 .3-.2.5-.5.5h-3c-.3 0-.5-.2-.5-.5Z"
clip-rule="evenodd"
clipRule="evenodd"
/>
</SVG>
);

export default blockDefault;
export default blockMeta;

0 comments on commit 012c86c

Please sign in to comment.