61 lines
2.2 KiB
TypeScript
61 lines
2.2 KiB
TypeScript
|
|
import { DialogBody, DialogCloseTrigger, DialogContent, DialogFooter, DialogHeader, DialogRoot, DialogTitle, DialogTrigger } from "../../../components/ui/dialog"
|
||
|
|
import { Box, Field, IconButton, Input, Stack, Text, Textarea } from "@chakra-ui/react"
|
||
|
|
import { Button } from "../../../components/ui/button"
|
||
|
|
import { FaRegEdit } from "react-icons/fa";
|
||
|
|
|
||
|
|
|
||
|
|
function EditWorkModel() {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
return (
|
||
|
|
|
||
|
|
<DialogRoot placement="center">
|
||
|
|
<DialogTrigger asChild>
|
||
|
|
{/* <Button bg={"transparent"} size="sm">
|
||
|
|
<MdOutlineRemoveRedEye style={{ cursor: "pointer", fontSize: "16px" }} />
|
||
|
|
</Button> */}
|
||
|
|
<Button bg={"transparent"} size="sm">
|
||
|
|
<FaRegEdit style={{ cursor: "pointer", fontSize: "14px" }} color="#000"/>
|
||
|
|
</Button>
|
||
|
|
|
||
|
|
</DialogTrigger>
|
||
|
|
|
||
|
|
<DialogContent
|
||
|
|
bg={"#fff"}
|
||
|
|
// w={{ lg: "60%", md: "230px" }}
|
||
|
|
w={{ base: '90%', md: '400px' }}
|
||
|
|
height={'auto'}
|
||
|
|
|
||
|
|
overflowX="hidden"
|
||
|
|
p={3} // Reduced padding
|
||
|
|
bgSize={'md'}
|
||
|
|
>
|
||
|
|
<DialogHeader bg="white" >
|
||
|
|
<DialogTitle alignSelf="center" color="black" fontSize="14px">Edit</DialogTitle>
|
||
|
|
</DialogHeader>
|
||
|
|
|
||
|
|
<DialogBody bg="white">
|
||
|
|
<Stack py={3}>
|
||
|
|
|
||
|
|
<Field.Root>
|
||
|
|
<Field.Label color="black" pt={1} fontSize="12px">Workspace Mode</Field.Label>
|
||
|
|
<Input value="Lorem Ipsum" bgColor="#EEEEEE" color="black" border="none" pl={1} fontSize="12px" height="30px" />
|
||
|
|
</Field.Root>
|
||
|
|
</Stack>
|
||
|
|
|
||
|
|
</DialogBody>
|
||
|
|
<DialogFooter display="flex" justifyContent="center" pt={"2"}>
|
||
|
|
<Button w="100%" bg="#02A0A0" color={"#fff"}>
|
||
|
|
Save
|
||
|
|
</Button>
|
||
|
|
</DialogFooter>
|
||
|
|
|
||
|
|
<DialogCloseTrigger color="black" />
|
||
|
|
</DialogContent>
|
||
|
|
</DialogRoot >
|
||
|
|
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default EditWorkModel
|