# twenty-ui Twenty's open-source React UI component library: components, icons, and design tokens built on a zero-runtime, CSS-variable styling layer. # Installation ```bash npm install twenty-ui ``` `react`, `react-dom`, and `monaco-editor` are peer dependencies (install them in your app). `monaco-editor` is only required if you use the code editor components. # Usage Import the base styles once, pick a theme stylesheet, and wrap your app in `ThemeProvider`: ```tsx import { ThemeProvider } from 'twenty-ui/theme-constants'; import { Button } from 'twenty-ui/input'; import 'twenty-ui/style.css'; import 'twenty-ui/theme-light.css'; export const App = () => (