rsnext/test/integration/plugin-mdx/components/button.js

15 lines
257 B
JavaScript
Raw Normal View History

export default ({ children }) => (
<button
style={{
borderRadius: '3px',
border: '1px solid black',
color: 'black',
padding: '0.5em 1em',
cursor: 'pointer',
fontSize: '1.1em'
}}
>
{children}
</button>
)