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