Remove unused

This commit is contained in:
Manav Rathi
2024-09-09 14:48:06 +05:30
parent 34897247dd
commit 8306b5d534
2 changed files with 0 additions and 22 deletions

View File

@@ -1,12 +0,0 @@
import { Box, Divider, Typography } from "@mui/material";
export function LabelWithDivider({ data }) {
return (
<>
<Box className="main" px={3} py={1}>
<Typography>{data.label}</Typography>
</Box>
<Divider sx={{ borderColor: "stroke.fainter" }} />
</>
);
}

View File

@@ -1,10 +0,0 @@
import { components } from "react-select";
import { LabelWithDivider } from "./LabelWithDivider";
const { Option } = components;
export const OptionWithDivider = (props) => (
<Option {...props}>
<LabelWithDivider data={props.data} />
</Option>
);