File size: 626 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import React from 'react';
import type { Html5VideoSettings } from '../types/settings';
import { lazyLoad } from '@react-page/editor';
const PlayArrow = lazyLoad(() => import('@mui/icons-material/PlayArrow'));
export const defaultTranslations = {
pluginName: 'HTML 5 Video',
pluginDescription: 'Add webm, ogg and other HTML5 video',
urlLabel: 'Video url',
urlPlaceholder: 'https://example.com/video.webm',
isInlineable: true,
};
export const defaultSettings: Html5VideoSettings = {
Renderer: () => <>Renderer; for this plugin was not provided </>,
translations: defaultTranslations,
icon: <PlayArrow />,
};
|