“Komponen SVG bereaksi JS” Kode Jawaban

cara menggunakan svg di react js

import React from 'react';
import LogoName from '../assets/logo.svg'

const Header = () => {
    return ( 
        <div>
           	<img src={LogoName} alt="logo"/>
        </div>
     );
}
Puzzled Puffin

Cara mengimpor SVG di React

//customIcon.js

import React from "react";
import {ReactComponent as ImportedSVG} from "path/to/myIcon.svg";
import { SvgIcon } from '@material-ui/core';

function CustomIcon() {
 return(
  <SvgIcon component={ImportedSVG} viewBox="0 0 384 512"/>

)
}

export default CustomIcon;
Salo Hopeless

Komponen SVG bereaksi JS

import { ReactComponent as IconMenu } from './icons/menu.svg'

<IconMenu />
Lucas Juan

Bereaksi SVG

//Use this WEB APP to convert any svg to a valide reactJs or React native Component
Playground - SVGR
https://react-svgr.com/playground/
SamuraiR4cc00n

Jawaban yang mirip dengan “Komponen SVG bereaksi JS”

Pertanyaan yang mirip dengan “Komponen SVG bereaksi JS”

Lebih banyak jawaban terkait untuk “Komponen SVG bereaksi JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya