Skip to content

Commit

Permalink
feat: add reset component to assist migration to this lib
Browse files Browse the repository at this point in the history
  • Loading branch information
maxholman committed Oct 30, 2022
1 parent 94d6796 commit 6f220d8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@ export const Theme: FC<PropsWithChildren> = ({ children }) => (
{children}
</Box>
);

export const Reset: FC<PropsWithChildren> = ({ children }) => (
<Box component="div" className={[resetClass]}>
{children}
</Box>
);

0 comments on commit 6f220d8

Please sign in to comment.