Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

importing svg into react

import React from 'react';
import { ReactComponent as BrandIcon } from "./assets/brand-icon.svg";

export default function(){
  return( 
      <div>
          <BrandIcon />
      </div>
   );
}
Comment

import svg react

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

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

how to import svg in 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;
Comment

import svg as react component

import React from 'react';
import { ReactComponent as YourSvg } from './YourSvg.svg';

const MyComponent = () => {
    return(
        <YourSvg/>
    );
}

export default MyComponent ;
Comment

svg component react js

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

<IconMenu />
Comment

Svg as a component react

import React from 'react';
import {ReactComponent as ReactLogo} from './logo.svg';

const App = () => {
  return (
    <div className="App">
      <ReactLogo />
    </div>
  );
}
export default App;
Comment

how to add svg file in react

import YourSvg from "/path/to/image.svg";

const App = () => {
  return (
    <div className="App">
      <img src={YourSvg} alt="Your SVG" />
    </div>
  );
};
export default App;
Comment

add svg in react

<span>
                  <object style={{ float: 'left', height: '15px', position: 'relative', top: '4px' }} data={`${ROOT_URL}/assets/images/svg-icons/history-icon.svg`} type='image/svg+xml'></object>
                </span>
Comment

convert svg to react component

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

PREVIOUS NEXT
Code Example
Javascript :: export json / array to excel in javascript 
Javascript :: clean code javascript 
Javascript :: react useEffect life cycle 
Javascript :: how to use fetch in gatsby 
Javascript :: sort array of numbers js 
Javascript :: vanilla js append new element 
Javascript :: angularjs make post request 
Javascript :: react-native-safe-area-context 
Javascript :: react native select option 
Javascript :: express grpc example 
Javascript :: javscript assert 
Javascript :: validate password in nodejs 
Javascript :: methods javascript 
Javascript :: javascript dynamic variable name 
Javascript :: string length js 
Javascript :: How can i change Header Bar height in react native 
Javascript :: URLSearchParams for query params 
Javascript :: Math max with array js 
Javascript :: v- v-bind : 
Javascript :: checked unchecked through js 
Javascript :: first node prog using express 
Javascript :: Create a Counter Object or Map in javascript 
Javascript :: object find javascript 
Javascript :: $(...).editableSelect is not a function 
Javascript :: vue dispatch action at tab close 
Javascript :: how to add a message sound in angular 
Javascript :: multiselect_3 
Javascript :: ejs public 
Javascript :: apar chinmoy phy js code 
Javascript :: display object in array 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =