diff options
Diffstat (limited to 'components/timeinput.tsx')
-rw-r--r-- | components/timeinput.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/timeinput.tsx b/components/timeinput.tsx index 7232494..f1f3233 100644 --- a/components/timeinput.tsx +++ b/components/timeinput.tsx @@ -6,8 +6,10 @@ export default function TimecodeInput(props: { update: (newValue: number) => void; player: TimedVideoPlayer; label: string; + className?: string; }) { return <TextField + className={'time-input ' + (props.className || '')} variant='filled' label={props.label} value={props.player.frameToTimestampString(props.value, false)} |