1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-desktop/gui/ConfigScreen/controls/SettingLabel.tsx

17 lines
286 B
TypeScript
Raw Normal View History

import * as React from 'react';
interface Props {
htmlFor: string|null;
text: string;
}
const SettingLabel: React.FC<Props> = props => {
return (
<div className='setting-label'>
<label htmlFor={props.htmlFor}>{props.text}</label>
</div>
);
};
export default SettingLabel;