uiinfinity-components
Version:
Beautiful UI components with smooth animations and 3D effects
10 lines • 434 B
TypeScript
import React from 'react';
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
variant?: 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
size?: 'sm' | 'md' | 'lg';
children: React.ReactNode;
}
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { Button };
export type { ButtonProps };
//# sourceMappingURL=Button.d.ts.map