
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@equinor/eds-core-react
Advanced tools
React implementation of the Equinor Design System (EDS). Use it to build applications that follow the EDS guidelines and stay up to date with the latest components.
Make sure to check out our Storybook for more examples! Read the changelog for details on specific releases.
npm install @equinor/eds-core-react styled-components
import { Button, Typography } from '@equinor/eds-core-react'
⚠️ Experimental – For testing and feedback only. Not production-ready.
npm install @equinor/eds-core-react@beta
import { Button, Typography } from '@equinor/eds-core-react/next'
Learn more:
If you use TypeScript, make sure you have TypeScript >= 3.8 as a devDependency:
npm install typescript --save-dev
The Equinor typeface is not included and needs to be added to the head of your project. Its available from the EDS CDN:
<link rel="stylesheet" href="https://cdn.eds.equinor.com/font/eds-uprights-vf.css" />
EDS Core React components require css variables (colors, spacing and typography).
@import '@equinor/eds-tokens/css/variables';
import * as React from 'react'
import { render } from 'react-dom'
import { Button, Typography } from '@equinor/eds-core-react'
const App = () => (
<>
<Typography variant="h1" bold>Buttons</Typography>
<Typography variant="h2">Contained (default)</Typography>
<Button>Primary</Button>
<Button color="secondary">Secondary</Button>
<Button color="danger">Danger</Button>
<Button disabled>Disabled</Button>
<Typography variant="h2">Outlined</Typography>
<Button variant="outlined">Primary</Button>
<Button variant="outlined" color="secondary">Secondary</Button>
<Button variant="outlined" color="danger">Danger</Button>
<Button variant="outlined" disabled>Disabled</Button>
<Typography variant="h2">Ghost</Typography>
<Button variant="ghost">Primary</Button>
<Button variant="ghost" color="secondary">Secondary</Button>
<Button variant="ghost" color="danger">Danger</Button>
<Button variant="ghost" disabled>Disabled</Button>
</>
)
render(<App />, document.getElementById('root'))
@equinor/eds-core-react
├── / # Stable components (EDS 1.0)
└── /next # Beta components (EDS 2.0)
FAQs
The React implementation of the Equinor Design System
The npm package @equinor/eds-core-react receives a total of 3,450 weekly downloads. As such, @equinor/eds-core-react popularity was classified as popular.
We found that @equinor/eds-core-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.