
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
A responsive, clean, and robust UI component library designed for modern web applications.
v1.0.0 - Now maintained by Matters AI
# npm
npm install mattersui
# yarn
yarn add mattersui
# pnpm
pnpm add mattersui
import React from 'react';
import { Button, Switch, SwitchList, CodeViewer, HeaderLayout, PageLayout } from 'mattersui';
import { ThemeProvider } from '@mui/material/styles';
import CssBaseline from '@mui/material/CssBaseline';
function App() {
const [selected, setSelected] = React.useState('option1');
return (
<ThemeProvider theme={yourTheme}>
<CssBaseline />
<PageLayout>
<HeaderLayout
headerTitle="My Page"
primaryCTOs={<Button variant="primary">Action</Button>}
/>
<SwitchList
options={[
{ label: 'Option 1', value: 'option1' },
{ label: 'Option 2', value: 'option2' }
]}
value={selected}
onChange={setSelected}
/>
<CodeViewer
code="const hello = 'world';"
language="javascript"
/>
</PageLayout>
</ThemeProvider>
);
}
MattersUI v1.0.0 requires the following peer dependencies:
npm install react react-dom @mui/material @emotion/react @emotion/styled react-hook-form
For full documentation, visit mattersui.eshank.tech.
MattersUI v1.0.0 includes the following stable components migrated from Matters AI's production codebase:
MattersUI components use CSS variables for theming, compatible with Material-UI themes:
import { ThemeProvider, createTheme } from '@mui/material/styles';
import CssBaseline from '@mui/material/CssBaseline';
const theme = createTheme({
// Your MUI theme configuration
});
function App() {
return (
<ThemeProvider theme={theme}>
<CssBaseline />
{/* Your application with MattersUI components */}
</ThemeProvider>
);
}
Components support CSS custom properties for colors:
--primary-normal, --primary-active, --primary-text, --primary-border--secondary-normal, --secondary-active, --secondary-text, --secondary-border--alert-normal, --alert-active, --alert-text, --alert-border--premium-normal, --premium-active, --premium-text, --premium-border--disabled-normal, --disabled-textWe welcome contributions! Please see our contributing guidelines for details.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A responsive, clean, and robust UI component library for Matters AI
We found that mattersui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.