documentation-site/components/slack-logo.jsx (36 lines of code) (raw):
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
//
import * as React from "react";
const SlackLogo = (props) => (
<svg
width={props.size}
height={props.size}
className="slack-logo"
viewBox="0 0 123 123"
aria-hidden="true"
>
<g fill={props.color}>
<g>
<path d="m25.657357,77.523529c0,7.1 -5.8,12.9 -12.9,12.9s-12.9,-5.8 -12.9,-12.9c0,-7.1 5.8,-12.9 12.9,-12.9l12.9,0l0,12.9z" />
<path d="m32.157357,77.523529c0,-7.1 5.8,-12.9 12.9,-12.9s12.9,5.8 12.9,12.9l0,32.3c0,7.1 -5.8,12.9 -12.9,12.9s-12.9,-5.8 -12.9,-12.9c0,0 0,-32.3 0,-32.3z" />
</g>
<g>
<path d="m45.057357,25.723529c-7.1,0 -12.9,-5.8 -12.9,-12.9s5.8,-12.9 12.9,-12.9s12.9,5.8 12.9,12.9l0,12.9l-12.9,0z" />
<path d="m45.057357,32.223529c7.1,0 12.9,5.8 12.9,12.9s-5.8,12.9 -12.9,12.9l-32.3,0c-7.1,0 -12.9,-5.8 -12.9,-12.9s5.8,-12.9 12.9,-12.9c0,0 32.3,0 32.3,0z" />
</g>
<g>
<path d="m96.857357,45.123529c0,-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.9l-12.9,0l0,-12.9z" />
<path d="m90.357357,45.123529c0,7.1 -5.8,12.9 -12.9,12.9c-7.1,0 -12.9,-5.8 -12.9,-12.9l0,-32.3c0,-7.1 5.8,-12.9 12.9,-12.9c7.1,0 12.9,5.8 12.9,12.9l0,32.3z" />
</g>
<g>
<path d="m77.457357,96.923529c7.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.9l0,-12.9l12.9,0z" />
<path d="m77.457357,90.423529c-7.1,0 -12.9,-5.8 -12.9,-12.9c0,-7.1 5.8,-12.9 12.9,-12.9l32.3,0c7.1,0 12.9,5.8 12.9,12.9c0,7.1 -5.8,12.9 -12.9,12.9l-32.3,0z" />
</g>
</g>
</svg>
);
export default SlackLogo;