mirror of
https://github.com/penpot/penpot.git
synced 2026-05-05 16:18:35 +00:00
7 lines
119 B
Rust
7 lines
119 B
Rust
use super::Corners;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default)]
|
|
pub struct Rect {
|
|
pub corners: Option<Corners>,
|
|
}
|