mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-19 22:24:11 +00:00
refactor: cuesheet design review
fix: parsing of custom fields for blocks refactor: extract cuesheet settings refactor: cuesheet actions refactor: improve cuesheet performance on resizing
This commit is contained in:
committed by
Carlos Valente
parent
0726c04f20
commit
8ad260d28a
@@ -0,0 +1,13 @@
|
||||
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>;
|
||||
}
|
||||
Reference in New Issue
Block a user