UNPKG

@explita/daily-toolset-components

Version:

A lightweight and versatile collection of TypeScript utility functions and form components, inspired by ShadCN UI, designed for seamless everyday development. Enhance your Node.js, React, and Next.js projects with a well-structured suite of helpers for st

9 lines (8 loc) 254 B
import React from "react"; type Props = { color?: "blue" | "red" | "green" | "yellow"; size?: "sm" | "md" | "lg" | "xl"; className?: string; }; export declare function Spinner({ color, size, className }: Props): React.JSX.Element; export {};