Skip to main content

use_svg/
color.rs

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