What problem does this address?
The current @wordpress/icons package doesn’t include an arrow-up-right icon, which limits options for anyone who needs one. This is especially useful as a more minimalistic version of the "external" icon.
The package also doesn't include an arrow-down-left icon, we can add this to fully complete the current series of arrow icons.
What is your proposed solution?
Add an arrow-up-right icon to the package so it’s easy for anyone to use. I’ve attached the SVG design, which follows the WordPress icon design guidelines.
SVG arrow-up-right:
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M10 6H18V14H16.5V8.5L7 18L6 17L15.5 7.5H10V6Z" fill="#1E1E1E"/>
</svg>
SVG arrow-down-left:
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M14 18H6V10H7.5V15.5L17 6L18 7L8.5 16.5H14V18Z" fill="#1E1E1E"/>
</svg>
What problem does this address?
The current @wordpress/icons package doesn’t include an arrow-up-right icon, which limits options for anyone who needs one. This is especially useful as a more minimalistic version of the "external" icon.
The package also doesn't include an arrow-down-left icon, we can add this to fully complete the current series of arrow icons.
What is your proposed solution?
Add an arrow-up-right icon to the package so it’s easy for anyone to use. I’ve attached the SVG design, which follows the WordPress icon design guidelines.
SVG arrow-up-right:
SVG arrow-down-left: