Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@equinor/eds-core-react

Package Overview
Dependencies
Maintainers
3
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equinor/eds-core-react

The React implementation of the Equinor Design System

  • 0.7.0-beta.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@equinor/eds-core-react

NB! This is an early version of the EDS Core React components in Typescript and meant for testing only.

Available components to help style your React application as an Equinor application. We publish new components regularly so make sure to check back often!

Make sure to check out our Storybook for more examples! Read the changelog for details on specific releases.

Installation

npm install @equinor/eds-core-react styled-components

Components

Available ✅

  • Accordion
  • Banner
  • Breadcrumbs
  • Button
    • Contained
    • Contained w/icon left/right
    • Outlined
    • Outlined w/icon left/right
    • Ghost
    • Ghost Icon
    • Ghost w/icon left/right
  • Cards
  • Chips
  • Dialog
  • Divider
  • Icon
  • List
  • Menu
  • Pagination
  • Popover
  • Progress indicators
  • Scrim
  • Search
  • Selection Controls
  • Side Sheet
  • Slider
  • Snackbar
  • Table
  • Table of contents
  • Tabs
  • TextField
  • Tooltip
  • TopBar
  • Typography

In progress 👷‍♀️

  • Navigation drawer

TODO 🛠️

  • App launcher
  • Stepper

Usage

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'))

Keywords

FAQs

Package last updated on 11 Nov 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc