Skip to content

Commit

Permalink
fix: types issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhadip committed Oct 22, 2023
1 parent cd374e9 commit 7d6d1f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export as namespace ReactViteComponentLibrary;
declare namespace ReactViteComponentLibrary {
export const AppButton: (props: IButtonProps) => JSX.Element;
export const AppTextBox: (props: ITextBoxProps) => JSX.Element;
export const Eye: ({ color?: string }) => JSX.Element;
export const TailessArrow: ({
export const Eye: ({ color }: { color?: string }) => JSX.Element;
export const TailessArrow: ({ customClass, customStroke }: {
customStroke?: string;
customClass?: string;
}) => JSX.Element;
Expand Down

0 comments on commit 7d6d1f4

Please sign in to comment.