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