""" Label component module. """ from duck.html.components import Theme, InnerHtmlComponent [docs] class Label(InnerHtmlComponent): """ Basic Label component. """ [docs] def get_element(self): return "label"