UNPKG

m3-svelte

Version:

M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://ktibow.github.io/m3-svelte/) for demos and usage instructions.

4 lines (3 loc) 206 B
import type { HTMLButtonAttributes } from "svelte/elements"; export type NotButton<T> = Omit<T, "onclick">; export type ButtonAttrs = HTMLButtonAttributes & Required<Pick<HTMLButtonAttributes, "onclick">>;