mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 12:13:10 -05:00
15 lines
305 B
TypeScript
15 lines
305 B
TypeScript
import { Image, ImageProps } from "@chakra-ui/core";
|
|
|
|
interface ModeImageProps {
|
|
mode: "SZ" | "TC" | "RM" | "CB";
|
|
}
|
|
|
|
const ModeImage: React.FC<ModeImageProps & ImageProps> = ({
|
|
mode,
|
|
...props
|
|
}) => {
|
|
return <Image src={`/images/modeIcons/${mode}.png`} {...props} />;
|
|
};
|
|
|
|
export default ModeImage;
|