mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 09:14:56 +00:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Info = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="128" cy="128" r="96" />
|
|
<line x1="128" y1="120" x2="128" y2="176" />
|
|
<circle cx="128" cy="84" r="4" fill="currentColor" />
|
|
</Icon>
|
|
)
|