import React from 'react'; import { CommonProps } from '../Group'; import { CommonShapeProps } from './common'; export interface CircleStyle extends CommonShapeProps { /** * @description.en-US The radius of the circle. * @description.zh-CN εœ†ηš„εŠεΎ„ */ r: number; } interface CircleProps extends CommonProps { /** * @description.en-US style of shape */ style: CircleStyle; } const Circle: React.FC = props => { const { children, ...rest } = props; return (
{children}
); }; export default Circle;