10 lines
284 B
React
10 lines
284 B
React
/**
|
|
* WordPress dependencies
|
|
*/
|
|
const { Path, SVG } = wp.components;
|
|
|
|
export default (
|
|
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
<Path d="M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z" />
|
|
</SVG>
|
|
); |