1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-19 09:38:31 +03:00
x0/docs/NavLink.js
2017-10-07 21:26:43 -04:00

24 lines
440 B
JavaScript

import styled from 'cxs/x'
import { fontSize, space, propTypes } from 'styled-system'
const NavLink = styled('a')({
textDecoration: 'none',
display: 'inline-block',
fontWeight: 'bold',
textTransform: 'uppercase',
letterSpacing: '0.2em',
padding: '8px',
color: 'inherit'
}, fontSize, space)
NavLink.propTypes = {
...propTypes.fontSize,
...propTypes.space
}
NavLink.defaultProps = {
f: '10px'
}
export default NavLink