Answers for "material-ui"

8

material-ui

npm install @material-ui/icons
Posted by: Guest on August-17-2020
11

material ui react

// Get the core
npm install @material-ui/core

// Those fancy SVG icons
npm install @material-ui/icons

// Roboto is the font Material-UI is based around, ofc you can omit this
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />

// Font Icons
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
Posted by: Guest on August-17-2020
1

material ui

$ npm install @material-ui/core

import React from 'react';
import { Button } from '@material-ui/core';

export default function App() {
  return <Button variant="contained" color="primary">Hello World</Button>
}
Posted by: Guest on August-17-2020
2

material-ui

yarn add @material-ui/core

npm install @material-ui/core
Posted by: Guest on June-11-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language