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