v0 release - form components, utilities, and more

Utility components for building
input forms in shadcn/ui.

form state management, validation, submit logic.
just bring your own components.

look. i hate creating user input forms. it's tedious and repetitive. So, I made these utility components to speed up the process.

here's what the library looks like.

<Form>
    <Form.Title>Say hello</Form.Title>

    <Form.Description>
        Write me a cool message here.
    </Form.Description>

    <Label>Name</Label>
    <Form.Field>
        <Input />
    </Form.Field>

    <Label>Message</Label>
    <Form.Field>
        <Textarea />
    </Form.Field>

    <Form.Submit>
        <Button />
    </Form.Submit>
</Form>

thats it. the lib handles all of the state management, validation, and submission logic for you.

all you need to do is bring your own components. here is an example form:

Say hello

Write me a cool message here.

thats literally it. youve now covered all the basics of using this component library.

to get started, click the button below. thanks for checking this project out.

© 2026 Linus Kang. Licensed under MIT.