Skip to content

Instantly share code, notes, and snippets.

@brizental
Created July 7, 2018 16:44
Show Gist options
  • Save brizental/9a8053c62e5f9b9328427d37cad5abc7 to your computer and use it in GitHub Desktop.
Save brizental/9a8053c62e5f9b9328427d37cad5abc7 to your computer and use it in GitHub Desktop.
import React from 'react'
import './Botao.css'
function Botao({ desabilitado }) {
return (
<button className={`botao ${desabilitado ? 'botao--desabilitado' : ''}`}>
{props.children}
</button>
);
}
export default Botao
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment