mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 21:24:11 +00:00
22 lines
622 B
TypeScript
22 lines
622 B
TypeScript
import { HTMLAttributes, memo, PropsWithChildren } from 'react';
|
|
|
|
import { cx } from '../../../../common/utils/styleUtils';
|
|
|
|
import style from './TextLikeInput.module.scss';
|
|
|
|
export default memo(TextLikeInput);
|
|
|
|
interface TextLikeInputProps extends HTMLAttributes<HTMLSpanElement> {
|
|
muted?: boolean;
|
|
}
|
|
|
|
function TextLikeInput(props: PropsWithChildren<TextLikeInputProps>) {
|
|
const { muted, children, className, ...elementProps } = props;
|
|
const classes = cx([style.textInput, muted && style.muted, className]);
|
|
return (
|
|
<div className={classes} {...elementProps} tabIndex={0}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|