2024-06-03 21:18:15 +09:00

12 lines
243 B
TypeScript

import { Label } from "@components/Label";
import { Input } from "@components/Input";
export function Disabled() {
return (
<Label direction="vertical">
<span>Email</span>
<Input type="email" disabled />
</Label>
);
}