import { H3 } from '~/components/plugins/Headings'; import { PlatformTags } from '~/components/plugins/PlatformTag'; import { STYLES_APIBOX } from '~/components/plugins/api/APISectionUtils'; import { PlatformName } from '~/types/common'; type APIBoxProps = React.PropsWithChildren<{ header?: string; platforms?: PlatformName[]; }>; export const APIBox = ({ header, platforms, children }: APIBoxProps) => { return (
{platforms && } {header &&

{header}

} {children}
); };