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 BookInfo = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function BookInfo(props, ref) {
return (
<Icon {...props} name="BookInfo">
<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="M5.5 3C4.94772 3 4.5 3.44772 4.5 4V20C4.5 20.5523 4.94772 21 5.5 21H18.625L19.5 20H6C5.72386 20 5.5 19.7761 5.5 19.5C5.5 19.2239 5.72386 19 6 19H19.5V3H5.5ZM12 9.36914C12.8284 9.36914 13.5 8.69757 13.5 7.86914C13.5 7.04071 12.8284 6.36914 12 6.36914C11.1716 6.36914 10.5 7.04071 10.5 7.86914C10.5 8.69757 11.1716 9.36914 12 9.36914ZM13.2245 10.4712V15.9814H10.7755V10.4712H13.2245Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
BookInfo.displayName = 'BookInfo'
export default BookInfo
|