# extendify/0.3.1/src/components/icons/library/layouts.js

Extendify, version 0.3.1. 21 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.3.1/code/src/components/icons/library/layouts.js
- Raw: https://pluginprobe.com/plugins/extendify/0.3.1/raw/src/components/icons/library/layouts.js
- Modified: 2022-01-06T18:08:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/0.3.1/code/src/components/icons/library/layouts.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
import { Path, SVG, G } from '@wordpress/primitives'

const layouts = (
    <SVG
        fill="none"
        height="24"
        viewBox="0 0 24 24"
        width="24"
        xmlns="http://www.w3.org/2000/svg">
        <G stroke="currentColor" strokeWidth="1.5">
            <Path d="m6 4.75h12c.6904 0 1.25.55964 1.25 1.25v12c0 .6904-.5596 1.25-1.25 1.25h-12c-.69036 0-1.25-.5596-1.25-1.25v-12c0-.69036.55964-1.25 1.25-1.25z" />
            <Path d="m9.25 19v-14" />
        </G>
    </SVG>
)

export default layouts

```
