react-icon-library
Version:
A library of SVG icons for use in reactJS projects
10 lines • 410 B
JavaScript
import React from 'react';
var CaretRight2 = function () {
return (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="#4d4d4d" strokeWidth="3" aria-hidden={true} focusable={false}>
<title>caret</title>
<path d="M4.94 22.94l12-12"/>
<path d="M16.94 13.06l-12-12"/>
</svg>);
};
export default CaretRight2;
//# sourceMappingURL=CaretRight2.js.map