A versatile and modern React UI library crafted by @iceberg-dev. Enhance your web applications with sleek and customizable components designed for seamless integration and stunning user experiences.
npm install @iceberg-dev/ice-uibash
npm i @iceberg-dev/ice-ui
`
Docs
_Usage_
`javascript
import ReactDOM from 'react-dom/client';
import { BaseButton, palette, shadows, typography } from "@iceberg-dev/ice-ui";
import { createTheme, ThemeProvider } from "@mui/material";// Create a theme using ice-ui styles
const theme = createTheme({
palette,
typography,
shadows
});
// Wrap your app with ThemeProvider and use ice-ui components
ReactDOM.createRoot(document.getElementById('root')!).render(
hello
);
`#### For detailed documentation on
BaseButton` and other components, visit the IceUI Storybook.#### For development guidelines, refer to the IceUI Documentation.