stylex_constants/constants/cursor_flip.rs
1use phf::phf_map;
2
3pub static CURSOR_FLIP: phf::Map<&'static str, &'static str> = phf_map! {
4 "e-resize" => "w-resize",
5 "w-resize" => "e-resize",
6 "ne-resize" => "nw-resize",
7 "nesw-resize" => "nwse-resize",
8 "nw-resize" => "ne-resize",
9 "nwse-resize" => "nesw-resize",
10 "se-resize" => "sw-resize",
11 "sw-resize" => "se-resize",
12};