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 RibbonPerson = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function RibbonPerson(props, ref) {
return (
<Icon {...props} name="RibbonPerson">
<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 2C4 1.44772 4.44772 1 5 1H19C19.5523 1 20 1.44772 20 2V21.9996L12 17.4062L4 22V2ZM14.3333 7.32105C14.3333 8.60293 13.2887 9.64211 12 9.64211C10.7113 9.64211 9.66667 8.60293 9.66667 7.32105C9.66667 6.03917 10.7113 5 12 5C13.2887 5 14.3333 6.03917 14.3333 7.32105ZM14.8267 11.6505C14.0467 11.264 13.0866 10.9684 12 10.9684C10.9134 10.9684 9.95329 11.264 9.17334 11.6581C8.45329 12.0143 8 12.8328 8 13.7272V14H16V13.7196C16 12.8328 15.5467 12.0143 14.8267 11.6505Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
RibbonPerson.displayName = 'RibbonPerson'
export default RibbonPerson
|