1use cliux::Note;
2
3fn main() {
4 Note::new("Be careful with this setting.")
5 .kind("warning")
6 .style("rounded")
7 .width(40)
8 .print();
9
10 Note::new("Tip: You can use --force here.")
11 .kind("info")
12 .style("+")
13 .width(40)
14 .print();
15}