summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/UserInputContainer.tsx
blob: 7d6f0d4ead03b19d87bae64d31750f3f35c568f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import React from "react";
import ReactMarkdown from "react-markdown";
import styled from "styled-components";
import { buttonColor, secondaryDark } from ".";
import HeaderButtonWithText from "./HeaderButtonWithText";
import { Play, XMark } from "@styled-icons/heroicons-outline";
import { RootStore } from "../redux/store";
import { useSelector } from "react-redux";

interface UserInputContainerProps {
  onDelete: () => void;
  children: string;
}

const StyledDiv = styled.div`
  background-color: rgb(50 50 50);
  padding: 8px;
  padding-left: 16px;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 2px;
`;

const DeleteButton = styled.button`
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
`;

const UserInputContainer: React.FC<UserInputContainerProps> = ({
  children,
  onDelete,
}) => {
  return (
    <StyledDiv>
      {children}
      <HeaderButtonWithText
        onClick={(e) => {
          e.stopPropagation();
          onDelete();
        }}
        text="Delete"
      >
        <XMark size="1.6em" onClick={onDelete} />
      </HeaderButtonWithText>
    </StyledDiv>
  );
};

export default UserInputContainer;