UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

21 lines 1.2 kB
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const magicProgressVariants: (props?: ({ variant?: "default" | "destructive" | "success" | "warning" | "magic" | "glass" | "neon" | "primary" | null | undefined; size?: "default" | "sm" | "lg" | "xl" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const magicProgressIndicatorVariants: (props?: ({ variant?: "default" | "destructive" | "success" | "warning" | "magic" | "glass" | "neon" | "primary" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface MagicProgressProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof magicProgressVariants> { value?: number; max?: number; showValue?: boolean; animated?: boolean; striped?: boolean; glow?: boolean; label?: string; } declare const MagicProgress: React.ForwardRefExoticComponent<MagicProgressProps & React.RefAttributes<HTMLDivElement>>; export { MagicProgress, magicProgressVariants, magicProgressIndicatorVariants }; //# sourceMappingURL=magic-progress.d.ts.map