1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-21 02:27:13 +03:00
x0/docs/Text.js

28 lines
383 B
JavaScript
Raw Normal View History

2017-10-08 02:37:16 +03:00
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