11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface CircleProps extends HTMLChakraProps<"circle"> {
|
|
}
|
|
declare const Circle: {
|
|
(props: CircleProps): JSX.Element;
|
|
displayName: string;
|
|
};
|
|
|
|
export { Circle };
|