Getting Started

Prism is a design system to make your lives easier.

Prism is a Component Library built on top of Material UI.

Installing Prism

Prism is currently under heavy development, but can be installed by running either of these commands:

npm install @octanner/prism-core

or
yarn add @octanner/prism-core

Prism Provider

Make sure to wrap your app in ThemeProvider to get the default theme:

import { ThemeProvider } from '@octanner/prism-core';
const App = () => <ThemeProvider>Hey there👋</ThemeProvider>;

Importing components from Prism

All components can be imported directly:

import { Avatar, Typography, Menu } from '@octanner/prism-core';