UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

20 lines (19 loc) 809 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CalculateMetadataErrorExplainer = void 0; const jsx_runtime_1 = require("react/jsx-runtime"); const styles_1 = require("../../components/Menu/styles"); const colors_1 = require("../../helpers/colors"); const CalculateMetadataErrorExplainer = () => { return (jsx_runtime_1.jsxs("div", { style: style, children: ["This error occured while calling", ' ', jsx_runtime_1.jsx("code", { style: styles_1.inlineCodeSnippet, children: "calculateMetadata()" }), "."] })); }; exports.CalculateMetadataErrorExplainer = CalculateMetadataErrorExplainer; const style = { borderRadius: 3, color: 'white', padding: 12, backgroundColor: colors_1.BORDER_COLOR, fontSize: 14, fontFamily: 'sans-serif', };