@slashid/react-primitives
Version:
Primitive components for the /id React SDK
12 lines • 320 B
TypeScript
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