use-svg 0.0.1

Practical SVG utility primitives
Documentation
1
2
3
4
5
6
7
8
9
#[must_use]
pub fn extract_fill_values(input: &str) -> Vec<String> {
    crate::attribute::extract_attribute_values(input, "fill")
}

#[must_use]
pub fn extract_stroke_values(input: &str) -> Vec<String> {
    crate::attribute::extract_attribute_values(input, "stroke")
}