import React from 'react'; import {DefaultImage, DefaultImagePropsType} from '@jahia/nextjs-sdk'; import classNames from 'classnames'; import {makeStyles} from 'tss-react/mui'; const useStyles = makeStyles()({ svg: { height: 0, width: 0 }, img: { clipPath: 'url(#clipPath--bubble-2)' } }); export function ClipPathBubble2({path, alt = '', className = ''}:DefaultImagePropsType) { const {classes} = useStyles(); return (
); } // ClipPathBubble2.propTypes = { // path: PropTypes.string, // alt: PropTypes.string, // className: PropTypes.string, // }; ClipPathBubble2.defaultProps = { className: 'img-fluid' };