Skip to main content

euv_ui/component/drawer/view/
struct.rs

1use super::*;
2
3/// Props for the [`euv_drawer`] component.
4#[derive(Clone, CustomDebug, Default)]
5pub struct EuvDrawerProps {
6    /// The open state signal; the drawer slides in while set and clicking the
7    /// overlay closes it.
8    pub open: Signal<bool>,
9}