The latest Material icons has (no) meeting_room icon. but I couldn't find these.
Below code should display the door icons.
import React from 'react'
import { MeetingRoom, NoMeetingRoom } from '@material-ui/icons'
export default () => (
<div>
<MeetingRoom />
<NoMeetingRoom />
</div>
It shows nothing.
npm i @material-ui/icons @material-ui/core| Tech | Version |
|--------------|---------|
| Material-UI | v1.3.1 |
| React | v16.4.1 |
| browser | all browser |
| @material-ui/icons | v1.1.0 |
You need to use v2.0.0-beta.1 for the v2 icons.
Most helpful comment
You need to use v2.0.0-beta.1 for the v2 icons.