Skip to content

Commit

Permalink
style: remove separator from ContextCard
Browse files Browse the repository at this point in the history
  • Loading branch information
procaconsul committed May 17, 2024
1 parent 9757da4 commit 356dc41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ContextCard/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Card, Flex, Heading, Separator, Text } from '@radix-ui/themes'
import { Box, Card, Flex, Heading, Text } from '@radix-ui/themes'
import React, { FC } from 'react'

interface ContextCardProps {
Expand All @@ -11,7 +11,6 @@ const ContextCard: FC<ContextCardProps> = ({ text }) => {
<Card size="3">
<Flex gap="4" direction="column">
<Heading>Context</Heading>
<Separator size="4" />
<Text>{text}</Text>
</Flex>
</Card>
Expand Down

0 comments on commit 356dc41

Please sign in to comment.