-
Notifications
You must be signed in to change notification settings - Fork 8
Description
We currently have our own hand written icons for expanding/collapsing all elements in an IxTree and also in another view some IxBlinds. We use the following with IxIconButton.
It would be nice to have something standard provided by siemens/ix-icons. We don't mind if its a little different.
For reference these are the svgs of the image above.
export const expandAllIcon = "data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path fill-rule='evenodd' clip-rule='evenodd' d='M19 9H9V19H19V9ZM7 7V21H21V7H7Z' fill='#000028'/> <path d='M17 13H11V15H17V13Z' fill='#000028'/> <path d='M13 11V17H15V11H13Z' fill='#000028'/> <path fill-rule='evenodd' clip-rule='evenodd' d='M5 5H15V6H17V3H3V17H6V15H5V5Z' fill='#000028'/> </svg>";
export const collapseAllIcon = "data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'> <path fill-rule='evenodd' clip-rule='evenodd' d='M19 9H9V19H19V9ZM7 7V21H21V7H7Z' fill='#000028'/> <path d='M17 13H11V15H17V13Z' fill='#000028'/> <path fill-rule='evenodd' clip-rule='evenodd' d='M5 5H15V6H17V3H3V17H6V15H5V5Z' fill='#000028'/> </svg>";
