|
| 1 | +/* |
| 2 | + -*- coding: utf-8 -*- |
| 3 | +
|
| 4 | + This file is part of REANA. |
| 5 | + Copyright (C) 2024 CERN. |
| 6 | +
|
| 7 | + REANA is free software; you can redistribute it and/or modify it |
| 8 | + under the terms of the MIT License; see LICENSE file for more details. |
| 9 | +*/ |
| 10 | +import PropTypes from "prop-types"; |
| 11 | + |
| 12 | +import styles from "./DaskIcon.module.scss"; |
| 13 | + |
| 14 | +const DaskIcon = ({ size, className }) => { |
| 15 | + // Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) |
| 16 | + return ( |
| 17 | + <svg |
| 18 | + className={className || styles.icon} |
| 19 | + viewBox="0 0 512 512" |
| 20 | + width={`${size}px`} |
| 21 | + height={`${size}px`} |
| 22 | + xmlns="http://www.w3.org/2000/svg" |
| 23 | + xmlnsXlink="http://www.w3.org/1999/xlink" |
| 24 | + > |
| 25 | + <g> |
| 26 | + <path |
| 27 | + fill="#FFC11E" |
| 28 | + d="M143.71,157.61l126.5-72.99c1.25-0.72,2.02-2.05,2.02-3.5l0.01-43.77c0-6.48-2.66-12.9-7.83-16.81 |
| 29 | + c-6.69-5.06-15.28-5.56-22.33-1.48L65.13,121.17c-6.22,3.59-10.06,10.23-10.06,17.41L55,369.18c0,6.47,2.65,12.89,7.81,16.81 |
| 30 | + c6.68,5.07,15.29,5.57,22.35,1.49l37.48-21.62c1.25-0.72,2.02-2.05,2.02-3.5l0.05-171.85C124.71,176.93,131.95,164.4,143.71,157.61 |
| 31 | + z" |
| 32 | + /> |
| 33 | + <path |
| 34 | + fill="#EF1161" |
| 35 | + d="M446.95,124.53c-3.15-1.82-6.61-2.73-10.06-2.73c-3.45,0-6.9,0.91-10.05,2.73l-176.96,102.1 |
| 36 | + c-6.2,3.58-10.06,10.25-10.06,17.41l-0.07,231.47c0,7.27,3.76,13.78,10.05,17.42c6.3,3.64,13.81,3.64,20.11,0l176.95-102.11 |
| 37 | + c6.2-3.58,10.06-10.25,10.06-17.41L457,141.95C457,134.68,453.24,128.16,446.95,124.53z" |
| 38 | + /> |
| 39 | + <path |
| 40 | + fill="#FC6E6B" |
| 41 | + d="M240.95,211.14l116.78-67.38c1.25-0.72,2.02-2.05,2.02-3.5l0.02-50.98c0-6.48-2.66-12.9-7.83-16.81 |
| 42 | + c-6.69-5.06-15.27-5.55-22.33-1.48l-48.43,27.95L152.64,173.1c-6.22,3.59-10.06,10.23-10.06,17.41l-0.05,174.18l-0.02,56.41 |
| 43 | + c0,6.48,2.65,12.89,7.81,16.81c6.69,5.07,15.29,5.57,22.35,1.49l47.2-27.24c1.25-0.72,2.02-2.05,2.02-3.5l0.05-164.64 |
| 44 | + C221.95,230.46,229.19,217.92,240.95,211.14z" |
| 45 | + /> |
| 46 | + </g> |
| 47 | + </svg> |
| 48 | + ); |
| 49 | +}; |
| 50 | + |
| 51 | +DaskIcon.defaultProps = { |
| 52 | + size: 22, |
| 53 | + className: "", |
| 54 | +}; |
| 55 | + |
| 56 | +DaskIcon.propTypes = { |
| 57 | + size: PropTypes.number, |
| 58 | + className: PropTypes.string, |
| 59 | +}; |
| 60 | + |
| 61 | +export default DaskIcon; |
0 commit comments