import type React from 'react'; export interface LabelProps { error?: string; disabled?: boolean; children: React.ReactNode; } export const InputWrapper = ({ error, disabled, children, }: LabelProps): JSX.Element => (
{children}
);