Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
clmntsnr committed Dec 9, 2024
1 parent 7819c92 commit 587f1cc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/primitives/Divider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,5 @@ export type DividerProps = Component<
export default function Divider({ vertical = false, horizontal = true, look, className, ...props }: DividerProps) {
if (horizontal && !vertical) return <div className={mergeClass(dividerStyles({ look }), className)} {...props} />;

return (
<div className={mergeClass(dividerStyles({ look, vertical: true }), className)} {...props} />
);
return <div className={mergeClass(dividerStyles({ look, vertical: true }), className)} {...props} />;
}

0 comments on commit 587f1cc

Please sign in to comment.