Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const GithubCat = props => {
return (
<div aria-hidden="">
<style>{`
.cat {
margin-left: auto;
height: 24px;
width: 24px;
opacity: 0;
transition: opacity ${core.motion.speedNormal};
}
.cat--is-visible {
opacity: 1;
}
`}</style>
</div>
)
}
GithubCat.propTypes = {