UNPKG

@activelylearn/material-ui

Version:

Material-UI's workspace package

17 lines (14 loc) 393 B
// @flow import React from 'react'; import Button from '@material-ui/core/Button'; export default function MultilineButton() { return ( <Button variant="raised" style={{ width: 400 }}> {[ 'Raised buttons are rectangular-shaped buttons.', 'They may be used inline.', 'They lift and display ink reactions on press.', ].join(' ')} </Button> ); }