@wordpress/block-library
Version:
Block library for the WordPress editor.
17 lines (15 loc) • 387 B
JavaScript
/**
* WordPress dependencies
*/
import { SVG, Path } from '@wordpress/primitives';
export default (
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M19.5 12.75L9.5 12.75L9.5 11.25L19.5 11.25L19.5 12.75Z"
fill="currentColor"
/>
<Path d="M4.5 9.5L8.5 12L4.5 14.5L4.5 9.5Z" fill="currentColor" />
</SVG>
);