Files
metabuilder/icons/react/fakemui/Cloud.tsx
2026-03-09 22:30:41 +00:00

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>
)