kf.Text("Hello, world!")kf.Link(
"Links",
"https://github.com/konstfish/ui")kf.Panel(kf.Text("Panels"))kf.GroupClass("button-display",
kf.Button("Button"),
kf.ButtonDanger("Button Danger"))kf.Input("Placeholder")kf.Dropdown([]string{
"Option 1",
"Option 2",
"Option 3"})kf.Spinner("Loading...")kf.Fieldset(
"Fieldset",
kf.Text("Fieldset Content"))kf.List(TODO)