Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vvdev/mui-theme

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vvdev/mui-theme

The reused Mui theme of the Volga-Volga company

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-73.33%
Maintainers
2
Weekly downloads
 
Created
Source

vvdev-theme

The reused Mui theme of the Volga-Volga company

📦 Installation

$ npm i vvdev-theme
$ yarn add vvdev-theme

🔨 Usage

import { FunctionComponent } from 'react';
import { deepmerge } from '@mui/utils';
import { themeVolgaVolga } from 'vvdev-theme';
import { createTheme, ThemeProvider } from '@mui/material';

const theme = createTheme(deepmerge(themeVolgaVolga, customTheme));

const MaterialThemeProvider: FunctionComponent = ({ children }) => {
  return <ThemeProvider theme={theme}>{children}</ThemeProvider>;
};

export default MaterialThemeProvider;

Learn more about the theme composition

🎨 Storybook

A Storybook is a UI development environment and documentation tool that allows developers to create, showcase, and test UI components in isolation. Its advantages include faster development, improved collaboration, better testing, enhanced documentation, and simplified maintenance. By using Storybook, developers can streamline their development process, improve code quality, and increase productivity.

Live demo

Development mode

$ yarn storybook:start

🤔 FAQ

How to add a new border radius?
declare module '@mui/material' {
  interface Shape {
    customBorderRadius: string;
  }
}

Keywords

FAQs

Package last updated on 17 Jul 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc