RecentChangesIcon.jsx 769 B

123456789101112131415161718192021
  1. import React from 'react';
  2. const RecentChanges = () => (
  3. <svg
  4. xmlns="http://www.w3.org/2000/svg"
  5. viewBox="0 0 14 14"
  6. >
  7. <rect width="14" height="14" fillOpacity="0" />
  8. <path
  9. d="M7.94.94A6.13,6.13,0,0,0,1.89,7v.1L.67,5.89a.38.38,0,0,0-.55,0,.39.39,0,0,0,0,.56L2.36,8.69,4.6,6.45a.4.4,0,0,0,0-.56.39.39,0,0,0-.56,
  10. 0L2.68,7.25V7A5.33,5.33,0,0,1,7.94,1.73,5.33,5.33,0,0,1,13.21,7a5.34,5.34,0,0,1-5.27,5.27H7.86A5,5,0,0,1,4,10.38a.4.4,0,0,0-.55-.07.4.4,0,
  11. 0,0-.07.56,5.83,5.83,0,0,0,4.52,2.19H8A6.13,6.13,0,0,0,14,7,6.13,6.13,0,0,0,7.94.94Z"
  12. />
  13. <path
  14. d="M7.94,2.83a.4.4,0,0,0-.39.4V7.37L10,8.92a.37.37,0,0,0,.21.06.4.4,0,0,0,.21-.73L8.34,6.93V3.23A.4.4,0,0,0,7.94,2.83Z"
  15. />
  16. </svg>
  17. );
  18. export default RecentChanges;