1#lang scribble/doc
2@(require "common.rkt")
3
4@defclass/title[embedded-text-button% snip-wrapper% (alignment<%>)]{
5
6A button with a text label.
7
8@defconstructor[([label string?]
9                 [callback ((is-a?/c text-button-snip%) (is-a?/c event%) . -> . void?)])]{
10
11The @racket[callback] is called when the button is clicked.}
12
13}
14