Skip to content

Commit

Permalink
Exchanged old icons with react icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Bianca Wentzel committed Dec 16, 2024
1 parent f77876f commit f890cf5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions assets/js/Containers/FrevaGPT/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ import {
import { browserHistory } from "react-router";
import { isEmpty } from "lodash";

import { FaStop, FaPlay } from "react-icons/fa";

import Spinner from "../../Components/Spinner";

import ChatBlock from "./components/ChatBlock";
Expand Down Expand Up @@ -378,14 +380,14 @@ class FrevaGPT extends React.Component {
/>
{this.state.loading ? (
<Button variant="outline-danger" onClick={this.handleStop}>
<i className="bi bi-stop-fill"></i>
<FaStop />
</Button>
) : (
<Button
variant="outline-success"
onClick={this.submitUserInput}
>
<i className="bi bi-play-fill"></i>
<FaPlay />
</Button>
)}
</InputGroup>
Expand Down

0 comments on commit f890cf5

Please sign in to comment.