import React from 'react'; import type MdIconProps from './icon.model'; export const MdIconDangerous = React.forwardRef(({ className, large = false, ...otherProps }, ref) => { if (large) { return ( ); } return ( ); }); MdIconDangerous.displayName = 'MdIconDangerous'; export default MdIconDangerous;