mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
35 lines
622 B
Plaintext
35 lines
622 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`<TextAreaInput /> > labelTitle > sets label 1`] = `
|
|
<div
|
|
class="form-control w-full "
|
|
>
|
|
<label
|
|
class="label"
|
|
>
|
|
<span
|
|
class="label-text text-base-content "
|
|
>
|
|
My Title
|
|
</span>
|
|
</label>
|
|
<textarea
|
|
class="textarea textarea-bordered w-full leading-5 "
|
|
placeholder=""
|
|
required=""
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`<TextAreaInput /> > renders properly 1`] = `
|
|
<div
|
|
class="form-control w-full "
|
|
>
|
|
<textarea
|
|
class="textarea textarea-bordered w-full leading-5 "
|
|
placeholder=""
|
|
required=""
|
|
/>
|
|
</div>
|
|
`;
|