You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							28 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							2.5 KiB
						
					
					
				| "use strict";
 | |
| var __importDefault = (this && this.__importDefault) || function (mod) {
 | |
|     return (mod && mod.__esModule) ? mod : { "default": mod };
 | |
| };
 | |
| Object.defineProperty(exports, "__esModule", { value: true });
 | |
| exports.Slack = void 0;
 | |
| const react_1 = __importDefault(require("react"));
 | |
| exports.Slack = (props) => {
 | |
|     const { width, height } = props;
 | |
|     const svgWidth = width || '72px';
 | |
|     const svgHeight = height || '72px';
 | |
|     return (react_1.default.createElement("svg", { width: svgWidth, height: svgHeight, viewBox: "70 70 140 140", version: "1.1", xmlns: "http://www.w3.org/2000/svg" },
 | |
|         react_1.default.createElement("g", null,
 | |
|             react_1.default.createElement("g", null,
 | |
|                 react_1.default.createElement("path", { style: { fill: '#E01E5A' }, d: "M99.4,151.2c0,7.1-5.8,12.9-12.9,12.9c-7.1,0-12.9-5.8-12.9-12.9c0-7.1,5.8-12.9,12.9-12.9h12.9V151.2z" }),
 | |
|                 react_1.default.createElement("path", { style: { fill: '#E01E5A' }, d: "M105.9,151.2c0-7.1,5.8-12.9,12.9-12.9s12.9,5.8,12.9,12.9v32.3c0,7.1-5.8,12.9-12.9,12.9s-12.9-5.8-12.9-12.9V151.2z" })),
 | |
|             react_1.default.createElement("g", null,
 | |
|                 react_1.default.createElement("path", { style: { fill: '#36C5F0' }, d: "M118.8,99.4c-7.1,0-12.9-5.8-12.9-12.9c0-7.1,5.8-12.9,12.9-12.9s12.9,5.8,12.9,12.9v12.9H118.8z" }),
 | |
|                 react_1.default.createElement("path", { style: { fill: '#36C5F0' }, d: "M118.8,105.9c7.1,0,12.9,5.8,12.9,12.9s-5.8,12.9-12.9,12.9H86.5c-7.1,0-12.9-5.8-12.9-12.9s5.8-12.9,12.9-12.9H118.8z" })),
 | |
|             react_1.default.createElement("g", null,
 | |
|                 react_1.default.createElement("path", { style: { fill: '#2EB67D' }, d: "M170.6,118.8c0-7.1,5.8-12.9,12.9-12.9c7.1,0,12.9,5.8,12.9,12.9s-5.8,12.9-12.9,12.9h-12.9V118.8z" }),
 | |
|                 react_1.default.createElement("path", { style: { fill: '#2EB67D' }, d: "M164.1,118.8c0,7.1-5.8,12.9-12.9,12.9c-7.1,0-12.9-5.8-12.9-12.9V86.5c0-7.1,5.8-12.9,12.9-12.9c7.1,0,12.9,5.8,12.9,12.9V118.8z" })),
 | |
|             react_1.default.createElement("g", null,
 | |
|                 react_1.default.createElement("path", { style: { fill: '#ECB22E' }, d: "M151.2,170.6c7.1,0,12.9,5.8,12.9,12.9c0,7.1-5.8,12.9-12.9,12.9c-7.1,0-12.9-5.8-12.9-12.9v-12.9H151.2z" }),
 | |
|                 react_1.default.createElement("path", { style: { fill: '#ECB22E' }, d: "M151.2,164.1c-7.1,0-12.9-5.8-12.9-12.9c0-7.1,5.8-12.9,12.9-12.9h32.3c7.1,0,12.9,5.8,12.9,12.9c0,7.1-5.8,12.9-12.9,12.9H151.2z" })))));
 | |
| };
 | |
| exports.default = exports.Slack;
 |