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 NotepadPencil = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function NotepadPencil(props, ref) {
return (
<Icon {...props} name="NotepadPencil">
<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="M7 2.5C7 1.94772 7.44772 1.5 8 1.5C8.55228 1.5 9 1.94772 9 2.5V3.5H11V2.5C11 1.94772 11.4477 1.5 12 1.5C12.5523 1.5 13 1.94772 13 2.5V3.5H15V2.5C15 1.94772 15.4477 1.5 16 1.5C16.5523 1.5 17 1.94772 17 2.5V3.5H19C19.5523 3.5 20 3.94771 20 4.5V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V4.5C4 3.94772 4.44772 3.5 5 3.5H7V2.5ZM7.20181 10.6506C6.93273 10.3815 6.93273 9.94528 7.20181 9.6762L8.1762 8.70181C8.44528 8.43273 8.88153 8.43273 9.1506 8.7018L10.125 9.6762L8.1762 11.625L7.20181 10.6506ZM17 16.625L10.9734 10.5984L9.09841 12.4734L15.125 18.5H17V16.625Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
NotepadPencil.displayName = 'NotepadPencil'
export default NotepadPencil
|