Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const ModalBox = ({ children, className, isLarge, isSmall, title, id, ...props }) => (
<div aria-modal="true" aria-describedby="{id}" aria-label="{title}" role="dialog">
{children}
</div>
);
ModalBox.propTypes = propTypes;