Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mewdev committed Sep 12, 2024
1 parent 5b1eb74 commit 95d58a6
Show file tree
Hide file tree
Showing 8 changed files with 142 additions and 93 deletions.
214 changes: 129 additions & 85 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "^2.0.6"
Expand All @@ -21,5 +22,9 @@
"workspaces": [
"apps/*",
"packages/*"
]
],
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0"
}
}
2 changes: 1 addition & 1 deletion packages/design-system/src/arrowIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function ArrowIcon(
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>,
) {
return (
<svg
Expand Down
4 changes: 2 additions & 2 deletions packages/design-system/src/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const buttonVariants = cva(
variant: "filled",
size: "default",
},
}
},
);

type Props = React.ButtonHTMLAttributes<HTMLButtonElement> &
Expand All @@ -56,7 +56,7 @@ const Button = React.forwardRef<HTMLButtonElement, Props>(
{...props}
/>
);
}
},
);
Button.displayName = "Button";

Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/src/neutralIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function NeutralIcon(
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>,
) {
return (
<svg
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/src/noIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function NoIcon(
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>,
) {
return (
<svg
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/src/starIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function StarIcon(
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>,
) {
return (
<svg
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/src/yesIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export function YesIcon(
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>
props: React.JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>,
) {
return (
<svg
Expand Down

0 comments on commit 95d58a6

Please sign in to comment.