| 3 | /// Represents a rectangle with a specified color and corner radii. |
| 4 | #[derive(Debug, Clone)] |
| 5 | pub struct Rectangle { |
| 6 | /// The fill color of the rectangle. |
| 7 | pub color: Color, |
| 8 | /// The corner radii for rounded edges. |
| 9 | pub corner_radii: CornerRadii, |
| 10 | } |
| 11 | |
| 12 | /// Represents a text element with styling attributes. |
| 13 | #[derive(Debug, Clone)] |
no outgoing calls
no test coverage detected