Skip to content

chanzuckerberg/edu-design-system

Folders and files

NameName
Last commit message
Last commit date
Feb 28, 2024
Jan 31, 2023
May 10, 2024
Sep 25, 2023
May 6, 2024
Feb 22, 2024
Mar 6, 2024
Feb 16, 2023
Nov 6, 2023
Jan 3, 2023
May 10, 2024
Feb 23, 2024
Aug 6, 2021
Sep 12, 2023
Nov 6, 2023
Oct 26, 2023
May 10, 2023
Nov 15, 2023
Nov 13, 2023
May 6, 2024
May 6, 2024
Jul 14, 2020
Jan 24, 2024
Aug 4, 2021
May 22, 2023
Apr 6, 2023
Feb 14, 2024
May 6, 2024
Nov 6, 2023
Oct 28, 2022
Nov 6, 2023
Feb 23, 2024
Mar 22, 2024
May 10, 2024
Apr 17, 2023
Nov 13, 2023
May 6, 2024

Repository files navigation

Education Design System

Test CI Release codecov

Education Design System (EDS) is a repository of presentational components used to build React-based products for Chan Zuckerberg Initiative.

Installation

First, install the package.

# using npm
npm install --save @chanzuckerberg/eds

# or using Yarn
yarn add @chanzuckerberg/eds

Setting up EDS in your project

Import the EDS stylesheets somewhere in your app root, e.g. an init.ts or app.ts file:

import '@chanzuckerberg/eds/index.css'; // Includes relevant styles and tokens for EDS
import '@chanzuckerberg/eds/fonts.css'; // Includes font files if using the built in theme fonts

Also, include this in your base / reset styles to allow configuation of the pixel-to-rem ratio:

html {
  font-size: var(--eds-font-size-base); /* Sets the default pixel-to-rem ratio */
}

Theming Setup

For more information and configuration options, read the Theming Overview.

EDS Component Usage

Import any of the components from the top-level package:

// Import components by name at the top of your file
import { Heading } from '@chanzuckerberg/eds';

// ...and then use them in your React components:

<Heading preset="headline-lg">
  Coffee!
</Heading>

EDS provides a suite of components for use, and documentation for available props and overrides.

Development

This project is under active development. See CONTRIBUTING.md for more information on how to contribute to the Design System and IDE (VSCode) setup. Also, read our guidelines for additional information on how we build EDS components.

Instead, if you want to report an issue, you can open an issue.

This project is governed under the Contributor Covenant code of conduct.

Reporting Security Issues

See our Security Readme.

FAQ, More Information, and Support

Please review our Education Design System Site (SSO Required) here.