mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
9 lines
212 B
TypeScript
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>
|
|
)
|