mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
272 B
Svelte
10 lines
272 B
Svelte
<script lang="ts">
|
|
import { Truncate, truncate } from "../types";
|
|
</script>
|
|
|
|
<Truncate tag="div" clamp="front" aria-label="">
|
|
Carbon Components Svelte is a Svelte component library.
|
|
</Truncate>
|
|
|
|
<div use:truncate></div>
|
|
<div use:truncate="{{ clamp: 'front' }}"></div>
|