@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
23 lines (19 loc) • 579 B
JavaScript
import { forwardRef } from 'react';
import styled from 'styled-components';
import { jsx } from 'react/jsx-runtime';
const StyledCustomContent = styled.div.withConfig({
displayName: "CustomContent__StyledCustomContent",
componentId: "sc-d0e83a-0"
})(["grid-area:center;"]);
const CustomContent = /*#__PURE__*/forwardRef(function CustomContent({
children,
...props
}, ref) {
return /*#__PURE__*/jsx(StyledCustomContent, {
ref: ref,
...props,
children: children
});
});
// CustomContent.displayName = 'eds-topbar-customcontent'
export { CustomContent };