mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
12 lines
224 B
Svelte
12 lines
224 B
Svelte
<script>
|
|
/** @type {"end" | "front"}*/
|
|
export let clamp = "end";
|
|
</script>
|
|
|
|
<p
|
|
class:bx--text-truncate-end="{clamp === 'end'}"
|
|
class:bx--text-truncate-front="{clamp === 'front'}"
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</p>
|