UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

12 lines 726 B
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const liquidButtonVariants: (props?: ({ variant?: "default" | "green" | "pink" | "purple" | null | undefined; size?: "sm" | "lg" | "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface LiquidButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof liquidButtonVariants> { asChild?: boolean; } declare const LiquidButton: React.ForwardRefExoticComponent<LiquidButtonProps & React.RefAttributes<HTMLButtonElement>>; export { LiquidButton, liquidButtonVariants }; //# sourceMappingURL=liquid-button.d.ts.map