@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
10 lines (7 loc) • 430 B
TypeScript
/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { CircleProperties } from '../patterns/circle';
import type { HTMLStyledProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface CircleProps extends CircleProperties, DistributiveOmit<HTMLStyledProps<'div'>, keyof CircleProperties > {}
export declare const Circle: FunctionComponent<CircleProps>