Answers for "how to include svg in react icon"

1

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;
Posted by: Guest on June-18-2021
0

use svg as favicon react

<link rel="icon" type="image/svg+xml" href="/favicon.svg" sizes="any">
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language