Skip to content

Commit

Permalink
Remove unused WordAnim component
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaBobs committed Jan 12, 2024
1 parent b9e3ea4 commit d2703c2
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/japanese/systems/SystemsOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Stack } from "@src/common/stack/Stack";
import { KanaTable } from "@src/japanese/kana-table/KanaTable";

import "@src/japanese/systems/SystemsOverview.scss";
import React from "react";

export function SystemsOverview() {
return (
Expand Down Expand Up @@ -241,26 +240,6 @@ export function SystemsOverview() {
);
}

function WordAnim(props: {
stub: React.ReactNode;
stubSuffix: React.ReactNode;
teSuffix: React.ReactNode;
}) {
return (
<Flex right slim>
{props.stub}
<span>
<span className="te-form-stub-suffix">{props.stubSuffix}</span>
<span className="te-form-te-suffix">
<Flex right slim itemsPlacement="center">
{props.teSuffix}
</Flex>
</span>
</span>
</Flex>
);
}

function Kana(props: { kana: string; romaji: string; replacement?: boolean }) {
return (
<Flex
Expand Down

0 comments on commit d2703c2

Please sign in to comment.