SVG use tag and ReactJS

后端 未结 6 1557
慢半拍i
慢半拍i 2020-12-23 00:05

So normally to include most of my SVG icons that require simple styling, I do:


    
         


        
6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-23 01:05

    SVGs can be imported and used directly as a React component in your React code.

    import React from 'react';
    import {ReactComponent as ReactIcon} from './icon.svg';
    
    const App = () => {
      return (
        
    ); } export default App;

提交回复
热议问题