@nexara/nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
22 lines (20 loc) • 367 B
text/typescript
type typographySizeTypes = {
h1: number,
h2: number,
h3: number,
h4: number,
h6: number,
h5: number,
h7: number,
}
const typographySizes: typographySizeTypes = {
h1: 32,
h2: 24,
h3: 18,
h4: 16,
h5: 14,
h6: 12,
h7: 10,
}
export default typographySizes;
export type { typographySizeTypes };