UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

12 lines 742 B
import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const metallicButtonVariants: (props?: ({ variant?: "gold" | "silver" | "chrome" | "copper" | null | undefined; size?: "sm" | "lg" | "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface MetallicButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof metallicButtonVariants> { asChild?: boolean; } declare const MetallicButton: React.ForwardRefExoticComponent<MetallicButtonProps & React.RefAttributes<HTMLButtonElement>>; export { MetallicButton, metallicButtonVariants }; //# sourceMappingURL=metallic-button.d.ts.map