From db499881a9e2c39b64c1e9467e46a50d6ec8a7d3 Mon Sep 17 00:00:00 2001 From: Mark Mankarious Date: Tue, 28 Mar 2023 23:14:11 +0100 Subject: [PATCH] fix: typings --- src/components/Sidebars/Icons/Icon.tsx | 2 +- src/components/Sidebars/Icons/IconCategory.tsx | 2 +- src/components/Sidebars/Icons/index.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Sidebars/Icons/Icon.tsx b/src/components/Sidebars/Icons/Icon.tsx index fca9f50..62deaec 100644 --- a/src/components/Sidebars/Icons/Icon.tsx +++ b/src/components/Sidebars/Icons/Icon.tsx @@ -2,7 +2,7 @@ import React from "react"; import Box from "@mui/material/Box"; import Stack from "@mui/material/Stack"; import Typography from "@mui/material/Typography"; -import { Icon as IconI } from "../../../types"; +import { IconI } from "../../../validation/SceneSchema"; interface Props { icon: IconI; diff --git a/src/components/Sidebars/Icons/IconCategory.tsx b/src/components/Sidebars/Icons/IconCategory.tsx index 93276bb..d88ec3d 100644 --- a/src/components/Sidebars/Icons/IconCategory.tsx +++ b/src/components/Sidebars/Icons/IconCategory.tsx @@ -1,6 +1,6 @@ import React from "react"; import Grid from "@mui/material/Grid"; -import { Icon as IconI } from "../../../types"; +import { IconI } from "../../../validation/SceneSchema"; import { Icon } from "./Icon"; import { Section } from "../../Sidebar/Section"; diff --git a/src/components/Sidebars/Icons/index.tsx b/src/components/Sidebars/Icons/index.tsx index 04e3dff..ddb4d4b 100644 --- a/src/components/Sidebars/Icons/index.tsx +++ b/src/components/Sidebars/Icons/index.tsx @@ -2,7 +2,7 @@ import React from "react"; import { useMemo } from "react"; import Grid from "@mui/material/Grid"; import { IconCategory } from "./IconCategory"; -import { Icon as IconI } from "../../../types"; +import { IconI } from "../../../validation/SceneSchema"; import { Sidebar } from "../../Sidebar"; import { Header } from "../../Sidebar/Header";