tomodachi-share/src/components/submit-form/mii-editor/tabs/nose.tsx
2026-03-26 17:12:45 +00:00

18 lines
453 B
TypeScript

import { SwitchMiiInstructions } from "@/types";
import NumberInputs from "../number-inputs";
interface Props {
instructions: React.RefObject<SwitchMiiInstructions>;
}
export default function NoseTab({ instructions }: Props) {
return (
<>
<h1 className="absolute font-bold text-xl">Nose</h1>
<div className="size-full flex flex-col justify-center items-center">
<NumberInputs target={instructions.current.nose} />
</div>
</>
);
}