Getting undefined when importing svg as ReactComponent in create-react-app project

前端 未结 5 961
礼貌的吻别
礼貌的吻别 2021-02-18 18:56

I\'m getting following error when trying to load svg as ReactComponent.

Element type is invalid: expected a string (for built-in components) or a class/fu

相关标签:
5条回答
  • 2021-02-18 19:28

    Try to use Styled components

    import Logo from 'assets/logo.svg';
    
    const Image = styled.img<Props>`<some setting for standard width and height for logo here`>
    
    const LogoWrapper = styled(Image)`
    transition: all 0.25s linear;
    &: hover {
        transform: scale(1.25);
    }`;
    
    <LogoWrapper height={140} src={Logo} alt="Some Logo" />
    

    This one is working er

    0 讨论(0)
  • 2021-02-18 19:44

    Another example of how to do SVG's with Typescript:-

    
    export interface ISVG {
        viewBox?: string;
        width?: string;
        height?: string;
        fill?: string;
        className?: string;
    }
    
    export const SVG = ({
        viewBox = '0 0 200 200',
        fill = '#FA4D56',
        width,
    }: ISVG): JSX.Element => {
        return (
            <svg viewBox={viewBox} width={width}>
                <path
                    fill={fill}
                    d="M41.9,-43.6C54,-39.8,63.3,-26.3,59.5,-15.3C55.8,-4.2,39,4.3,31.4,18.6C23.7,32.8,25.1,52.8,16,65.4C6.9,78,-12.7,83.2,-25.5,76C-38.4,68.8,-44.5,49,-44.5,33.3C-44.5,17.6,-38.4,6,-37.3,-7.8C-36.3,-21.5,-40.5,-37.4,-35.1,-42.3C-29.8,-47.2,-14.9,-41.3,0,-41.3C14.9,-41.3,29.8,-47.3,41.9,-43.6Z"
                    transform="translate(100 100)"
                />
            </svg>
        );
    };
    

    You can also export the SVG as follows: -

    export {SVG as Shape}; or w/e naming you choose to export it as.
    

    Things such as margin or padding should be applied afterward, I would assume since you want them to be as generic as possible and be able to re-use them in different locations.

    0 讨论(0)
  • 2021-02-18 19:49

    TLDR: import MySvg from "MySvg.svg" then <img src={MySvg}/>

    To import an SVG: import MySvg from "MySvg.svg" which will save the path as a string inside MySvg.

    To render it, use an img tag as in standard HTML, since MySvg is actually a path: <img src={MySvg}/>

    The reason you get undefined is that you are destructuring a string.

    0 讨论(0)
  • 2021-02-18 19:50

    if what you need is to import SVGs as a component in React I would recommend this tool https://react-svgr.com/playground/ else the simplest way to deal with SVGs in react is the one mentioned by the other answers above.

    0 讨论(0)
  • 2021-02-18 19:51

    use this way this is an exaple find your svg and put it in this function

    your svg file

    interface IProps {
      fill?: string;
    }
    export default (props: IProps) => (
      <svg
        style={{ marginTop: "13px" }}
        fill={props.fill || Primary}
        viewBox="0 0 424 424"
        width={15}
      >
        <path d="M35,89C15,89,0,74,0,54s15-36,35-36h353c20,0,36,16,36,36s-16,35-36,35H35z" />
        <path d="M388,176c20,0,36,16,36,36s-16,35-36,35H35c-20,0-35-15-35-35s15-36,35-36H388z" />
        <path d="M388,335c20,0,36,15,36,35s-16,36-36,36H35c-20,0-35-16-35-36s15-35,35-35H388z" />
      </svg>
    );
    

    where you want to use svg

    import React from "react";
    import Menu from "./assets/svg/menu";
    
     ...
     return (
       ...
       <Menu/> 
     )
    
    0 讨论(0)
提交回复
热议问题