mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-01 17:27:53 +00:00
17e9e30454
This introduces a new `StatusIcon` component to the component library, including various icon assets. The component can be used to render icons in different colors and rotations. It's also one of the atomic components that can be used to build other more complex components like icon buttons. Usage: ``` StatusIcon { icon: "arrow-right" // name of asset file in `ui/shared/status/assets/img/icons width: 24 // default: 24 height 24 // default: 24 color: "red" // default: asset file color rotation: 0 // default: 0 } ``` Closes #2330
4 lines
536 B
XML
4 lines
536 B
XML
<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="M6.46967 14.5303C6.76256 14.8232 7.23744 14.8232 7.53033 14.5303L11.6464 10.4142C11.8417 10.219 12.1583 10.219 12.3536 10.4142L16.4697 14.5303C16.7626 14.8232 17.2374 14.8232 17.5303 14.5303C17.8232 14.2374 17.8232 13.7626 17.5303 13.4697L12.8839 8.82322C12.3957 8.33507 11.6043 8.33507 11.1161 8.82322L6.46967 13.4697C6.17678 13.7626 6.17678 14.2374 6.46967 14.5303Z" fill="black"/>
|
|
</svg>
|