14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from '@wordpress/components';
|
||
|
|
||
|
const notes = (
|
||
|
<SVG xmlns="http://www.w3.org/2000/SVG" viewBox="0 0 24 24">
|
||
|
<path fill="none" d="M0 0h24v24H0V0z" />
|
||
|
<path d="M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" />
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default notes;
|