mirror of https://github.com/sgoudham/carbon.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
416 B
JavaScript
16 lines
416 B
JavaScript
6 years ago
|
import React from 'react'
|
||
|
import { useAsyncCallback } from '@dawnlabs/tacklebox'
|
||
|
|
||
|
import Button from './Button'
|
||
|
|
||
|
function TweetButton(props) {
|
||
|
const [onClick, { loading }] = useAsyncCallback(props.onClick)
|
||
|
return (
|
||
|
<Button border large padding="0 16px" margin="0 8px 0 0" onClick={onClick} color="#57b5f9">
|
||
|
{loading ? 'Loading...' : 'Tweet'}
|
||
|
</Button>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default React.memo(TweetButton)
|