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 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 :: data down action up 
Javascript :: how to create a cookie in javascript 
Javascript :: webpack setup proxy manual 
Javascript :: check href javascript 
Javascript :: react native build android 
Javascript :: ejs include with variable 
Javascript :: loop an audio javascript 
Javascript :: ionic capacitor splash screen spinner 
Javascript :: return all class innerhtml in javascript 
Javascript :: status code json 
Javascript :: if variable is string javascript 
Javascript :: discord js stats command 
Javascript :: regrex match emails 
Javascript :: middleware 
Javascript :: express add delay 
Javascript :: parse json to dart model 
Javascript :: Rounding Up To The Nearest Hundred js 
Javascript :: js function 
Javascript :: javascript compose function 
Javascript :: javascript math random floor 
Javascript :: Use ctrl + scroll to zoom the map & Move map with two fingers on mobile 
Javascript :: how to get width in javascript 
Javascript :: javascript redirection 
Javascript :: loop through array react native 
Javascript :: how to add a picker in expo 
Javascript :: javascript flatten array of arrays 
Javascript :: add array 
Javascript :: timeline javascript 
Javascript :: watch file in changes in webpack 
Javascript :: Svg as a component react 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =