select-arrow.svg 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  2. - License, v. 2.0. If a copy of the MPL was not distributed with this
  3. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  4. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 16 16">
  5. <defs>
  6. <style>
  7. use:not(:target) {
  8. display: none;
  9. }
  10. #light {
  11. fill: #999797;
  12. }
  13. #light-hovered {
  14. fill: #393f4c; /* --theme-body-color */
  15. }
  16. #light-selected {
  17. fill: #3b3b3b;
  18. }
  19. #dark {
  20. fill: #c6ccd0;
  21. }
  22. #dark-hovered {
  23. fill: #dde1e4;
  24. }
  25. #dark-selected {
  26. fill: #fcfcfc;
  27. }
  28. </style>
  29. <path id="base-path" d="M7.9 16.3c-.3 0-.6-.1-.8-.4l-4-4.8c-.2-.3-.3-.5-.1-.8.1-.3.5-.3.9-.3h8c.4 0 .7 0 .9.3.2.4.1.6-.1.9l-4 4.8c-.2.3-.5.3-.8.3zM7.8 0c.3 0 .6.1.7.4L12.4 5c.2.3.3.4.1.7-.1.4-.5.3-.8.3H3.9c-.4 0-.8.1-.9-.2-.2-.4-.1-.6.1-.9L7 .3c.2-.3.5-.3.8-.3z"/>
  30. </defs>
  31. <use xlink:href="#base-path" id="light"/>
  32. <use xlink:href="#base-path" id="light-hovered"/>
  33. <use xlink:href="#base-path" id="light-selected"/>
  34. <use xlink:href="#base-path" id="dark"/>
  35. <use xlink:href="#base-path" id="dark-hovered"/>
  36. <use xlink:href="#base-path" id="dark-selected"/>
  37. </svg>