@automattic/agenttic-ui
Version:
UI components for the Agenttic framework
11 lines • 462 B
TypeScript
import * as React from 'react';
interface ButtonProps extends React.ComponentProps<'button'> {
variant?: 'primary' | 'ghost' | 'outline' | 'link' | 'icon' | 'transparent';
size?: 'icon' | 'sm' | 'lg';
icon?: React.ReactNode;
asChild?: boolean;
pressed?: boolean;
}
declare const Button: React.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
export { Button };
//# sourceMappingURL=button.d.ts.map