UNPKG

xlibs-components

Version:

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

22 lines 1.22 kB
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const unifiedButtonVariants: (props?: ({ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "success" | "warning" | "info" | "magic" | "glass" | "neon" | "shiny" | "pulsating" | "interactive" | "subscribe" | null | undefined; size?: "default" | "magic" | "sm" | "lg" | "icon" | "xl" | null | undefined; effect?: "none" | "ripple" | "shine" | "pulse" | "glow" | "float" | "scale" | "bounce" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface UnifiedButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof unifiedButtonVariants> { asChild?: boolean; loading?: boolean; ripple?: boolean; shine?: boolean; pulse?: boolean; glow?: boolean; float?: boolean; scale?: boolean; bounce?: boolean; children: React.ReactNode; } declare const UnifiedButton: React.ForwardRefExoticComponent<UnifiedButtonProps & React.RefAttributes<HTMLButtonElement>>; export { UnifiedButton, unifiedButtonVariants }; //# sourceMappingURL=unified-button.d.ts.map