@umituz/atomic-next 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import Image2 from 'next/image';
|
|
|
10
10
|
import Link from 'next/link';
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* @umituz/atomic-next
|
|
13
|
+
* @umituz/atomic-next
|
|
14
14
|
* Atomic design system for Next.js
|
|
15
15
|
* https://umituz.com/opensource/atomic-next
|
|
16
16
|
*/
|
|
@@ -885,9 +885,15 @@ var textVariants = cva("", {
|
|
|
885
885
|
h5: "scroll-m-20 text-lg font-semibold tracking-tight",
|
|
886
886
|
h6: "scroll-m-20 text-base font-semibold tracking-tight",
|
|
887
887
|
body: "text-base leading-7",
|
|
888
|
+
base: "text-base leading-7",
|
|
888
889
|
large: "text-lg leading-7",
|
|
890
|
+
lg: "text-lg leading-7",
|
|
889
891
|
small: "text-sm leading-6",
|
|
892
|
+
sm: "text-sm leading-6",
|
|
890
893
|
xs: "text-xs leading-5",
|
|
894
|
+
xl: "text-xl leading-7",
|
|
895
|
+
"2xl": "text-2xl leading-8",
|
|
896
|
+
"3xl": "text-3xl leading-9",
|
|
891
897
|
lead: "text-xl leading-7 text-muted-foreground",
|
|
892
898
|
muted: "text-sm text-muted-foreground",
|
|
893
899
|
caption: "text-xs text-muted-foreground",
|