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