Skip to main content

aetna_fonts_inter/
lib.rs

1//! Inter Variable bundled for Aetna.
2//!
3//! Each face exposes a `pub static FOO: &[u8]` constant that
4//! `aetna-fonts` re-exports when the `inter` feature is enabled.
5
6#![no_std]
7
8pub static INTER_VARIABLE: &[u8] = include_bytes!("../fonts/InterVariable.ttf");
9pub static INTER_VARIABLE_ITALIC: &[u8] = include_bytes!("../fonts/InterVariable-Italic.ttf");