Prism is a Component Library built on top of Material UI.
Prism is currently under heavy development, but can be installed by running either of these commands:
npm install @octanner/prism-core
yarn add @octanner/prism-core
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>;
All components can be imported directly:
import { Avatar, Typography, Menu } from '@octanner/prism-core';