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 | 1x 1x 7x 7x | import React, { Component } from 'react';
import { AlarmAlertIcon_defaultProps } from './props/defaultProps';
import { AlarmAlertIcon_propTypes } from './props/propTypes';
import style from './AlertIcons.module.css';
export default class AlarmAlertIcon 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[`info_${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='M25.63,50.18s5.71-18.8,14.18-21.65S70.1,42.91,60.19,67.13s-35,10.55-38.08,7S12.21,62.29,25.63,50.18Z'/>
<path className={style.outer_cls6} d='M60.2,57.89H49.52a1,1,0,0,1-1-1V48.23a1,1,0,0,1,2,0v7.66H60.2a1,1,0,0,1,0,2ZM50.52,44.08v-.29a1,1,0,0,0-2,0v.29a1,1,0,0,0,2,0Zm23.73.86a1,1,0,0,0,.14-1.4l-5.13-6.36a1,1,0,0,0-1.56,1.25l5.14,6.36a1,1,0,0,0,.78.37A1,1,0,0,0,74.25,44.94ZM51,79.68a22.84,22.84,0,0,0-.47-45.61l0-2.68a1,1,0,0,0-1-1h-5a1.38,1.38,0,0,1,0-2.76H54A1.4,1.4,0,0,1,55.35,29,1.35,1.35,0,0,1,55,30a1.31,1.31,0,0,1-.95.4h-.54a1,1,0,0,0,0,2H54A3.31,3.31,0,0,0,57.34,29,3.38,3.38,0,0,0,54,25.64H44.43a3.38,3.38,0,0,0,0,6.76h4.06l0,2.66a1,1,0,0,0,1,1A20.84,20.84,0,1,1,28.68,56.89a20.94,20.94,0,0,1,15-20A1,1,0,1,0,43.13,35a22.84,22.84,0,0,0-9.25,38.57,22.61,22.61,0,0,0,15.62,6.2C50,79.73,50.48,79.71,51,79.68Z'/>
</svg>
);
}
}
AlarmAlertIcon.propTypes = AlarmAlertIcon_propTypes;
AlarmAlertIcon.defaultProps = AlarmAlertIcon_defaultProps;
|