gatsby-theme-wordpress-mdx
Version:
<p align="center"> <img width='200px' alt="Gatsby Theme" src="https://raw.githubusercontent.com/artezan/gatsby-theme-wordpress-mdx/master/%40artezan/gatsby-theme-wordpress-mdx/dn.png" />
28 lines (26 loc) • 488 B
JavaScript
/** @jsx jsx */
import * as React from 'react'
import { jsx } from 'theme-ui'
export const Tag = ({ children, color }) => {
return (
<li
sx={{
color: color,
display: 'inline-flex',
fontFamily: 'body',
fontSize: 0,
pt: 1,
pb: 1,
pl: 2,
pr: 2,
mb: 2,
borderRadius: 0,
borderWidth: 0,
borderStyle: 'solid',
borderColor: color
}}
>
{children}
</li>
)
}