import React, {Component} from 'react'; import {Row, Col, Card, CardHeader, CardBody, Button} from 'reactstrap'; class Buttons extends Component { render() { return (
Options {' '} {' '} {' '} {' '} {' '} {' '} With Icons Size Large Add this class .btn-lg Size Small Add this class .btn-sm Disabled state Add this disabled="disabled" Active state Add this class .active Block Level Buttons Add this class .btn-block Options With Icons Size Large Add this class .btn-lg Size Small Add this class .btn-sm Disabled state Add this disabled="disabled" Active state Add this class .active Block Level Buttons Add this class .btn-block
) } } export default Buttons;