carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
23 lines (16 loc) • 502 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type $RestProps = SvelteHTMLElements["svg"];
type $Props = {
/**
* @default 16
*/
size?: number;
/**
* @default undefined
*/
title?: undefined;
[key: `data-${string}`]: unknown;
};
export type EditOffProps = Omit<$RestProps, keyof $Props> & $Props;
export default class EditOff extends SvelteComponentTyped<EditOffProps, Record<string, any>, Record<string, never>> {}