1#[cfg(feature = "black")]
9pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Black.otf");
10
11#[cfg(feature = "blackitalic")]
12pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-BlackItalic.otf");
13
14#[cfg(feature = "bold")]
15pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Bold.otf");
16
17#[cfg(feature = "bolditalic")]
18pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-BoldItalic.otf");
19
20#[cfg(feature = "extrabold")]
21pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraBold.otf");
22
23#[cfg(feature = "extrabolditalic")]
24pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraBoldItalic.otf");
25
26#[cfg(feature = "extralight")]
27pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraLight.otf");
28
29#[cfg(feature = "extralightitalic")]
30pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraLightItalic.otf");
31
32#[cfg(feature = "italic")]
33pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Italic.otf");
34
35#[cfg(feature = "light")]
36pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Light.otf");
37
38#[cfg(feature = "lightitalic")]
39pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-LightItalic.otf");
40
41#[cfg(feature = "medium")]
42pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Medium.otf");
43
44#[cfg(feature = "mediumitalic")]
45pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-MediumItalic.otf");
46
47#[cfg(feature = "regular")]
48pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Regular.otf");
49
50#[cfg(feature = "semibold")]
51pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-SemiBold.otf");
52
53#[cfg(feature = "semibolditalic")]
54pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-SemiBoldItalic.otf");
55
56#[cfg(feature = "thin")]
57pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Thin.otf");
58
59#[cfg(feature = "thinitalic")]
60pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ThinItalic.otf");
61
62#[cfg(feature = "v")]
63pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-V.otf");