Remove stale import from styled-engine

This commit is contained in:
Manav Rathi 2024-04-01 16:50:41 +05:30
parent eced463f6f
commit 3b3d314f9c
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import styled from "@emotion/styled";
import { styled } from "@mui/material";
const colourPool = [
"#87CEFA", // Light Blue
@ -43,7 +43,7 @@ export default function LargeType({ chars }: { chars: string[] }) {
);
}
const Container = styled.div`
const Container = styled("div")`
font-size: 4rem;
font-weight: bold;
font-family: monospace;

View file

@ -1,6 +1,5 @@
import { Row } from "@ente/shared/components/Container";
import { Box } from "@mui/material";
import styled from "@mui/styled-engine";
import { Box, styled } from "@mui/material";
import { PeopleList } from "components/MachineLearning/PeopleList";
import { t } from "i18next";
import { AppContext } from "pages/_app";