web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

styles.ts (401B)


      1 import type { LoadingDimension } from "@radroots/apps-lib";
      2 
      3 export const LOADING_STYLE_MAP: Map<LoadingDimension, { dim_1: number; gl_2: number }> = new Map([
      4     ["glyph-send-button", { dim_1: 20, gl_2: 20 }],
      5     ["xs", { dim_1: 12, gl_2: 12 }],
      6     ["sm", { dim_1: 16, gl_2: 16 }],
      7     ["md", { dim_1: 20, gl_2: 20 }],
      8     ["lg", { dim_1: 28, gl_2: 28 }],
      9     ["xl", { dim_1: 36, gl_2: 36 }],
     10 ]);