1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use crate::HtmlCommonSharedPropsBuilder;
crate::macros::def_intrinsic_component! {
"a"
AnchorComponent(AnchorComponentProps) {
AnchorComponentProps
: AnchorComponentPropsBuilder
: HtmlCommonSharedPropsBuilder[web_sys::HtmlAnchorElement]
{
download: Option<wasm_bindgen::JsValue>,
href: Option<&str>,
href_lang: Option<&str>,
media: Option<&str>,
ping: Option<&str>,
rel: Option<&str>,
target: Option<crate::AnchorTarget>,
html_type@"type": Option<&str>,
referrer_policy: Option<crate::ReferrerPolicy>,
}
}
}