@newrelic/gatsby-theme-newrelic
Version:
[](https://opensource.newrelic.com/oss-category/#community-project)
17 lines (14 loc) • 337 B
JavaScript
import React from 'react';
import { css } from '@emotion/react';
import CollapserGroup from './CollapserGroup';
const MDXCollapserGroup = (props) => (
<CollapserGroup
{...props}
css={css`
&:not(:last-child) {
margin-bottom: var(--block-element-spacing);
}
`}
/>
);
export default MDXCollapserGroup;