Skip to content

Commit

Permalink
ビルドエラー解消
Browse files Browse the repository at this point in the history
  • Loading branch information
nrak126 committed Sep 3, 2024
1 parent babbb60 commit 5ea1997
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/member/PercentageView.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Box, Flex, Text } from "@radix-ui/themes";
import { ReactElement } from "react";
import { type ReactElement } from "react";

export function PercentageView({ percent }: { percent: number }): ReactElement {
return (
<Box width="100%">
<Flex direction="column" gap="1">
<Text size="5" align="center">
<Text align="center" size="5">
実績解除率
</Text>
<Text size="9" align="center">
<Text align="center" size="9">
{percent}%
</Text>
</Flex>
Expand Down

0 comments on commit 5ea1997

Please sign in to comment.