import React from 'react'; import { P as BaseP } from 'joyent-ui-toolkit'; import { Row, Col } from 'joyent-react-styled-flexboxgrid'; import styled from 'styled-components'; const P = styled(BaseP)` font-weight: 200; `; export default ({ href = '', children }) => (

{children}{' '} {href ? ( Read the docs ) : null}

);