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