30 lines
817 B
JavaScript
Executable File
30 lines
817 B
JavaScript
Executable File
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
Button,
|
|
Input
|
|
} from './../../../components';
|
|
|
|
const ChatCardFooter = () => (
|
|
<React.Fragment>
|
|
<InputGroup>
|
|
<InputGroupAddon addonType="prepend">
|
|
<Button color="secondary" outline>
|
|
<i className="fa fa fa-paperclip"></i>
|
|
</Button>
|
|
</InputGroupAddon>
|
|
<Input placeholder="Your message..." />
|
|
<InputGroupAddon addonType="append">
|
|
<Button color="primary" tag={ Link } to="/apps/chat">
|
|
<i className="fa fa fa-send"></i>
|
|
</Button>
|
|
</InputGroupAddon>
|
|
</InputGroup>
|
|
</React.Fragment>
|
|
)
|
|
|
|
export { ChatCardFooter };
|