1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
use crate::HtmlCommonSharedPropsBuilder;

crate::macros::def_intrinsic_component! {
    "area"
    AreaComponent(AreaComponentProps) {
        AreaComponentProps
        : AreaComponentPropsBuilder
        : HtmlCommonSharedPropsBuilder[web_sys::HtmlAreaElement]
        {
            alt: Option<&str>,
            coords: Option<&str>,
            download: Option<wasm_bindgen::JsValue>,
            href: Option<&str>,
            href_lang: Option<&str>,
            media: Option<&str>,
            referrer_policy: crate::ReferrerPolicy,
            rel: Option<&str>,
            shape: Option<&str>,
            target: Option<&str>,
        }
    }
}