import Link from 'next/link' import clsx from 'clsx' import { Heading } from '@/components/Heading' export const a = Link export { Button } from '@/components/Button' export { CodeGroup, Code as code, Pre as pre } from '@/components/Code' export const h2 = function H2(props) { return } function InfoIcon(props) { return ( ) } export function Note({ children }) { return (
{children}
) } export function Row({ children }) { return (
{children}
) } export function Col({ children, sticky = false }) { return (
:first-child]:mt-0 [&>:last-child]:mb-0', sticky && 'xl:sticky xl:top-24' )} > {children}
) } export function Properties({ children }) { return (
) } export function Property({ name, type, children }) { return (
  • Name
    {name}
    Type
    {type}
    Description
    {children}
  • ) }