pswui/packages/react/stories/Label.stories.tsx
2024-05-28 22:37:03 +09:00

25 lines
406 B
TypeScript

import { Input } from "../components/Input";
import { Label } from "../components/Label";
export default {
title: "React/Label",
};
export const WithInput = () => {
return (
<Label>
<p>Email</p>
<Input type="text" />
</Label>
);
};
export const HorizontalWithInput = () => {
return (
<Label horizontal>
<p>Email</p>
<Input type="text" />
</Label>
);
};