// Copyright 2017-2026 @pezkuwi/dev authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; export interface Props { children?: React.ReactNode; className?: string; label?: string; } function Child ({ children, className, label }: Props): React.ReactElement { return (
{label || ''}{children}
); } export default React.memo(Child);