system-uicons/react/src/icons/face_neutral.js
2020-08-03 13:24:20 +08:00

49 lines
1.3 KiB
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const FaceNeutral = 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" transform="translate(2 2)" fillRule="evenodd">
<circle
cx="8.5"
cy="8.5"
r="8"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
></circle>
<circle cx="6" cy="6" fill={color} r="1"></circle>
<circle cx="11" cy="6" fill={color} r="1"></circle>
<path
d="m5.5 10.5h6"
stroke={color}
transform="matrix(1 0 0 -1 0 21)"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</g>
</svg>
)
}
)
FaceNeutral.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
FaceNeutral.displayName = 'FaceNeutral'
export default FaceNeutral