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.

9 lines (8 loc) 302 B
import type { HTMLButtonAttributes } from 'svelte/elements'; type $$ComponentProps = { children: any; size?: 'normal' | 'icon'; } & HTMLButtonAttributes; declare const Button: import("svelte").Component<$$ComponentProps, {}, "">; type Button = ReturnType<typeof Button>; export default Button;