| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
const pencil = ( |
| 4 |
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| 5 |
<title>{__('Pencil Icon', 'extendify-local')}</title> |
| 6 |
<path d="M2.99902 21.0025H6.74902L17.809 9.9425L14.059 6.1925L2.99902 17.2525V21.0025ZM4.99902 18.0825L14.059 9.0225L14.979 9.9425L5.91902 19.0025H4.99902V18.0825Z" /> |
| 7 |
<path d="M18.369 3.2925C17.979 2.9025 17.349 2.9025 16.959 3.2925L15.129 5.1225L18.879 8.8725L20.709 7.0425C21.099 6.6525 21.099 6.0225 20.709 5.6325L18.369 3.2925Z" /> |
| 8 |
</svg> |
| 9 |
); |
| 10 |
|
| 11 |
export default pencil; |
| 12 |
|