Files
ontime/apps/client/src/views/cuesheet/cuesheet-table/cuesheet-table-elements/MutedText.tsx
T
Carlos Valente 8ad260d28a refactor: cuesheet design review
fix: parsing of custom fields for blocks
refactor: extract cuesheet settings
refactor: cuesheet actions
refactor: improve cuesheet performance on resizing
2025-07-03 08:46:21 +02:00

14 lines
386 B
TypeScript

import { PropsWithChildren } from 'react';
import { cx } from '../../../../common/utils/styleUtils';
import style from './MutedText.module.scss';
interface MutedTextProps {
numeric?: boolean;
}
export default function MutedText({ numeric, children }: PropsWithChildren<MutedTextProps>) {
return <span className={cx([style.muted, numeric && style.numeric])}>{children}</span>;
}