@ducor/react
Version:
admin template ui interface
8 lines (7 loc) • 1.24 kB
TypeScript
export type TypographyLtr = "Poppins" | "Open Sans" | "Montserrat" | "Roboto" | "Nunito" | "Lato" | "Inter" | "Raleway" | "Merriweather" | "Ubuntu" | "Playfair Display" | "Oswald" | "Work Sans" | "Source Sans Pro" | "Quicksand" | "Bebas Neue" | "Fira Sans" | "Dancing Script" | "Pacifico" | "Muli" | "Barlow" | "Teko" | "Rubik" | "Anton" | "Exo" | "Lobster" | "Arimo" | "Cairo" | "Heebo" | "Kanit" | "Titillium Web" | "Hind" | "Frank Ruhl Libre" | "Bitter" | "Overpass" | "Zilla Slab" | "Manrope" | "Chivo" | "IBM Plex Sans" | "JetBrains Mono" | "Space Grotesk" | "Public Sans" | "Asap" | "Karla" | "Jost" | "Acme" | "Sigmar One" | "Saira" | "Varela Round" | "Secular One" | "PT Sans";
export type TypographyRtl = "Amiri" | "Cairo" | "Scheherazade" | "Noto Naskh Arabic" | "Almarai" | "Tajawal" | "Lalezar" | "Droid Arabic Kufi" | "Roboto Arabic" | "Vazir" | "Traditional Arabic" | "Markazi Text" | "Kufi Arabic" | "Noto Sans Arabic" | "Fira Sans Arabic";
export type Typography = TypographyLtr | TypographyRtl;
type Dir = "ltr" | "rtl";
declare const typographies: Record<Dir, Record<string, string>>;
export declare const getFontFamily: (HTML_DIRECTION: "ltr" | "rtl", TYPOGRAPHY: Typography) => string;
export default typographies;