Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import * as React from 'react';
export interface ButtonProps {
className?: string;
center?: boolean;
isLowPriority?: boolean;
isDisabled?: boolean;
state?: string;
}
export interface ButtonWithIconProps {
text?: string;
icon?: React.ReactNode;
children?: React.ReactNode;
qa?: string;
}