Skip to content

Commit

Permalink
fix TypeError: (0 , c.jsxDEV) is not a function (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Enalmada authored Oct 10, 2023
1 parent 60b6d5f commit 3c04b7c
Show file tree
Hide file tree
Showing 39 changed files with 267 additions and 342 deletions.
5 changes: 5 additions & 0 deletions .changeset/six-trainers-move.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@enalmada/nextui-admin': patch
---

fix TypeError: (0 , c.jsxDEV) is not a function
2 changes: 1 addition & 1 deletion build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ await Bun.build({
target: 'browser',
external: ['@nextui-org/react', 'clsx', 'framer-motion', 'next', 'next-themes', 'react'],
root: './src',
});
});
3 changes: 2 additions & 1 deletion dist/icons/accounts/dots-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const DotsIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const DotsIcon: () => React.JSX.Element;
3 changes: 2 additions & 1 deletion dist/icons/accounts/export-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const ExportIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const ExportIcon: () => React.JSX.Element;
3 changes: 2 additions & 1 deletion dist/icons/accounts/info-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const InfoIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const InfoIcon: () => React.JSX.Element;
3 changes: 2 additions & 1 deletion dist/icons/accounts/trash-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const TrashIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const TrashIcon: () => React.JSX.Element;
3 changes: 2 additions & 1 deletion dist/icons/breadcrumb/house-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const HouseIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const HouseIcon: () => React.JSX.Element;
3 changes: 2 additions & 1 deletion dist/icons/breadcrumb/users-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const UsersIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const UsersIcon: () => React.JSX.Element;
2 changes: 1 addition & 1 deletion dist/icons/sidebar/chevron-up-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
interface Props extends React.SVGAttributes<SVGElement> {
}
export declare const ChevronUpIcon: ({ ...props }: Props) => import("react/jsx-runtime").JSX.Element;
export declare const ChevronUpIcon: ({ ...props }: Props) => React.JSX.Element;
export {};
3 changes: 2 additions & 1 deletion dist/icons/sidebar/settings-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export declare const SettingsIcon: () => import("react/jsx-runtime").JSX.Element;
import React from "react";
export declare const SettingsIcon: () => React.JSX.Element;
3 changes: 2 additions & 1 deletion dist/icons/table/delete-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from "react";
interface Props {
size?: number;
fill?: string;
width?: number;
height?: number;
}
export declare const DeleteIcon: ({ fill, size, height, width, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
export declare const DeleteIcon: ({ fill, size, height, width, ...props }: Props) => React.JSX.Element;
export {};
3 changes: 2 additions & 1 deletion dist/icons/table/edit-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from "react";
interface Props {
size?: number;
fill?: string;
width?: number;
height?: number;
}
export declare const EditIcon: ({ fill, size, height, width, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
export declare const EditIcon: ({ fill, size, height, width, ...props }: Props) => React.JSX.Element;
export {};
3 changes: 2 additions & 1 deletion dist/icons/table/eye-icon.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from "react";
interface Props {
size?: number;
fill?: string;
width?: number;
height?: number;
}
export declare const EyeIcon: ({ fill, size, height, width, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
export declare const EyeIcon: ({ fill, size, height, width, ...props }: Props) => React.JSX.Element;
export {};
Loading

0 comments on commit 3c04b7c

Please sign in to comment.