icons.tsx 684 B

1234567891011121314151617181920212223
  1. // Copied from emoji-mart for consistency with emoji picker and since
  2. // they don't export the icons in the package
  3. export const loupeIcon = (
  4. <svg
  5. xmlns='http://www.w3.org/2000/svg'
  6. viewBox='0 0 20 20'
  7. width='13'
  8. height='13'
  9. >
  10. <path d='M12.9 14.32a8 8 0 1 1 1.41-1.41l5.35 5.33-1.42 1.42-5.33-5.34zM8 14A6 6 0 1 0 8 2a6 6 0 0 0 0 12z' />
  11. </svg>
  12. );
  13. export const deleteIcon = (
  14. <svg
  15. xmlns='http://www.w3.org/2000/svg'
  16. viewBox='0 0 20 20'
  17. width='13'
  18. height='13'
  19. >
  20. <path d='M10 8.586L2.929 1.515 1.515 2.929 8.586 10l-7.071 7.071 1.414 1.414L10 11.414l7.071 7.071 1.414-1.414L11.414 10l7.071-7.071-1.414-1.414L10 8.586z' />
  21. </svg>
  22. );