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

9 lines
212 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Moon = (props: IconProps) => (
<Icon {...props}>
<path d="M108 36A100 100 0 1 0 220 148a84 84 0 0 1-112-112Z" />
</Icon>
)