mirror of
https://github.com/penpot/penpot.git
synced 2025-07-30 00:07:17 +02:00
6 lines
119 B
Rust
6 lines
119 B
Rust
use super::Corners;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default)]
|
|
pub struct Rect {
|
|
pub corners: Option<Corners>,
|
|
}
|