Skip to content

Aurity Design System

React components for faster and easier web development. Build your own design system, or start with Our Design.

Get Started

Installation

Install Aurity Design System's source files via npm. We take care of injecting the CSS needed.
  $ yarn add @aurity/ui
Load the default Rajdhani font.
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,700&display=swap" />

Read installation docs

Usage

Aurity Design System components work without any additional setup, and don't pollute the global scope.
  import React from 'react';
  import Button from '@aurity/ui';

  const App = () => (
    <Button variant="contained" color="primary">
      Hello World
    </Button>
  );

Explore the docs