mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Cloud = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M80 128a48 48 0 1 1 48 48H80a48 48 0 0 1 0-96 72 72 0 0 1 136 32c24 0 32 24 16 48H80Z" />
|
|
</Icon>
|
|
)
|