Icon.tsx
1 year ago
block.json
1 year ago
edit.tsx
1 year ago
editor.scss
1 year ago
index.tsx
1 year ago
render.php
1 year ago
Icon.tsx
17 lines
| 1 | import {Path, SVG} from "@wordpress/components"; |
| 2 | |
| 3 | export function GalleryIcon() { |
| 4 | return ( |
| 5 | <SVG |
| 6 | xmlns="http://www.w3.org/2000/svg" |
| 7 | viewBox="0 0 24 24" |
| 8 | width="24" |
| 9 | height="24" |
| 10 | aria-hidden="true" |
| 11 | focusable="false" |
| 12 | > |
| 13 | <Path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.5h14c.3 0 .5.2.5.5v8.4l-3-2.9c-.3-.3-.8-.3-1 0L11.9 14 9 12c-.3-.2-.6-.2-.8 0l-3.6 2.6V5c-.1-.3.1-.5.4-.5zm14 15H5c-.3 0-.5-.2-.5-.5v-2.4l4.1-3 3 1.9c.3.2.7.2.9-.1L16 12l3.5 3.4V19c0 .3-.2.5-.5.5z"></Path> |
| 14 | </SVG> |
| 15 | ); |
| 16 | } |
| 17 |