Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
imteekay committed Jul 20, 2024
1 parent 5e566bc commit ba60977
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Base/components/Venn/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
import { css } from '@emotion/css';

export const Venn = () => (
<div style={{ 'text-align': 'center' }}>
Event A<span style={{ 'font-size': '80px' }}>&#9901;</span>Event B
<div
className={css`
text-align: center;
`}
>
Event A
<span
className={css`
font-size: 80px;
`}
>
&#9901;
</span>
Event B
</div>
);

0 comments on commit ba60977

Please sign in to comment.