uiinfinity-components
Version:
Beautiful UI components with smooth animations and 3D effects
12 lines • 741 B
TypeScript
import * as React from "react";
import { type VariantProps } from "class-variance-authority";
declare const morphingButtonVariants: (props?: ({
variant?: "default" | "green" | "pink" | "amber" | null | undefined;
size?: "sm" | "lg" | "default" | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export interface MorphingButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof morphingButtonVariants> {
asChild?: boolean;
}
declare const MorphingButton: React.ForwardRefExoticComponent<MorphingButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { MorphingButton, morphingButtonVariants };
//# sourceMappingURL=morphing-button.d.ts.map