Answers for "iconbutton material ui"

3

material ui textfield with icon button

// imports
import IconButton from "@material-ui/core/IconButton";
import InputAdornment from "@material-ui/core/InputAdornment";
import SearchIcon from "@material-ui/icons/Search";

// render

<TextField
  label="With normal TextField"
  InputProps={{
    endAdornment: (
      <InputAdornment>
        <IconButton>
          <SearchIcon />
        </IconButton>
      </InputAdornment>
    )
  }}
/>
Posted by: Guest on October-15-2020
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
16

@material-ui/icons

yarn add @material-ui/icons

# NPM
npm install @material-ui/icons
Posted by: Guest on July-23-2020
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

iconbutton onclick material ui

<Button color="primary" onClick={() => { console.log('onClick'); }}>
    Primary
</Button>
Posted by: Guest on October-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language