1#[cfg(feature = "bold")]
3pub const BOLD: &'static [u8] = include_bytes!("../assets/FiraCode-Bold.ttf");
4
5#[cfg(feature = "light")]
7pub const LIGHT: &'static [u8] = include_bytes!("../assets/FiraCode-Light.ttf");
8
9#[cfg(feature = "medium")]
11pub const MEDIUM: &'static [u8] = include_bytes!("../assets/FiraCode-Medium.ttf");
12
13#[cfg(feature = "regular")]
15pub const REGULAR: &'static [u8] = include_bytes!("../assets/FiraCode-Regular.ttf");
16
17#[cfg(feature = "retina")]
19pub const RETINA: &'static [u8] = include_bytes!("../assets/FiraCode-Retina.ttf");