pub trait ParamComponentPropsBuilder: Sized + AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlParamElement> {
    fn name(self, v: Option<&str>) -> Self { ... }
fn default_value<TValue: AsHtmlTextValue>(self, v: Option<TValue>) -> Self { ... }
fn value<TValue: AsHtmlTextValue>(self, v: Option<TValue>) -> Self { ... } }

Provided methods

Implementors