From 58e2791ab2bee91140ed01750c70eb02badd31c4 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 25 Jul 2024 22:47:09 +0530 Subject: [PATCH] chore:lint --- src/components/atoms/ConfirmationBox.tsx | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/atoms/ConfirmationBox.tsx b/src/components/atoms/ConfirmationBox.tsx index 8048dad4..bd967f85 100644 --- a/src/components/atoms/ConfirmationBox.tsx +++ b/src/components/atoms/ConfirmationBox.tsx @@ -3,22 +3,22 @@ import styled from 'styled-components'; import { Box, Button, IconButton, Stack, Typography } from "@mui/material"; interface ConfirmationBoxProps { - selector: string; - onClose: () => void; + selector: string; + onClose: () => void; } const ConfirmationBox = ({ selector, onClose }: ConfirmationBoxProps) => { - return ( - - - Do you want to proceed? - - - Selector: {selector} -
{selector}
-
-
- ); + return ( + + + Do you want to proceed? + + + Selector: {selector} +
{selector}
+
+
+ ); }; const ConfirmationBoxContainer = styled.div`