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

44 lines
1.3 KiB
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const Pen = 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="translate(2 2)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="m8.24920737-.79402796c1.17157287 0 2.12132033.94974747 2.12132033 2.12132034v13.43502882l-2.12132033 3.5355339-2.08147546-3.495689-.03442539-13.47488064c-.00298547-1.16857977.94191541-2.11832105 2.11049518-2.12130651.00180188-.00000461.00360378-.00000691.00540567-.00000691z"
transform="matrix(.70710678 .70710678 -.70710678 .70710678 8.605553 -3.271644)"
></path>
<path d="m13.5 4.5 1 1"></path>
</g>
</svg>
)
}
)
Pen.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
Pen.displayName = 'Pen'
export default Pen