41 lines
831 B
TypeScript
41 lines
831 B
TypeScript
/*
|
|
* File: spacing.ts
|
|
* Description: Spacing and layout system definitions for the Physician App
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export const spacing = {
|
|
xs: 4,
|
|
sm: 8,
|
|
md: 16,
|
|
lg: 24,
|
|
xl: 32,
|
|
xxl: 48,
|
|
xxxl: 64,
|
|
} as const;
|
|
|
|
export const borderRadius = {
|
|
small: 4,
|
|
medium: 8,
|
|
large: 12,
|
|
xlarge: 16,
|
|
round: 50,
|
|
} as const;
|
|
|
|
export const breakpoints = {
|
|
mobile: 375,
|
|
tablet: 768,
|
|
desktop: 1024,
|
|
largeDesktop: 1440,
|
|
} as const;
|
|
|
|
export type SpacingKey = keyof typeof spacing;
|
|
export type BorderRadiusKey = keyof typeof borderRadius;
|
|
export type BreakpointKey = keyof typeof breakpoints;
|
|
|
|
/*
|
|
* End of File: spacing.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|