matirial ui icons filled code example

Example 1: material ui icon button

// if this helped, don't forget to upvote so others can see

import React from 'react';
import LocationOnIcon from '@material-ui/icons/LocationOn';
import IconButton from '@material-ui/core/IconButton';

export default function ButtonWithIcon () {

  return(
    <IconButton>
      <LocationOnIcon />
    </IconButton>
  )
}

Example 2: material ui location icon

// Don't forget to upvote if this helped so others can see it

import LocationOnIcon from '@material-ui/icons/LocationOn';