Skip to content

Commit

Permalink
chore(): fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matteolc committed Oct 3, 2023
1 parent 6f2f403 commit 24cc3ec
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/src/components/Background.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import clsx from 'clsx'

export function Background(props: React.ComponentPropsWithoutRef<'svg'>) {
return (
<svg width="100%" height="100%">
<svg width="100%" height="100%" {...props}>
<defs>
<pattern
id="circle"
Expand All @@ -11,7 +9,7 @@ export function Background(props: React.ComponentPropsWithoutRef<'svg'>) {
width="1200"
height="3000"
patternUnits="userSpaceOnUse"
className={clsx('text-cyan-950', className)}
className={'text-cyan-950'}
>
<circle fill="currentColor" cx="500" cy="500" r="600"></circle>
</pattern>
Expand Down

0 comments on commit 24cc3ec

Please sign in to comment.