// Copyright 2017-2026 @pezkuwi/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; import { Input, styled } from '@pezkuwi/react-components'; interface Props { className?: string; onChange: (key: string, val: string) => void; original: string; tkey: string; tval: string; } function StringInput ({ className = '', onChange, original, tkey, tval }: Props): React.ReactElement { const _onChange = useCallback( (value: string) => onChange(tkey, value), [onChange, tkey] ); return (
{original}
); } const StyledDiv = styled.div` .label { font-style: italic; margin-top: 0.5rem; +div { margin-left: 1rem; } } `; export default React.memo(StringInput);