block-variation-explorer
3 months ago
block-variation-list
3 months ago
create-variation
3 months ago
save-button
3 months ago
icons.js
3 months ago
index.js
3 months ago
utils.js
3 months ago
icons.js
17 lines
| 1 | /** |
| 2 | * WordPress dependencies |
| 3 | */ |
| 4 | import { Path, SVG } from '@wordpress/components'; |
| 5 | |
| 6 | export const MenuItemIcon = ( |
| 7 | <SVG width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 8 | <Path d="M20.3 6.6h-4.8c-.1 0-.1 0-.1.1l-.4 1c0 .1 0 .2.1.2h1.8c.1 0 .2.2.1.3l-2.9 3.2 1.5 4.9c0 .1 0 .2-.1.2H14c-.1 0-.1 0-.1-.1l-.8-2.5c0-.2-.2-.2-.3 0l-.6 1.8v.1l.6 2.2c0 .1.1.1.1.1h4.8c.1 0 .2-.1.1-.2L16 11.6v-.2l4.4-4.6c.2 0 .1-.2-.1-.2z" /> |
| 9 | <Path |
| 10 | d="M14.7 4h-2.9c-.1 0-.1 0-.1.1l-.4 1c0 .1 0 .2.1.2h1.2c.1 0 .2.1.1.2l-3.4 9.8c-.1.1-.2.1-.3 0l-2.4-7c0-.1 0-.2.1-.2H8c.1 0 .1 0 .1.1l.9 2.6c.1.1.2.1.3 0l1.4-4c0-.1 0-.2-.1-.2H4.7c-.1 0-.2.1-.1.2l4.5 13.1c.1.1.2.1.3 0l5.5-15.7c0-.1-.1-.2-.2-.2z" |
| 11 | fill="#D8141C" |
| 12 | /> |
| 13 | </SVG> |
| 14 | ); |
| 15 | |
| 16 | export const VariationIcon = 'embed-generic'; |
| 17 |