mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 03:14:29 +00:00
chore: fix pkg setup
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
{
|
||||
"name": "@zitadel/next",
|
||||
"version": "0.0.0",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"sideEffects": false,
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
|
||||
@@ -4,7 +4,5 @@ export type ZitadelNextProps = {
|
||||
};
|
||||
|
||||
export function ZitadelNextProvider({ dark, children }: ZitadelNextProps) {
|
||||
return (
|
||||
<div className={`${dark ? "ztdl-dark" : "ztdl-light"} `}>{children}</div>
|
||||
);
|
||||
return <div className={`${dark ? "ztdl-dark" : "ztdl-light"} `}>{children}</div>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user