mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
- Use `SvelteComponent` instead of `SvelteComponentTyped` - use `local` transitions for backwards-compatibility
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
/// <reference types="svelte" />
|
|
import { SvelteComponent } from "svelte";
|
|
|
|
export interface SearchProps
|
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["svg"]> {
|
|
/**
|
|
* @default 16
|
|
*/
|
|
size?: number;
|
|
|
|
/**
|
|
* @default undefined
|
|
*/
|
|
title?: undefined;
|
|
}
|
|
|
|
export default class Search extends SvelteComponent<SearchProps, {}, {}> {}
|