Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 6x 6x 7x 7x | import React, { Component } from 'react';
import { DangerAlertIcon_defaultProps } from './props/defaultProps';
import { DangerAlertIcon_propTypes } from './props/propTypes';
import style from './AlertIcons.module.css';
export default class DangerAlertIcon extends Component {
render() {
let { variant, type } = this.props;
return (
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' className={type ? `${style[type]}` : ''}>
<path className={`${style[`danger_${variant}`]}`} d='M34.89,23.86s27.19-17.79,41-12.44S99,61.81,60.74,82,5.16,58.27,5,50.48C4.87,42.94,5,25,34.89,23.86Z' />
<polygon className={style.outer_cls2} points='95 49.42 94.18 48.61 92.98 49.79 91.79 48.61 90.97 49.42 92.16 50.6 90.97 51.78 91.79 52.59 92.98 51.41 94.18 52.59 95 51.78 93.81 50.6 95 49.42' />
<rect className={style.outer_cls2} x='10' y='21.46' width='1.16' height='2.18' />
<rect className={style.outer_cls2} x='11.8' y='24.27' width='2.21' height='1.15' />
<rect className={style.outer_cls2} x='10' y='26.05' width='1.16' height='2.18' />
<rect className={style.outer_cls2} x='7.15' y='24.27' width='2.21' height='1.15' />
<path className={style.outer_cls3} d='M11.8,82.6a2.76,2.76,0,1,1,2.8-2.76A2.78,2.78,0,0,1,11.8,82.6Zm0-4.37a1.61,1.61,0,1,0,1.63,1.61A1.62,1.62,0,0,0,11.8,78.23Z' />
<ellipse className={style.outer_cls4} cx='50.21' cy='11.21' rx='1.22' ry='1.21' />
<polygon className={style.outer_cls4} points='59.77 90 61.8 87.28 63.69 90 59.77 90' />
<path className={style.outer_cls5} d='M52.28,43.16s-13.79-9-20.78-6.31S19.75,62.42,39.17,72.67s28.2-12.05,28.28-16S67.45,43.72,52.28,43.16Z' />
<path className={style.outer_cls6} d='M61.28,46.39a1.15,1.15,0,1,1-1.15-1.13A1.13,1.13,0,0,1,61.28,46.39ZM71.63,69.28a5.37,5.37,0,0,0,0-5.4L63,48.91a1,1,0,0,0-1.74,1l8.65,15A3.39,3.39,0,0,1,67,70H30.05a3.39,3.39,0,0,1-2.94-5.09l18.46-32a3.39,3.39,0,0,1,5.87,0l4.74,8.2H48a2.54,2.54,0,0,0-1.85.8,2.57,2.57,0,0,0-.69,1.91l.92,12.67a2.54,2.54,0,0,0,5.08,0l.76-9.85a1,1,0,0,0-.92-1.08,1,1,0,0,0-1.07.92l-.76,9.87a.55.55,0,0,1-1.1,0L47.46,43.7a.51.51,0,0,1,.14-.41.58.58,0,0,1,.4-.17h9.91a1,1,0,0,0,.86-1.5l-5.6-9.7a5.39,5.39,0,0,0-9.33,0l-18.46,32A5.39,5.39,0,0,0,30.05,72H67A5.35,5.35,0,0,0,71.63,69.28ZM49,61.34a2.61,2.61,0,1,0,2.6,2.6A2.6,2.6,0,0,0,49,61.34Z' />
</svg>
);
}
}
DangerAlertIcon.propTypes = DangerAlertIcon_propTypes;
DangerAlertIcon.defaultProps = DangerAlertIcon_defaultProps;
|