Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
fix(heading): add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Jan 23, 2024
1 parent 7d87987 commit d6e092e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions content/docs/components/heading/theming.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ import { defineStyle, defineStyleConfig } from '@chakra-ui/react'
import { defineStyle, defineStyleConfig } from '@chakra-ui/react'

const custom = defineStyle({
color: "yellow.500",
fontFamily: "mono",
fontWeight: "semibold"
// let's also provide dark mode alternatives
_dark: {
color: 'yellow.300',
}
color: 'yellow.500',
fontFamily: 'mono',
fontWeight: 'semibold',
// let's also provide dark mode alternatives
_dark: {
color: 'yellow.300',
},
})
```

Expand Down

1 comment on commit d6e092e

@vercel
Copy link

@vercel vercel bot commented on d6e092e Jan 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.