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 :: string.contains javascript 
Javascript :: how to check if the first letter of a string is capitalized or uppercase in js 
Javascript :: mongoBD update increment a value by 2 
Javascript :: create directory when writing to file in nodejs 
Javascript :: create select option using jquery 
Javascript :: invoke in js 
Javascript :: html2canvas reduce image size 
Javascript :: change property in array of objects javascript 
Javascript :: onchange value in hidden input 
Javascript :: antd react native 
Javascript :: javascript url pas array 
Javascript :: function inside object javascript 
Javascript :: falsy values javascript 
Javascript :: javascript split string by multiple characters 
Javascript :: js get text from html string 
Javascript :: how to convert seconds in hours minutes and seconds js 
Javascript :: how to generate a random salt in nodejs 
Javascript :: javascript delay action 
Javascript :: npm react dropdown 
Javascript :: window.location.href url.action parameters 
Javascript :: create react expo 
Javascript :: useref material ui 
Javascript :: how to give height through props 
Javascript :: react native navigation remove top header screen 
Javascript :: angularjs dropdown 
Javascript :: xpath nodejs 
Javascript :: jquery detect shift tab 
Javascript :: node.js name of file 
Javascript :: how to show selected value in select box using jquery 
Javascript :: jquery select the 3rd row of a table 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =