mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 19:01:05 +00:00
12 lines
222 B
Svelte
12 lines
222 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>
|