Skip to main content

kozan_core/html/
html_paragraph_element.rs

1//! `HTMLParagraphElement` — a paragraph element.
2
3use crate::Handle;
4use kozan_macros::Element;
5
6/// A paragraph element (`<p>`).
7#[derive(Copy, Clone, Element)]
8#[element(tag = "p")]
9pub struct HtmlParagraphElement(Handle);