Remix
Remix
remix/ui/button · TypeView Source

ButtonProps

Summary

Props accepted by the Button component.

Extends the native <button> element props with optional icon slots and a tone variant

Signature

type ButtonProps = Omit<Props<"button">, "children"> & {
  children?: RemixNode;
  endIcon?: RemixNode;
  startIcon?: RemixNode;
  tone?: ButtonTone;
};