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.
21 lines
420 B
JavaScript
21 lines
420 B
JavaScript
import React from 'react'
|
|
|
|
const Footer = (props) => (
|
|
<div className="footer">
|
|
<span>a project by <a href="https://twitter.com/dawn_labs">@dawn_labs ¬</a></span>
|
|
<style jsx>{`
|
|
div {
|
|
font-size: 14px;
|
|
margin: 32px 0;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
a {
|
|
color: #C694E8;
|
|
text-decoration: none;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
|
|
export default Footer
|