Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
module.exports = () => {
const Button = styled('button')`
font-family: inherit;
font-size: inherit;
display: inline-block;
margin: 0;
padding: 16px;
border: 0;
border-radius: 4px;
color: white;
background-color: ${props => props.color};
appearance: none;
&:hover: {
background-color: black;
}
`
const button = render(