import React from 'react'; import type { FieldSuffixProps } from '@shoptet/ui-core-web'; import { Field as CoreField } from '@shoptet/ui-core-web'; import type { Exact, SafePick } from '@shoptet/utils'; import type { OmitPrivate } from '../../types'; export interface FieldLabelAfterInheritedSpanProps extends OmitPrivate> {} export interface FieldLabelAfterProps extends SafePick, FieldLabelAfterInheritedSpanProps { children: React.ReactNode; } export function FieldLabelAfter({ label, children, ...rest }: FieldLabelAfterProps) { rest satisfies Exact; return ( {children} ); }