/* eslint-disable react/require-default-props */ /* eslint-disable @typescript-eslint/no-explicit-any */ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { tagPropType } from '../utils/helper'; // component - CoreUI / CEmbed const CEmbed = (props: any) => { const { tag: Tag, className, innerRef, // ratio, ...attributes } = props; // render const classes = classNames( className, 'embed-responsive', `embed-responsive-${ratio}` ); return ( <> ); }; CEmbed.propTypes = { tag: tagPropType, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.array, PropTypes.object, ]), // innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]), ratio: PropTypes.oneOf(['21by9', '16by9', '4by3', '1by1']), }; CEmbed.defaultProps = { tag: 'div', ratio: '16by9', }; export default CEmbed;