import {Button} from '@remotion/design'; import React from 'react'; export const NewBackButton: React.FC<{ readonly color: string; readonly text: string; readonly link: string; }> = ({color, text, link}) => { return (
); };