import Link from 'next/link'
import clsx from 'clsx'
import { Heading } from '@/components/Heading'
import { YouTube } from '@/components/YouTube'
export const a = Link
export { Button } from '@/components/Button'
export { CodeGroup, Code as code, Pre as pre } from '@/components/Code'
export { Badge } from '@/components/Badge'
export { YouTube }
export const h2 = function H2(props) {
return
}
export const h3 = function H3(props) {
return
}
export const h4 = function H4(props) {
return
}
export const h5 = function H5(props) {
return
}
// Wide markdown tables would otherwise paint past the content column and
// under the sticky "On this page" menu; scroll them within the column instead.
export const table = function Table(props) {
return (
)
}
function InfoIcon(props) {
return (
)
}
function WarningIcon(props) {
return (
)
}
function SuccessIcon(props) {
return (
)
}
export function Note({ children }) {
return (
{children}
)
}
export function Warning({ children }) {
return (
{children}
)
}
export function Success({ children }) {
return (