import { type ReactNode } from 'react'; import { css } from '@emotion/css'; import { type CSSProperties } from './styles'; type InlineFieldProps = { label: ReactNode; labelWidth?: number; children?: ReactNode; width: number | string; style?: CSSProperties; }; export function InlineField({ label, labelWidth, children, width, style, }: InlineFieldProps) { return ( ); }