Giter Club home page Giter Club logo

Comments (1)

cw235 avatar cw235 commented on June 9, 2024

To achieve the expected behavior where the outlined gavel icon has the inside not filled in, you need to customize the icon using Material-UI icons. You can leverage the createTheme and ThemeProvider components from Material-UI to customize the icon color.

Here's a step-by-step guide on how you can make this adjustment:

  1. In your React project, make sure you have installed @mui/icons-material version 5.15.17.
  2. Locate the component or file where you are rendering the gavel icons in your project.
  3. Add the following imports from Material-UI at the top of your file:
import { createTheme, ThemeProvider } from '@mui/system';
  1. Create a custom theme to set the inside color of the outlined gavel icon as transparent. Define your custom theme by adding the following code before the component where you are rendering the icons:
const theme = createTheme({
  components: {
    MuiSvgIcon: {
      styleOverrides: {
        root: {
          '&.MuiOutlined': {
            '& path': {
              fill: 'transparent',
            },
          },
        },
      },
    },
  },
});
  1. Wrap the rendering of your gavel icons with the ThemeProvider component and pass in the theme you just created. Your component should look like this:
<ThemeProvider theme={theme}>
    // Render your gavel icons here
</ThemeProvider>

By following these steps, you should now see the outlined gavel icon with the inside not filled in, as the inside color will be set to transparent based on the custom theme you applied using Material-UI.

from material-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.