import { ComponentPropsWithoutRef } from 'react'; import { TextTitle } from '/@/renderer/components/text-title'; interface LyricLineProps extends ComponentPropsWithoutRef<'div'> { active: boolean; lyric: string; } export const LyricLine = ({ lyric: text, active, ...props }: LyricLineProps) => { return ( {text} ); };