synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
13 lines (12 loc) • 415 B
TypeScript
import * as React from 'react';
import { ButtonProps } from 'react-bootstrap';
declare type ButtonWithIconProps = {
children: React.ReactNode;
icon: React.ReactNode;
};
/**
* A button with center-aligned content (typically text) that displays a left-aligned icon.
* @param param0
*/
declare const ButtonWithIcon: React.FunctionComponent<ButtonWithIconProps & ButtonProps>;
export default ButtonWithIcon;