# extendify/3.1.1/src/Draft/svg/Trash.jsx

Extendify, version 3.1.1. 11 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.1/code/src/Draft/svg/Trash.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.1.1/raw/src/Draft/svg/Trash.jsx
- Modified: 2026-02-18T22:27:14+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/3.1.1/code/src/Draft/svg/Trash.jsx#L10-L20`.

```jsx
import { __ } from '@wordpress/i18n';

const trash = (
	<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
		<title>{__('Trash Icon', 'extendify-local')}</title>
		<path d="M16 9V19H8V9H16ZM14.5 3H9.5L8.5 4H5V6H19V4H15.5L14.5 3ZM18 7H6V19C6 20.1 6.9 21 8 21H16C17.1 21 18 20.1 18 19V7Z" />
	</svg>
);

export default trash;

```
