Files
lucide/packages/react/src/icons/chevrons-left.js
John Letey d652e795d6 feat: Add react package (#4)
* chore: Organise

* feat: Add `react` package

* refactor: Remove unneeded char
2020-06-13 12:52:10 +01:00

35 lines
821 B
JavaScript

import React, { forwardRef } from "react";
import PropTypes from "prop-types";
const ChevronsLeft = forwardRef(
({ color = "currentColor", size = 24, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<polyline points="11 17 6 12 11 7"></polyline>
<polyline points="18 17 13 12 18 7"></polyline>
</svg>
);
}
);
ChevronsLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
ChevronsLeft.displayName = "ChevronsLeft";
export default ChevronsLeft;