Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
presets
/
Buttons
/
PrimaryButton
/
PrimaryButton.d.ts
|
|---|
import React from 'react';
import { ButtonProps, ButtonState } from 'atoms/Button';
declare class PrimaryButton extends React.PureComponent<ButtonProps, ButtonState> {
static defaultProps: {
breedType: string;
text: string;
role: string;
'aria-label': string;
'aria-pressed': boolean;
};
render(): JSX.Element;
}
export { PrimaryButton };
export default PrimaryButton;