mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
463 B
TypeScript
9 lines
463 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps} from './Icon'
|
|
|
|
export const CloudQueue = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M200 160 C213.3 160 224 149.3 224 136 C224 122.7 213.3 112 200 112 C199.3 112 198.7 112 198 112.1 C195.8 89.4 176.8 72 153.6 72 C142.4 72 132.2 76.4 124.8 83.6 C118.6 73.1 107.5 66 95 66 C75.7 66 60 81.7 60 101 C60 102.3 60.1 103.6 60.2 104.9 C48.6 108.5 40 119.3 40 132 C40 147.5 52.5 160 68 160" />
|
|
</Icon>
|
|
)
|