1use crate::Node; 2 3/// Convert widget as a style wrapper 4pub trait StyleWrapper { 5 /// Converet widget to node 6 fn wrap(self) -> Node; 7}