UNPKG

viewport-playground

Version:

```ts import {ViewportPlayground, enterPlayground} from 'viewport-playground'

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;