mirror of
https://github.com/c8r/x0.git
synced 2024-11-12 18:47:35 +03:00
24 lines
440 B
JavaScript
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
|