UNPKG

@senka-ai/ui

Version:

A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns

11 lines 639 B
import type { BaseProps, SizedComponent, VariantComponent, ClickHandler, InteractiveHandlers } from '../../type/component'; interface Props extends BaseProps, SizedComponent, VariantComponent<'pin' | 'current'>, ClickHandler, InteractiveHandlers { /** Whether the current location variant should pulse @default false */ pulse?: boolean; /** Custom color for the pin @default undefined (uses theme colors) */ color?: string; } declare const LocationPin: import("svelte").Component<Props, {}, "">; type LocationPin = ReturnType<typeof LocationPin>; export default LocationPin; //# sourceMappingURL=LocationPin.svelte.d.ts.map