* fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components
19 lines
1.5 KiB
TypeScript
19 lines
1.5 KiB
TypeScript
|
|
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Integrations_slack(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 51 51" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><g fill="none"><path fill="#E01E5A" d="M10.923 32.126c0 2.932-2.37 5.3-5.301 5.3s-5.3-2.368-5.3-5.3c0-2.931 2.369-5.3 5.3-5.3h5.3v5.3zm2.65 0c0-2.931 2.37-5.3 5.301-5.3 2.932 0 5.3 2.369 5.3 5.3v13.252c0 2.932-2.368 5.3-5.3 5.3-2.931 0-5.3-2.368-5.3-5.3V32.126z"/><path fill="#36C5F0" d="M18.874 10.843c-2.931 0-5.3-2.37-5.3-5.301 0-2.932 2.369-5.301 5.3-5.301 2.932 0 5.3 2.37 5.3 5.3v5.302h-5.3zm0 2.69c2.932 0 5.3 2.37 5.3 5.3 0 2.932-2.368 5.302-5.3 5.302H5.582c-2.932 0-5.3-2.37-5.3-5.301 0-2.932 2.368-5.3 5.3-5.3h13.292z"/><path fill="#2EB67D" d="M40.117 18.834c0-2.932 2.37-5.3 5.301-5.3 2.932 0 5.301 2.368 5.301 5.3 0 2.931-2.37 5.3-5.3 5.3h-5.302v-5.3zm-2.65 0c0 2.931-2.37 5.3-5.3 5.3-2.932 0-5.302-2.369-5.302-5.3V5.542c0-2.932 2.37-5.301 5.301-5.301 2.932 0 5.301 2.37 5.301 5.3v13.293z"/><path fill="#ECB22E" d="M32.166 40.077c2.932 0 5.301 2.37 5.301 5.301 0 2.932-2.37 5.3-5.3 5.3-2.932 0-5.302-2.368-5.302-5.3v-5.3h5.301zm0-2.65c-2.931 0-5.3-2.37-5.3-5.301s2.369-5.3 5.3-5.3h13.292c2.932 0 5.301 2.369 5.301 5.3 0 2.932-2.37 5.3-5.3 5.3H32.165z"/></g></svg>
|
|
);
|
|
}
|
|
|
|
export default Integrations_slack;
|