euv-ui 0.18.2

Reusable UI component library for the euv framework, providing buttons, cards, modals, inputs, and more.
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

/// Props for the [`euv_drawer`] component.
#[derive(Clone, CustomDebug, Default)]
pub struct EuvDrawerProps {
    /// The open state signal; the drawer slides in while set and clicking the
    /// overlay closes it.
    pub open: Signal<bool>,
}