Skip to content

Commit

Permalink
update template
Browse files Browse the repository at this point in the history
  • Loading branch information
karenyov committed Apr 6, 2023
1 parent ddd45ee commit f7bfd20
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/Divider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ export default function Divider({ ...rest }: DividerProps) {
const { colorMode } = useColorMode();

return (
<>
<DividerBase
<DividerBase
{...rest}
mt={2}
borderColor={colorMode === "dark" ? "secondary.900" : "gray.200"}
/>
</>
mt={2}
borderColor={colorMode === "dark" ? "secondary.900" : "gray.200"}
/>
);
}

0 comments on commit f7bfd20

Please sign in to comment.