react-icon-library
Version:
A library of SVG icons for use in reactJS projects
10 lines • 405 B
JavaScript
import React from 'react';
var CaretDown2 = 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="M1.06 4.94l12 12"/>
<path d="M10.94 16.94l12-12"/>
</svg>);
};
export default CaretDown2;
//# sourceMappingURL=CaretDown2.js.map