interface SeverityCriticalIconProps { width?: number; height?: number; fill?: string; stroke?: string; } function SeverityCriticalIcon({ width, height, fill, stroke, }: SeverityCriticalIconProps): JSX.Element { return ( ); } SeverityCriticalIcon.defaultProps = { width: 6, height: 6, fill: 'none', stroke: '#F56C87', }; export default SeverityCriticalIcon;