Answers for "material-ui icon button"

4

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>
  )
}
Posted by: Guest on February-05-2021
3

react mui icons

npm install @material-ui/core
npm install @material-ui/icons

import RoomIcon from '@material-ui/icons/Room';

<RoomIcon />
Posted by: Guest on October-28-2020
0

deleteicon material ui improt

import AccessAlarmIcon from '@material-ui/icons/AccessAlarm';
Posted by: Guest on January-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language