# Popover ```rust demo view! { "Content" "Content" } ``` ### Placement ```rust demo use leptos_meta::Style; view! { "Content" "Content" "Content" "Content" "Content" "Content" "Content" "Content" "Content" "Content" "Content" "Content" } ``` ### Appearance ```rust demo view! { "Content" "Content" } ``` ### Popover Props | Name | Type | Default | Description | | --------- | ----------------------------------- | ----------------------- | ----------------------------- | | class | `OptionalProp>` | `Default::default()` | Content class of the popover. | | placement | `PopoverPlacement` | `PopoverPlacement::Top` | Popover placement. | | tooltip | `bool` | `false` | Tooltip. | | children | `Children` | | The content inside popover. | ### Popover Slots | Name | Default | Description | | -------------- | ------- | ----------------------------------------------- | | PopoverTrigger | | The element or component that triggers popover. |