Skip to content

Commit

Permalink
chore: deprecated Hint
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Aug 23, 2024
1 parent 596a45a commit 4b3207f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/mdx/Hint.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import { Gha } from './Gha'

/**
*
* @deprecated
*/
export const Hint = ({ children }: { children: React.ReactNode }) => {
console.warn('Hint is deprecated, use Gha instead.')

return <Gha keyword="NOTE">{children}</Gha>
}

0 comments on commit 4b3207f

Please sign in to comment.