UNPKG

@wulperstudio/cms

Version:
12 lines (11 loc) 376 B
import React from 'react'; import { IconifyIcon } from '@iconify/react'; import { BoxProps } from '@mui/material'; export interface BlockVideoNativeModel { srcVideo: string; iconName?: string | IconifyIcon; containerProps?: BoxProps; contentProps?: BoxProps; videoProps?: BoxProps; } export declare const BlockVideoNative: React.FC<BlockVideoNativeModel>;