/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable react/require-default-props */ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { tagPropType } from '../utils/helper'; // component - CoreUI / CEmbedItem const CEmbedItem = (props: any) => { const { tag: Tag, className, // innerRef, ...attributes } = props; // render const classes = classNames(className, 'embed-responsive-item'); return ( <> ); }; CEmbedItem.propTypes = { tag: tagPropType, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.array, PropTypes.object, ]), // innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]), type: PropTypes.oneOf(['iframe', 'embed', 'video', 'object', 'img']), src: PropTypes.string, }; CEmbedItem.defaultProps = { tag: 'iframe', }; export default CEmbedItem;