import React from 'react'; import Widget from '../../../Widget'; import { Button, OutlineButton, CircleButton, RaisedButton, FlatButton } from '../../../../../Components/Button'; import { ButtonGroup, Row } from 'reactstrap'; const onHoverStyle = { backgroundColor: '#e5f5f5', color: '#2525c5', }; const Buttons: React.FC = () => { return (
Buttons
Buttons
Default button styles
1
Outlined buttons
Outlined button styles
1
Outlined buttons
Outlined button styles
Button Button 1
Flat buttons
Flat button styles
Button Button 1
Raised buttons
Raised button styles
Button Button 1
Button groups
Button group sizes
Left Center Right Left Center Right
); }; export default Buttons;