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

28 lines
383 B
JavaScript

import styled from 'cxs/x'
import {
fontSize,
fontWeight,
textAlign,
space,
color,
propTypes
} from 'styled-system'
const Text = styled('div')({},
fontSize,
fontWeight,
textAlign,
space,
color
)
Text.propTypes = {
...propTypes.fontSize,
...propTypes.fontWeight,
...propTypes.textAlign,
...propTypes.space,
...propTypes.color,
}
export default Text