@wordpress/block-library
Version:
Block library for the WordPress editor.
29 lines (27 loc) • 661 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 9.5L9.5 9.5L9.5 8L19.5 8L19.5 9.5Z"
fill="currentColor"
/>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M19.5 13L9.5 13L9.5 11.5L19.5 11.5L19.5 13Z"
fill="currentColor"
/>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M19.5 16.3999L9.5 16.3999L9.5 14.8999L19.5 14.8999L19.5 16.3999Z"
fill="currentColor"
/>
<Path d="M4.5 6.25L8.5 8.75L4.5 11.25L4.5 6.25Z" fill="currentColor" />
</SVG>
);