@helpwave/hightide
Version:
helpwave's component and theming library
11 lines (8 loc) • 378 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { HTMLAttributes } from 'react';
type CircleProps = Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'color'> & {
radius: number;
className?: string;
};
declare const Circle: ({ radius, className, style, ...restProps }: CircleProps) => react_jsx_runtime.JSX.Element;
export { Circle, type CircleProps };