system-uicons/react/src/icons/push_left.js
2020-08-03 13:09:39 +08:00

45 lines
1.1 KiB
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const PushLeft = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 21 21"
fill="none"
stroke={color}
strokeWidth="1"
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<g
fill="none"
stroke={color}
transform="matrix(0 1 -1 0 17.5 3.5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m9.828 4.672v5.656h-5.656"
transform="matrix(-.70710678 .70710678 .70710678 .70710678 6.646804 -2.753196)"
></path>
<path d="m7 .5v11"></path>
<path d="m0 14.5h14"></path>
</g>
</svg>
)
}
)
PushLeft.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
PushLeft.displayName = 'PushLeft'
export default PushLeft