mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
19 lines
437 B
Svelte
19 lines
437 B
Svelte
<script lang="ts">
|
|
import { TextArea, TextAreaSkeleton } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<TextArea
|
|
value=""
|
|
hideLabel
|
|
light
|
|
rows={10}
|
|
labelText="App description"
|
|
helperText="A rich description helps us better recommend related products and services"
|
|
placeholder="Enter a description..."
|
|
invalid
|
|
invalidText="Only plain text characters are allowed"
|
|
disabled
|
|
on:paste
|
|
/>
|
|
|
|
<TextAreaSkeleton hideLabel />
|