@herca/r-kit 0.0.1 → 0.0.3
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/Metropolis-Black-RV2COXD6.woff +0 -0
- package/dist/Metropolis-Black-S2Q63VQJ.woff2 +0 -0
- package/dist/Metropolis-BlackItalic-2MTEJRF5.woff +0 -0
- package/dist/Metropolis-BlackItalic-AGXGSHB3.woff2 +0 -0
- package/dist/Metropolis-Bold-3UMW53NK.woff +0 -0
- package/dist/Metropolis-Bold-R2IWUYA6.woff2 +0 -0
- package/dist/Metropolis-BoldItalic-BZEWBDV2.woff +0 -0
- package/dist/Metropolis-BoldItalic-QP6GPD6Y.woff2 +0 -0
- package/dist/Metropolis-ExtraBold-FA4LY3KX.woff +0 -0
- package/dist/Metropolis-ExtraBold-Q2KCOIJT.woff2 +0 -0
- package/dist/Metropolis-ExtraBoldItalic-7ELOIQWW.woff +0 -0
- package/dist/Metropolis-ExtraBoldItalic-APOXK5RJ.woff2 +0 -0
- package/dist/Metropolis-ExtraLight-35BDDXNB.woff +0 -0
- package/dist/Metropolis-ExtraLight-S27PJ23X.woff2 +0 -0
- package/dist/Metropolis-ExtraLightItalic-JXTIA5LT.woff2 +0 -0
- package/dist/Metropolis-ExtraLightItalic-MPG5JLT2.woff +0 -0
- package/dist/Metropolis-Light-OBLNJYOA.woff +0 -0
- package/dist/Metropolis-Light-Q4ECEYHI.woff2 +0 -0
- package/dist/Metropolis-LightItalic-VDNHRLGW.woff2 +0 -0
- package/dist/Metropolis-LightItalic-YPYHSMD7.woff +0 -0
- package/dist/Metropolis-Medium-2SIZN6Q4.woff2 +0 -0
- package/dist/Metropolis-Medium-JYPBRET4.woff +0 -0
- package/dist/Metropolis-MediumItalic-52ACZQDS.woff +0 -0
- package/dist/Metropolis-MediumItalic-GSFK6DZG.woff2 +0 -0
- package/dist/Metropolis-Regular-QPX6DQZV.woff +0 -0
- package/dist/Metropolis-Regular-TQTXSAX7.woff2 +0 -0
- package/dist/Metropolis-RegularItalic-OA64VRJD.woff +0 -0
- package/dist/Metropolis-RegularItalic-XC6NYR3T.woff2 +0 -0
- package/dist/Metropolis-SemiBold-4CSFUVKQ.woff +0 -0
- package/dist/Metropolis-SemiBold-II7SGWQF.woff2 +0 -0
- package/dist/Metropolis-SemiBoldItalic-CXWZ4OL7.woff +0 -0
- package/dist/Metropolis-SemiBoldItalic-FT64VSVY.woff2 +0 -0
- package/dist/Metropolis-Thin-L2NV73LM.woff +0 -0
- package/dist/Metropolis-Thin-OOT4AARX.woff2 +0 -0
- package/dist/Metropolis-ThinItalic-7JSI5M3V.woff2 +0 -0
- package/dist/Metropolis-ThinItalic-IQXTOS35.woff +0 -0
- package/dist/components/hero/index.js +28 -0
- package/dist/components/hero/index.js.map +1 -0
- package/dist/components/icons/index.js +5965 -0
- package/dist/components/icons/index.js.map +1 -0
- package/dist/index.css +221 -0
- package/dist/index.css.map +1 -0
- package/dist/index.js +23278 -0
- package/dist/index.js.map +1 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// src/components/hero/hero.tsx
|
|
2
|
+
import "react";
|
|
3
|
+
|
|
4
|
+
// src/lib/utils.ts
|
|
5
|
+
import { clsx } from "clsx";
|
|
6
|
+
import { twMerge } from "tailwind-merge";
|
|
7
|
+
function cn(...inputs) {
|
|
8
|
+
return twMerge(clsx(inputs));
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// src/components/hero/hero.tsx
|
|
12
|
+
import { jsx } from "react/jsx-runtime";
|
|
13
|
+
function Hero({ className, ...props }) {
|
|
14
|
+
return /* @__PURE__ */ jsx(
|
|
15
|
+
"div",
|
|
16
|
+
{
|
|
17
|
+
className: cn(
|
|
18
|
+
"w-full rounded-xl bg-linear-to-t from-white to-primary-100 p-12",
|
|
19
|
+
className
|
|
20
|
+
),
|
|
21
|
+
...props
|
|
22
|
+
}
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export {
|
|
26
|
+
Hero
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/components/hero/hero.tsx","../../../src/lib/utils.ts"],"sourcesContent":["import React from \"react\";\nimport { cn } from \"../../lib/utils\";\n\nfunction Hero({ className, ...props }: React.ComponentProps<\"div\">) {\n return (\n <div\n className={cn(\n \"w-full rounded-xl bg-linear-to-t from-white to-primary-100 p-12\",\n className\n )}\n {...props}\n />\n );\n}\n\nexport { Hero };\n","import { clsx, type ClassValue } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n\nexport function fieldHasError(errorMessages: unknown) {\n return typeof errorMessages === \"string\"\n ? errorMessages.trim().length > 0\n : Array.isArray(errorMessages)\n ? errorMessages.length > 0\n : false;\n}\n"],"mappings":";AAAA,OAAkB;;;ACAlB,SAAS,YAA6B;AACtC,SAAS,eAAe;AAEjB,SAAS,MAAM,QAAsB;AAC1C,SAAO,QAAQ,KAAK,MAAM,CAAC;AAC7B;;;ADAI;AAFJ,SAAS,KAAK,EAAE,WAAW,GAAG,MAAM,GAAgC;AAClE,SACE;AAAA,IAAC;AAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACA;AAAA,MACF;AAAA,MACC,GAAG;AAAA;AAAA,EACN;AAEJ;","names":[]}
|