import type { GrafaidOld } from '#lib/grafaid-old/index' import { Text } from '@radix-ui/themes' import type { FC } from 'react' import { Markdown } from './Markdown.js' export const DeprecationReason: FC<{ data: GrafaidOld.GraphQLField }> = ({ data }) => { if (!data.deprecationReason) return null return ( {data.deprecationReason} ) }