ente/src/components/icons/NavigateNext.tsx

23 lines
522 B
TypeScript
Raw Normal View History

import React from 'react';
export default function NavigateNext(props) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
height="40"
viewBox="0 0 24 24"
width="24px"
fill="currentColor"
2021-08-13 02:38:38 +00:00
{...props}>
2021-05-29 06:27:52 +00:00
<path d="M0 0h24v24H0z" fill="none" />
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" />
</svg>
);
}
NavigateNext.defaultProps = {
height: 24,
width: 24,
viewBox: '0 0 24 24',
};