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 | 1x 1x 1x 1x | import React from 'react';
import { TemplateIcon_defaultProps } from './props/defaultProps';
import { TemplateIcon_propTypes } from './props/propTypes';
import SVG from '@zohodesk/svg/lib/SVG/SVG';
export default class TemplateIcon extends React.Component {
render() {
let { isRender, isSymbol, className } = this.props;
return (
<SVG viewBox='0 0 40 40' name='TemplateIcon' isRender={isRender} isSymbol={isSymbol} className={className}>
<path d='M33.09,3H6.91A3.91,3.91,0,0,0,3,6.91V33.09A3.91,3.91,0,0,0,6.91,37H33.09A3.91,3.91,0,0,0,37,33.09V6.91A3.92,3.92,0,0,0,33.09,3ZM6.91,5H33.09A1.92,1.92,0,0,1,35,6.91v4.62H5V6.91A1.92,1.92,0,0,1,6.91,5ZM33.09,35H6.91A1.92,1.92,0,0,1,5,33.09V13.53H35V33.09A1.92,1.92,0,0,1,33.09,35Z' />
<path d='M9.33,9.33A1.07,1.07,0,1,0,8.27,8.27,1.06,1.06,0,0,0,9.33,9.33Z' />
<path d='M13.6,9.33a1.07,1.07,0,1,0-1.07-1.06A1.06,1.06,0,0,0,13.6,9.33Z' />
<path d='M24.87,23H21V19.13a1,1,0,1,0-2,0V23H15.13a1,1,0,0,0,0,2H19v3.86a1,1,0,0,0,2,0V25h3.87a1,1,0,1,0,0-2Z' />
</SVG>
);
}
}
TemplateIcon.propTypes = TemplateIcon_propTypes;
TemplateIcon.defaultProps = TemplateIcon_defaultProps;
// if (__DOCS__) {
// TemplateIcon.docs = {
// componentGroup: 'SVG'
// };
// }
|