@useloops/design-system
Version:
The official React based Loops design system
33 lines (30 loc) • 619 B
TypeScript
import { FontWeight } from './types.js';
declare const fonts: {
Domaine: {
name: string;
default: {
fileName: string;
weight: FontWeight;
};
bold: {
fileName: string;
weight: FontWeight;
};
};
FoundersGrotesk: {
name: string;
default: {
fileName: string;
weight: FontWeight;
};
bold: {
fileName: string;
weight: FontWeight;
};
};
FontStack: {
Serif: string;
SansSerif: string;
};
};
export { fonts };