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

15 lines
262 B
JavaScript

import styled from 'cxs/x'
import { color, propTypes } from 'styled-system'
const Pre = styled('pre')({
fontFamily: '"Roboto Mono", Menlo, monospace',
fontSize: 'inherit',
margin: 0,
}, color)
Pre.propTypes = {
...propTypes.color
}
export default Pre