mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* fix(types): add missing `$$restProps` for `Checkbox`, `Filename`, `FluidForm` * Run "yarn build:docs" * test: assert `$$restProps` for `Checkbox`, `Form`
13 lines
340 B
Svelte
13 lines
340 B
Svelte
<script lang="ts">
|
|
import { FluidForm, TextInput, PasswordInput } from "../types";
|
|
</script>
|
|
|
|
<FluidForm action="" method="get">
|
|
<TextInput labelText="User name" placeholder="Enter user name..." required />
|
|
<PasswordInput
|
|
required
|
|
type="password"
|
|
labelText="Password"
|
|
placeholder="Enter password..."
|
|
/>
|
|
</FluidForm>
|