UNPKG

@slashid/react

Version:

React SDK for the /id platform

12 lines 320 B
import { ReactNode } from "react"; type Variant = "blue" | "red" | "primary" | "grey"; type Props = { className?: string; variant?: Variant; shouldAnimate?: boolean; children: ReactNode; testId?: string; }; export declare const Circle: React.FC<Props>; export {}; //# sourceMappingURL=circle.d.ts.map