import React from 'react' import PropTypes from 'prop-types' import styled from 'styled-components' import { Button as BaseButton, Flex, Text } from 'rebass' import Spinner from './Spinner' const Wrapper = styled(BaseButton)` transition: all 0.25s; outline: none; border-radius: 5; font-weight: normal; line-height: '18px'; &:disabled { opacity: 0.5; } &:hover:enabled { cursor: pointer; } ` Wrapper.displayName = 'Button' /** * @render react * @name Button * @example *