1use super::*;
23/// 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.
8pub open: Signal<bool>,
9}