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 35 36 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const BookPerson = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function BookPerson(props, ref) {
return (
<Icon {...props} name="BookPerson">
<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="M3.5 4C3.5 3.44772 3.94772 3 4.5 3H18.5V5H20.5V8H18.5V19H5C4.72386 19 4.5 19.2239 4.5 19.5C4.5 19.7761 4.72386 20 5 20H18.5L17.625 21H4.5C3.94772 21 3.5 20.5523 3.5 20V4ZM13 9C13 10.105 12.105 11 11 11C9.895 11 9 10.105 9 9C9 7.895 9.895 7 11 7C12.105 7 13 7.895 13 9ZM7 14C7 12.67 9.665 12 11 12C12.335 12 15 12.67 15 14V15H7V14Z"
fill="currentColor"
/>
<path d="M20 9.5H19V13H20V9.5Z" fill="currentColor" />
<path d="M20 14.5H19V18H20V14.5Z" fill="currentColor" />
</svg>
</Icon>
)
})
BookPerson.displayName = 'BookPerson'
export default BookPerson
|