Skip to content

Commit

Permalink
made it neater
Browse files Browse the repository at this point in the history
  • Loading branch information
SatapasT committed Oct 13, 2024
1 parent 0df4685 commit 4764be4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/app/(client)/(pages)/admin/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export const Label = ({ className, ...props }: React.HTMLAttributes<HTMLDivEleme
}

export const Buttons = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => {
return <div className={cn("buttons ", className)} {...props} />
return <div className={cn("buttons", className)} {...props} />
}

export const Table = ({ className, ...props }: React.HTMLAttributes<HTMLTableElement>) => {
return <table className={cn("table ", className)} {...props} />
return <table className={cn("table", className)} {...props} />
}

0 comments on commit 4764be4

Please sign in to comment.