Answers for "svg image html react"

5

importing svg into react

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

export default function(){
  return( 
      <div>
          <BrandIcon />
      </div>
   );
}
Posted by: Guest on April-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language