MCPcopy Create free account
hub / github.com/BuilderIO/mitosis / ButtonHTMLAttributes

Interface ButtonHTMLAttributes

packages/core/jsx-runtime.d.ts:356–375  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

354 }
355
356 interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
357 autofocus?: boolean;
358 disabled?: boolean;
359 form?: string;
360 formaction?: string;
361 formenctype?: HTMLFormEncType;
362 formmethod?: HTMLFormMethod;
363 formnovalidate?: boolean;
364 formtarget?: string;
365 name?: string;
366 type?: 'submit' | 'reset' | 'button';
367 value?: string;
368
369 // camelcase
370 formAction?: string;
371 formEnctype?: HTMLFormEncType;
372 formMethod?: HTMLFormMethod;
373 formNoValidate?: boolean;
374 formTarget?: string;
375 }
376
377 interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
378 width?: number | string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…