diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-04 21:14:35 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-04 21:14:35 -0700 |
commit | d802dae10b26f59893380829feea3104b0650e14 (patch) | |
tree | b469c5d9661a79605dcf97f481db8c6dc040cc63 /extension/react-app/src/components/StepContainer.tsx | |
parent | b28a087649330f13dcf4208150eaa6c04a609e7c (diff) | |
download | sncontinue-d802dae10b26f59893380829feea3104b0650e14.tar.gz sncontinue-d802dae10b26f59893380829feea3104b0650e14.tar.bz2 sncontinue-d802dae10b26f59893380829feea3104b0650e14.zip |
new stop
Diffstat (limited to 'extension/react-app/src/components/StepContainer.tsx')
-rw-r--r-- | extension/react-app/src/components/StepContainer.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx index ab0d307f..492857b5 100644 --- a/extension/react-app/src/components/StepContainer.tsx +++ b/extension/react-app/src/components/StepContainer.tsx @@ -13,6 +13,9 @@ import { XMark, ArrowPath, } from "@styled-icons/heroicons-outline"; +import { + Stop, +} from "@styled-icons/heroicons-solid"; import { HistoryNode } from "../../../schema/HistoryNode"; import ReactMarkdown from "react-markdown"; import HeaderButtonWithText from "./HeaderButtonWithText"; @@ -208,7 +211,7 @@ function StepContainer(props: StepContainerProps) { }} text="Delete" > - <XMark size="1.6em" onClick={props.onDelete} /> + <Stop size="1.6em" onClick={props.onDelete} /> </HeaderButtonWithText> {props.historyNode.observation?.error ? ( <HeaderButtonWithText |