react-html 1.0.0-alpha.8

react html components for frender
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>,
        }
    }
}