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