UNPKG

viewport-playground

Version:

A powerful, isolated viewport testing component for Svelte 5. Test your application's responsiveness in real-time with curated device presets, all within your own development environment.

11 lines (10 loc) 263 B
type $$ComponentProps = { options: { label: string; value: string; }[]; value: string; }; declare const Select: import("svelte").Component<$$ComponentProps, {}, "value">; type Select = ReturnType<typeof Select>; export default Select;