mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 11:04:15 +00:00
33 lines
774 B
JavaScript
33 lines
774 B
JavaScript
import React, { forwardRef } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const CornerLeftDown = forwardRef(({ color = 'currentColor', size = "1em", ...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="14 15 9 20 4 15" />
|
|
<path d="M20 4h-7a4 4 0 0 0-4 4v12" />
|
|
</svg>
|
|
);
|
|
});
|
|
|
|
CornerLeftDown.propTypes = {
|
|
color: PropTypes.string,
|
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
};
|
|
|
|
CornerLeftDown.displayName = 'CornerLeftDown';
|
|
|
|
export default CornerLeftDown;
|