@equinor/eds-core-react
Version:
The React implementation of the Equinor Design System
23 lines (19 loc) • 574 B
JavaScript
import { forwardRef } from 'react';
import styled from 'styled-components';
import { jsx } from 'react/jsx-runtime';
const StyledActions = styled.div.withConfig({
displayName: "Actions__StyledActions",
componentId: "sc-1251ang-0"
})(["grid-area:right;text-align:right;align-items:center;display:flex;"]);
const Actions = /*#__PURE__*/forwardRef(function Actions({
children,
...props
}, ref) {
return /*#__PURE__*/jsx(StyledActions, {
ref: ref,
...props,
children: children
});
});
// Actions.displayName = 'eds-topbar-actions'
export { Actions };