Files
MyFastHtml/src/myfasthtml/controls/button.py
Kodjo Sossouvi 0f5fc696f0 Added icons
Updated README.md
Started test framework utils
2025-10-24 12:24:10 +02:00

12 lines
292 B
Python

from fasthtml.components import *
from myfasthtml.core.commands import Command
def mk_button(element, command: Command = None, **kwargs):
if command is None:
return Button(element, **kwargs)
htmx = command.get_htmx_params()
return Button(element, **htmx, **kwargs)