/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx, useTheme } from '@keystone-ui/core' import type { HTMLAttributes } from 'react' type FieldLegendProps = HTMLAttributes export const FieldLegend = (props: FieldLegendProps) => { const { typography, fields, spacing } = useTheme() return ( ) }