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

10 lines
160 B
JavaScript

import styled from 'cxs/x'
import Text from './Text'
const Caps = styled(Text)({
textTransform: 'uppercase',
letterSpacing: '.2em'
})
export default Caps