-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix TypeError: (0 , c.jsxDEV) is not a function (#9)
- Loading branch information
Showing
39 changed files
with
267 additions
and
342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {}; |
Oops, something went wrong.