iced-yoda/wgpu/src/renderer/widget.rs
Héctor Ramón Jiménez 232d4873ba Put svg rendering behind a feature gate
This reduces binary size when SVG supoprt is not needed.
2019-12-15 06:45:20 +01:00

13 lines
157 B
Rust

mod button;
mod checkbox;
mod column;
mod image;
mod radio;
mod row;
mod scrollable;
mod slider;
mod text;
mod text_input;
#[cfg(feature = "svg")]
mod svg;