How to use an SVG file in a SvgIcon in Material-UI

后端 未结 3 1150
心在旅途
心在旅途 2021-02-11 13:06

I\'ve got an SVG file and I want to make an SvgIcon component out of it, how should I do that?

In the documentation, all the examples use either predefined Material Icon

相关标签:
3条回答
  • 2021-02-11 13:48

    1. Using <Icon/> component and an <img/> element

    To use a SVG file as an icon, I used the <Icon/> component with an <img/> element inside, setting the height: 100% to the img element and textAlign: center to the root class of the <Icon/> component did the trick:

    JSX:

    import Icon from '@material-ui/core/Icon';
    import { makeStyles } from '@material-ui/styles';
    ...
    
    <Icon classes={{root: classes.iconRoot}}>
      <img className={classes.imageIcon} src="/graphics/firebase-logo.svg"/>
    </Icon>
    

    Styles:

    const useStyles = makeStyles({
      imageIcon: {
        height: '100%'
      },
      iconRoot: {
        textAlign: 'center'
      }
    });
    

    Result:

    UPDATE

    As Lorenz Haase mentions in the comments, there is a slighly cuttting of the SVG at the bottom, which it can be fixed if we use flexbox and inherit width and height:

    const useStyles = makeStyles({
      imageIcon: {
        display: 'flex',
        height: 'inherit',
        width: 'inherit'
      }
    });
    

    2. Using <SvgIcon/> component and @svgr/webpack webpack loader

    According to the official MUI documentation, we can use <SvgIcon/> component props and have a @svgr/webpack loader to load .svg files using ESM imports.

    Component prop

    You can use the SvgIcon wrapper even if your icons are saved in the .svg format. svgr has loaders to import SVG files and use them as React components. For example, with webpack:

    // webpack.config.js
    {
      test: /\.svg$/,
      use: ['@svgr/webpack'],
    }
    
    // ---
    import StarIcon from './star.svg';
    
    <SvgIcon component={StarIcon} viewBox="0 0 600 476.6" />
    

    It's also possible to use it with "url-loader" or "file-loader". It's the approach used by Create React App.

    // webpack.config.js
    {
      test: /\.svg$/,
      use: ['@svgr/webpack', 'url-loader'],
    }
    
    // ---
    import { ReactComponent as StarIcon } from './star.svg';
    
    <SvgIcon component={StarIcon} viewBox="0 0 600 476.6" />
    
    0 讨论(0)
  • 2021-02-11 13:52

    <path /> is an SVG path, i.e. the internal bits of the SVG. the SvgIcon component really should be able to take a path, but it doesn't :(

    instead you can create a component like https://github.com/callemall/material-ui/blob/56c113217d7d05d8bb0712771b727df81984d04b/src/svg-icons/action/home.js

    with your svg source in place of the path. (I recommend minifying it a bit using https://jakearchibald.github.io/svgomg/)

    0 讨论(0)
  • 2021-02-11 13:54

    You can import SVGs directly as React components and use them in <SvgIcon>:

    import React from "react";
    import { ReactComponent as Logo } from "./logo.svg";
    import SvgIcon from "@material-ui/core/SvgIcon";
    
    const App = () => (
      <SvgIcon>
        <Logo />
      </SvgIcon>
    );
    
    export default App;
    

    See also: https://create-react-app.dev/docs/adding-images-fonts-and-files/#adding-svgs

    Unfortunately React seems not able to render all kind of SVGs (e.g. modified with Inkscape, Illustrator) yet. But at least the default logo.svg inside a create-react-app project works.

    0 讨论(0)
提交回复
热议问题