Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const CommentPeople = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function CommentPeople(props, ref) {
return (
<Icon {...props} name="CommentPeople">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M4 3C3.44772 3 3 3.44772 3 4V16C3 16.5523 3.44772 17 4 17H17L21 21V4C21 3.44772 20.5523 3 20 3H4ZM11.225 8.25C11.225 9.2165 10.4247 10 9.4375 10C8.45029 10 7.65 9.2165 7.65 8.25C7.65 7.2835 8.45029 6.5 9.4375 6.5C10.4247 6.5 11.225 7.2835 11.225 8.25ZM9.575 10.8138C7.925 10.8138 6 11.3538 6 12.4292V13.5H13.15V12.4292C13.15 11.3538 11.225 10.8138 9.575 10.8138ZM14.2 10.8138C14.1648 10.8138 14.092 10.813 13.9996 10.812C13.7116 10.8088 13.2325 10.8034 13.1 10.8138C13.1613 10.8548 13.2251 10.8962 13.29 10.9383C13.8391 11.2946 14.475 11.7072 14.475 12.4292V13.5H17.5V12.4292C17.5 11.3538 16.125 10.8138 14.2 10.8138ZM14.3375 10C15.3247 10 16.125 9.2165 16.125 8.25C16.125 7.2835 15.3247 6.5 14.3375 6.5C13.3503 6.5 12.55 7.2835 12.55 8.25C12.55 9.2165 13.3503 10 14.3375 10Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
CommentPeople.displayName = 'CommentPeople'
export default CommentPeople
|