system-uicons/react/src/icons/contract.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

2020-08-03 06:49:52 +02:00
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
2020-08-03 07:09:39 +02:00
2020-08-03 06:49:52 +02:00
const Contract = 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"
2020-08-03 07:09:39 +02:00
stroke={color}
2020-08-03 06:49:52 +02:00
transform="translate(2 2)"
2020-08-03 07:09:39 +02:00
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
2020-08-03 06:49:52 +02:00
>
<path
d="m7.5.5v5.056h-5.5"
transform="matrix(1 0 0 -1 0 15.056)"
></path>
<path
d="m3.968-1.007.064 9.964"
transform="matrix(.70710678 .70710678 -.70710678 .70710678 3.982322 7.335823)"
></path>
<path
d="m7.512.5v5.5h-5.012"
transform="matrix(0 1 -1 0 15.5 0)"
></path>
<path
d="m4.01-.954-.008 9.908"
transform="matrix(.70710678 .70710678 .70710678 -.70710678 7.338903 4.001757)"
></path>
</g>
</svg>
)
}
)
Contract.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
Contract.displayName = 'Contract'
export default Contract