import React from 'react'; import { ExpandDropdownIcon } from '../../icons'; import { ButtonProps } from '../../interfaces'; import Spinner from '../Spinner'; import { StyledButton, TitleWrapper, ExpandIconWrapper } from './styles'; const Button = (props: ButtonProps) => ( {props.isLoading ? ( ) : ( <> {props.icon && props.icon} {props.title && !props.iconButton && ( {props.title} )} {props.togglesExpand && ( )} )} ); export default Button;