This commit is contained in:
Manav Rathi
2025-01-16 19:15:25 +05:30
parent 94eef9b596
commit 03c1ff366f

View File

@@ -197,13 +197,13 @@ const NoWatches: React.FC = () => {
</Typography>
<Typography variant={"small"} sx={{ color: "text.muted" }}>
<FlexWrapper gap={1}>
<CheckmarkIcon />
<Check />
{t("watch_folders_hint_2")}
</FlexWrapper>
</Typography>
<Typography variant={"small"} sx={{ color: "text.muted" }}>
<FlexWrapper gap={1}>
<CheckmarkIcon />
<Check />
{t("watch_folders_hint_3")}
</FlexWrapper>
</Typography>
@@ -218,18 +218,12 @@ const NoWatchesContainer = styled(VerticallyCentered)({
marginBottom: "32px",
});
const CheckmarkIcon: React.FC = () => {
return (
<CheckIcon
fontSize="small"
sx={(theme) => ({
display: "inline",
fontSize: "15px",
color: theme.palette.secondary.main,
})}
/>
);
};
const Check: React.FC = () => (
<CheckIcon
fontSize="small"
sx={{ display: "inline", fontSize: "15px", color: "stroke.muted" }}
/>
);
interface WatchEntryProps {
watch: FolderWatch;