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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const Workflows = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Workflows(props, ref) {
return (
<Icon {...props} name="Workflows">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M1.5 3.2C1.5 1.98497 2.53496 1 3.74999 1H10.35C11.565 1 12.55 1.98497 12.55 3.2C12.55 4.41503 11.565 5.4 10.35 5.4H8.14999V9.8H20.25C21.465 9.8 22.5 10.785 22.5 12C22.5 13.215 21.465 14.2 20.25 14.2H18.05V18.6H20.25C21.465 18.6 22.5 19.585 22.5 20.8C22.5 22.015 21.465 23 20.25 23H13.65C12.435 23 11.45 22.015 11.45 20.8C11.45 19.585 12.435 18.6 13.65 18.6H15.85V14.2H3.74999C2.53496 14.2 1.5 13.215 1.5 12C1.5 10.785 2.53496 9.8 3.74999 9.8H5.94999V5.4H3.74999C2.53496 5.4 1.5 4.41503 1.5 3.2Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
Workflows.displayName = 'Workflows'
export default Workflows
|