github.com/grafana/pyroscope@v1.18.0/public/app/pages/IntroPages/Icons.tsx (about) 1 import React from 'react'; 2 3 export const GoogleIcon = () => ( 4 <svg 5 aria-hidden="true" 6 focusable="false" 7 data-prefix="fab" 8 data-icon="google" 9 role="img" 10 xmlns="http://www.w3.org/2000/svg" 11 viewBox="0 0 488 512" 12 className="svg-inline--fa fa-google fa-w-16" 13 > 14 <path 15 fill="currentColor" 16 d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" 17 className="" 18 /> 19 </svg> 20 ); 21 22 export const GitlabIcon = () => ( 23 <svg 24 aria-hidden="true" 25 focusable="false" 26 data-prefix="fab" 27 data-icon="gitlab" 28 role="img" 29 xmlns="http://www.w3.org/2000/svg" 30 viewBox="0 0 512 512" 31 className="svg-inline--fa fa-gitlab fa-w-16" 32 > 33 <path 34 fill="currentColor" 35 d="M105.2 24.9c-3.1-8.9-15.7-8.9-18.9 0L29.8 199.7h132c-.1 0-56.6-174.8-56.6-174.8zM.9 287.7c-2.6 8 .3 16.9 7.1 22l247.9 184-226.2-294zm160.8-88l94.3 294 94.3-294zm349.4 88l-28.8-88-226.3 294 247.9-184c6.9-5.1 9.7-14 7.2-22zM425.7 24.9c-3.1-8.9-15.7-8.9-18.9 0l-56.6 174.8h132z" 36 className="" 37 /> 38 </svg> 39 );