import { Box, Text } from "@prismicio/editor-ui"; export function Hint(args: { show: boolean }) { if (!args.show) return null; return ( No code snippet for this field.{" "} Check the docs {" "} for an example. ); }