brahma-test-widget
Version:
A React component for trade automation within the Brahma ecosystem.
11 lines • 606 B
TypeScript
import { ButtonHTMLAttributes } from 'react';
export type ButtonTypeProp = 'primary' | 'secondary' | 'warning' | 'warningSecondary' | 'danger' | 'black' | 'kernel' | 'blast' | 'custom' | 'white' | 'berabaddies';
export type ButtonSize = 'M' | 'S' | 'L';
type ButtonProps = {
buttonType?: ButtonTypeProp;
buttonSize?: ButtonSize;
removePadding?: boolean;
} & ButtonHTMLAttributes<HTMLButtonElement>;
export default function Button({ buttonType, buttonSize, removePadding, children, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map