chore: remove Truncate since it does not exist in Carbon v11

This commit is contained in:
Gregor Wassmann 2023-03-31 23:04:23 +02:00 committed by Enrico Sacchetti
commit 5833536199
No known key found for this signature in database
GPG key ID: 3374B89ECA60D796
13 changed files with 3 additions and 191 deletions

View file

@ -1,19 +0,0 @@
import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type RestProps = SvelteHTMLElements["p"];
export interface TruncateProps extends RestProps {
/**
* @default "end"
*/
clamp?: "end" | "front";
[key: `data-${string}`]: any;
}
export default class Truncate extends SvelteComponentTyped<
TruncateProps,
Record<string, any>,
{ default: {} }
> {}