// SVG drawing constants
pub const SVG_OPEN_TAG: &str = r#"";
// Sylistic constants
pub const BLACK: &str = "black";
/// Helper function to create an SVG text entitty.
pub fn draw_text(text: String, x_pos: f64, y_pos: f64, fill: &str) -> String {
format!(r#"{text}"#)
}