mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
19 lines
318 B
Svelte
19 lines
318 B
Svelte
<script>
|
|
import { setContext } from "svelte";
|
|
import Form from "../Form/Form.svelte";
|
|
|
|
setContext("Form", { isFluid: true });
|
|
</script>
|
|
|
|
<Form
|
|
{...$$restProps}
|
|
class="bx--form--fluid {$$restProps.class}"
|
|
on:click
|
|
on:keydown
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
on:submit
|
|
>
|
|
<slot />
|
|
</Form>
|