Skip to content

Commit

Permalink
Address faulty React import.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewjordan committed Nov 25, 2024
1 parent daacb88 commit 7c533b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Scroll/Panel/Language/Language.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import React, { CSSProperties, useContext } from "react";

import LanguageOption from "./Option";
import { Popover } from "src/components/UI";
import { ScrollContext } from "src/context/scroll-context";
import { StyledScrollLanguage } from "./Language.styled";
import { extractLanguages } from "src/lib/annotation-helpers";
import { useContext } from "react";

const LanguageIcon = ({
title,
style = {},
}: {
title: string;
style?: React.CSSProperties;
style?: CSSProperties;
}) => {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" style={style}>
Expand Down

0 comments on commit 7c533b1

Please sign in to comment.