@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
26 lines (23 loc) • 584 B
JavaScript
import { forwardRef } from 'react';
import styled, { css } from 'styled-components';
import { jsx } from 'react/jsx-runtime';
const StyledSideBarFooter = styled.div.withConfig({
displayName: "SideBarFooter__StyledSideBarFooter",
componentId: "sc-1hsu72u-0"
})(() => {
return css(["grid-area:footer;"]);
});
const SideBarFooter = /*#__PURE__*/forwardRef(function SideBarFooter({
children,
...rest
}, ref) {
const props = {
ref,
...rest
};
return /*#__PURE__*/jsx(StyledSideBarFooter, {
...props,
children: children
});
});
export { SideBarFooter };