Expand description
svg element let’s you display SVG code.
For dynamic SVGs you may use dynamic_bytes.
§Example
static FERRIS: &[u8] = include_bytes!("_docs/ferris.svg");
fn app() -> Element {
    let ferris = static_bytes(FERRIS);
    rsx!(
        svg {
            svg_data: ferris,
            width: "100%", // You must specify size otherwhise it will default to 0
            height: "100%",
        }
    )
}Constants§
- Thecolorattribute lets you specify the color of the text.
- Thefillattributes allows you to specify the fill or stroke color for thesvg.
- Specify the width for the given element.
- Specify the margin of an element. You can do so by four different ways, just like in CSS.
- Specify a maximum height for the given element.
- Specify a maximum width for the given element.
- This can be useful if you use it alongside a percentage for the target size.
- Specify a minimum height for the given element. This can be useful if you use it alongside a percentage for the target size.
- Specify how you want the element to be positioned inside it’s parent area.
- Thestrokeattributes allows you to specify the fill or stroke color for thesvg.
- Specify the height for the given element.