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