1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
use crate::HtmlCommonSharedPropsBuilder;

crate::macros::def_intrinsic_component! {
    "q"
    QuoteComponent(QuoteComponentProps) {
        QuoteComponentProps
        : QuoteComponentPropsBuilder
        : HtmlCommonSharedPropsBuilder[web_sys::HtmlQuoteElement]
        {
            cite: Option<&str>,
        }
    }
}