UNPKG

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" />

14 lines (11 loc) 299 B
/** @jsx jsx */ import * as React from 'react' import { jsx } from 'theme-ui' import { Icon } from '../Icon' export const ButtonIconSimple = ({ iconPath, ...rest }) => { return ( <button {...rest} sx={{ variant: 'buttonSimpleMdxWp' }}> <Icon iconPath={iconPath} /> </button> ) }