UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

13 lines (12 loc) 415 B
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;