interface Props { figure: string; text: string; } export default function RewindStatText(props: Props) { return (
{props.figure}
{props.text}
); }