uiinfinity-components
Version:
Beautiful UI components with smooth animations and 3D effects
13 lines • 800 B
TypeScript
import * as React from "react";
import { type VariantProps } from "class-variance-authority";
declare const neoButtonVariants: (props?: ({
variant?: "outline" | "ghost" | "link" | "default" | "solid" | "subtle" | null | undefined;
size?: "sm" | "lg" | "default" | "xs" | "icon" | null | undefined;
glow?: "none" | "strong" | "subtle" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export interface NeoButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof neoButtonVariants> {
asChild?: boolean;
}
declare const NeoButton: React.ForwardRefExoticComponent<NeoButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { NeoButton, neoButtonVariants };
//# sourceMappingURL=neo-button.d.ts.map