Tweak workspace settings dialog and Markdown editor

This commit is contained in:
Gregory Schier
2025-01-08 08:54:40 -08:00
parent eeb66ca28a
commit 95266a9177
11 changed files with 233 additions and 189 deletions

View File

@@ -0,0 +1,16 @@
import classNames from 'classnames';
import type { HTMLAttributes } from 'react';
export function Label({
htmlFor,
className,
...props
}: HTMLAttributes<HTMLLabelElement> & { htmlFor: string }) {
return (
<label
className={classNames(className, 'text-text-subtle whitespace-nowrap')}
htmlFor={htmlFor}
{...props}
/>
);
}