Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
22b4a04567 |
7
packages/backend/src/apps/eventbrite/assets/favicon.svg
Normal file
7
packages/backend/src/apps/eventbrite/assets/favicon.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<g>
|
||||
<circle fill="#F05537" cx="128" cy="128" r="128"></circle>
|
||||
<path d="M117.475323,82.7290398 C136.772428,78.4407943 156.069532,86.3025777 166.790146,101.311437 L81.5017079,120.608542 C84.3605382,102.26438 98.1782181,87.0172853 117.475323,82.7290398 Z M167.266618,153.48509 C160.596014,163.252761 150.351872,170.161601 138.678314,172.782195 C119.38121,177.070441 99.8458692,169.208657 89.1252554,153.961562 L174.651929,134.664457 L188.469609,131.567391 L215.152026,125.611495 C214.91379,119.893834 214.199082,114.176173 213.007903,108.696749 C202.287289,62.7172275 155.354825,33.8906884 108.42236,44.6113021 C61.4898956,55.3319159 32.1868848,101.073201 43.1457344,147.290958 C54.1045839,193.508715 100.798813,222.097018 147.731277,211.376404 C175.366637,205.182272 196.807864,186.599875 207.766714,163.014525 L167.266618,153.48509 L167.266618,153.48509 Z" fill="#FFFFFF" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -1,4 +1,3 @@
|
||||
import crypto from 'crypto';
|
||||
import { URLSearchParams } from 'url';
|
||||
|
||||
export default async function generateAuthUrl($) {
|
||||
@@ -6,19 +5,15 @@ export default async function generateAuthUrl($) {
|
||||
(field) => field.key == 'oAuthRedirectUrl'
|
||||
);
|
||||
const redirectUri = oauthRedirectUrlField.value;
|
||||
const state = crypto.randomBytes(100).toString('base64url');
|
||||
|
||||
const searchParams = new URLSearchParams({
|
||||
response_type: 'code',
|
||||
client_id: $.auth.data.clientId,
|
||||
redirect_uri: redirectUri,
|
||||
response_type: 'code',
|
||||
state,
|
||||
});
|
||||
|
||||
const url = `https://api.surveymonkey.com/oauth/authorize?${searchParams.toString()}`;
|
||||
const url = `https://www.eventbrite.com/oauth/authorize?${searchParams.toString()}`;
|
||||
|
||||
await $.auth.set({
|
||||
url,
|
||||
originalState: state,
|
||||
});
|
||||
}
|
@@ -10,15 +10,15 @@ export default {
|
||||
type: 'string',
|
||||
required: true,
|
||||
readOnly: true,
|
||||
value: '{WEB_APP_URL}/app/surveymonkey/connections/add',
|
||||
value: '{WEB_APP_URL}/app/eventbrite/connections/add',
|
||||
placeholder: null,
|
||||
description:
|
||||
'When asked to input a redirect URL in SurveyMonkey, enter the URL above.',
|
||||
'When asked to input a redirect URL in Eventbrite, enter the URL above.',
|
||||
clickToCopy: true,
|
||||
},
|
||||
{
|
||||
key: 'clientId',
|
||||
label: 'Client ID',
|
||||
label: 'API Key',
|
||||
type: 'string',
|
||||
required: true,
|
||||
readOnly: false,
|
@@ -1,22 +1,18 @@
|
||||
import getCurrentUser from '../common/get-current-user.js';
|
||||
|
||||
const verifyCredentials = async ($) => {
|
||||
if ($.auth.data.originalState !== $.auth.data.state) {
|
||||
throw new Error("The 'state' parameter does not match.");
|
||||
}
|
||||
|
||||
const oauthRedirectUrlField = $.app.auth.fields.find(
|
||||
(field) => field.key == 'oAuthRedirectUrl'
|
||||
);
|
||||
const redirectUri = oauthRedirectUrlField.value;
|
||||
const { data } = await $.http.post(
|
||||
'https://api.surveymonkey.com/oauth/token',
|
||||
'https://www.eventbrite.com/oauth/token',
|
||||
{
|
||||
grant_type: 'authorization_code',
|
||||
client_id: $.auth.data.clientId,
|
||||
client_secret: $.auth.data.clientSecret,
|
||||
code: $.auth.data.code,
|
||||
redirect_uri: redirectUri,
|
||||
client_id: $.auth.data.clientId,
|
||||
grant_type: 'authorization_code',
|
||||
},
|
||||
{
|
||||
headers: {
|
||||
@@ -28,13 +24,11 @@ const verifyCredentials = async ($) => {
|
||||
await $.auth.set({
|
||||
accessToken: data.access_token,
|
||||
tokenType: data.token_type,
|
||||
accessUrl: data.access_url,
|
||||
expiresIn: data.expires_in,
|
||||
});
|
||||
|
||||
const currentUser = await getCurrentUser($);
|
||||
|
||||
const screenName = [currentUser.username, currentUser.email]
|
||||
const screenName = [currentUser.name, currentUser.emails[0].email]
|
||||
.filter(Boolean)
|
||||
.join(' @ ');
|
||||
|
@@ -1,6 +1,6 @@
|
||||
const addAuthHeader = ($, requestConfig) => {
|
||||
if ($.auth.data?.accessToken) {
|
||||
requestConfig.headers.Authorization = `${$.auth.data.tokenType} ${$.auth.data.accessToken}`;
|
||||
requestConfig.headers.Authorization = `Bearer ${$.auth.data.accessToken}`;
|
||||
}
|
||||
|
||||
return requestConfig;
|
16
packages/backend/src/apps/eventbrite/index.js
Normal file
16
packages/backend/src/apps/eventbrite/index.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import defineApp from '../../helpers/define-app.js';
|
||||
import addAuthHeader from './common/add-auth-header.js';
|
||||
import auth from './auth/index.js';
|
||||
|
||||
export default defineApp({
|
||||
name: 'Eventbrite',
|
||||
key: 'eventbrite',
|
||||
baseUrl: 'https://www.eventbrite.com',
|
||||
apiBaseUrl: 'https://www.eventbriteapi.com',
|
||||
iconUrl: '{BASE_URL}/apps/eventbrite/assets/favicon.svg',
|
||||
authDocUrl: '{DOCS_URL}/apps/eventbrite/connection',
|
||||
primaryColor: 'F05537',
|
||||
supportsConnections: true,
|
||||
beforeRequest: [addAuthHeader],
|
||||
auth,
|
||||
});
|
@@ -1,72 +0,0 @@
|
||||
import defineAction from '../../../../helpers/define-action.js';
|
||||
|
||||
export default defineAction({
|
||||
name: 'Create contact',
|
||||
key: 'createContact',
|
||||
description: 'Creates a new contact in your address book.',
|
||||
arguments: [
|
||||
{
|
||||
label: 'First Name',
|
||||
key: 'firstName',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: '',
|
||||
variables: true,
|
||||
},
|
||||
{
|
||||
label: 'Last Name',
|
||||
key: 'lastName',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: '',
|
||||
variables: true,
|
||||
},
|
||||
{
|
||||
label: 'Email',
|
||||
key: 'email',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: '',
|
||||
variables: true,
|
||||
},
|
||||
{
|
||||
label: 'Contact List',
|
||||
key: 'contactListId',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description: '',
|
||||
variables: true,
|
||||
source: {
|
||||
type: 'query',
|
||||
name: 'getDynamicData',
|
||||
arguments: [
|
||||
{
|
||||
name: 'key',
|
||||
value: 'listContactLists',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
async run($) {
|
||||
const { firstName, lastName, email, contactListId } = $.step.parameters;
|
||||
let url = '/v3/contacts';
|
||||
|
||||
if (contactListId) {
|
||||
url = `/v3/contact_lists/${contactListId}/contacts`;
|
||||
}
|
||||
|
||||
const body = {
|
||||
first_name: firstName,
|
||||
last_name: lastName,
|
||||
email,
|
||||
};
|
||||
|
||||
const { data } = await $.http.post(url, body);
|
||||
|
||||
$.setActionItem({
|
||||
raw: data,
|
||||
});
|
||||
},
|
||||
});
|
@@ -1,3 +0,0 @@
|
||||
import createContact from './create-contact/index.js';
|
||||
|
||||
export default [createContact];
|
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 222.61 155.27"><defs><style>.cls-1{fill:#00bf6f;}</style></defs><title>Goldie_Sabaeus_RGB</title><path id="_Compound_Path_" data-name="<Compound Path>" class="cls-1" d="M249,141.26a26.52,26.52,0,0,0-6.29.78,81.08,81.08,0,0,0-64.19-59.81c-1.4-.25-2.66-.44-4.09-.62h0c.24-7.66.59-16.51,11.86-24.47l-1.78-4.49s-22,6.82-24.49,25.61c-1.09-5.11-11.33-11.51-16.4-12.72l-2.52,4.07s6.72,3.36,8.36,12.63h0A81.08,81.08,0,0,0,85.24,142a26.3,26.3,0,1,0,3.32,50,80.63,80.63,0,0,0,8.54,15.89l21.83-14.71-.19-.24c-5.77-7.42-9.3-18.34-9.9-29.21-.65-12,2.27-23.9,9.93-30.9,15.79-13.44,33-7.31,43.74,5.57h2.89c10.77-12.88,28-19,43.74-5.57,7.65,7,10.58,18.91,9.93,30.9-.59,10.87-4.12,21.79-9.9,29.21l-.19.24,21.83,14.71A80.63,80.63,0,0,0,239.37,192,26.29,26.29,0,1,0,249,141.26Zm-170.53,34a7.76,7.76,0,0,1,0-15.52,7.83,7.83,0,0,1,4.35,1.34,117.87,117.87,0,0,0,.83,12.19A7.76,7.76,0,0,1,78.44,175.31Zm171,0a7.76,7.76,0,0,1-5.18-2,117.87,117.87,0,0,0,.83-12.19,7.75,7.75,0,0,1,12.1,6.43A7.74,7.74,0,0,1,249.48,175.31Z" transform="translate(-52.66 -52.66)"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,11 +0,0 @@
|
||||
const setBaseUrl = ($, requestConfig) => {
|
||||
const accessUrl = $.auth.data.accessUrl;
|
||||
|
||||
if (accessUrl) {
|
||||
requestConfig.baseURL = accessUrl;
|
||||
}
|
||||
|
||||
return requestConfig;
|
||||
};
|
||||
|
||||
export default setBaseUrl;
|
@@ -1,4 +0,0 @@
|
||||
import listContactLists from './list-contact-lists/index.js';
|
||||
import listSurveys from './list-surveys/index.js';
|
||||
|
||||
export default [listSurveys, listContactLists];
|
@@ -1,36 +0,0 @@
|
||||
export default {
|
||||
name: 'List contact lists',
|
||||
key: 'listContactLists',
|
||||
|
||||
async run($) {
|
||||
const contactLists = {
|
||||
data: [],
|
||||
};
|
||||
|
||||
const params = {
|
||||
page: 1,
|
||||
per_page: 100,
|
||||
};
|
||||
|
||||
let fetchedSum = 0;
|
||||
let total;
|
||||
do {
|
||||
const { data } = await $.http.get('/v3/contact_lists', { params });
|
||||
|
||||
params.page = params.page + 1;
|
||||
fetchedSum = fetchedSum + params.per_page;
|
||||
total = data.total;
|
||||
|
||||
if (data.data) {
|
||||
for (const contactList of data.data) {
|
||||
contactLists.data.push({
|
||||
value: contactList.id,
|
||||
name: contactList.name,
|
||||
});
|
||||
}
|
||||
}
|
||||
} while (fetchedSum <= total);
|
||||
|
||||
return contactLists;
|
||||
},
|
||||
};
|
@@ -1,38 +0,0 @@
|
||||
export default {
|
||||
name: 'List surveys',
|
||||
key: 'listSurveys',
|
||||
|
||||
async run($) {
|
||||
const surveys = {
|
||||
data: [],
|
||||
};
|
||||
|
||||
const params = {
|
||||
page: 1,
|
||||
per_page: 100,
|
||||
sort_by: 'date_modified',
|
||||
sort_order: 'DESC',
|
||||
};
|
||||
|
||||
let fetchedSum = 0;
|
||||
let total;
|
||||
do {
|
||||
const { data } = await $.http.get(`/v3/surveys`, { params });
|
||||
|
||||
params.page = params.page + 1;
|
||||
fetchedSum = fetchedSum + params.per_page;
|
||||
total = data.total;
|
||||
|
||||
if (data.data) {
|
||||
for (const survey of data.data) {
|
||||
surveys.data.push({
|
||||
value: survey.id,
|
||||
name: survey.title,
|
||||
});
|
||||
}
|
||||
}
|
||||
} while (fetchedSum <= total);
|
||||
|
||||
return surveys;
|
||||
},
|
||||
};
|
@@ -1,23 +0,0 @@
|
||||
import defineApp from '../../helpers/define-app.js';
|
||||
import addAuthHeader from './common/add-auth-header.js';
|
||||
import auth from './auth/index.js';
|
||||
import setBaseUrl from './common/set-base-url.js';
|
||||
import triggers from './triggers/index.js';
|
||||
import dynamicData from './dynamic-data/index.js';
|
||||
import actions from './actions/index.js';
|
||||
|
||||
export default defineApp({
|
||||
name: 'SurveyMonkey',
|
||||
key: 'surveymonkey',
|
||||
baseUrl: 'https://www.surveymonkey.com',
|
||||
apiBaseUrl: '',
|
||||
iconUrl: '{BASE_URL}/apps/surveymonkey/assets/favicon.svg',
|
||||
authDocUrl: '{DOCS_URL}/apps/surveymonkey/connection',
|
||||
primaryColor: '00bf6f',
|
||||
supportsConnections: true,
|
||||
beforeRequest: [setBaseUrl, addAuthHeader],
|
||||
auth,
|
||||
triggers,
|
||||
dynamicData,
|
||||
actions,
|
||||
});
|
@@ -1,3 +0,0 @@
|
||||
import newResponseNotification from './new-response-notification/index.js';
|
||||
|
||||
export default [newResponseNotification];
|
@@ -1,78 +0,0 @@
|
||||
import Crypto from 'crypto';
|
||||
import isEmpty from 'lodash/isEmpty.js';
|
||||
import defineTrigger from '../../../../helpers/define-trigger.js';
|
||||
|
||||
export default defineTrigger({
|
||||
name: 'New response notification',
|
||||
key: 'newResponseNotification',
|
||||
type: 'webhook',
|
||||
description: 'Triggers a notification upon the completion of your survey.',
|
||||
arguments: [
|
||||
{
|
||||
label: 'Survey',
|
||||
key: 'surveyId',
|
||||
type: 'dropdown',
|
||||
required: true,
|
||||
description: '',
|
||||
variables: true,
|
||||
source: {
|
||||
type: 'query',
|
||||
name: 'getDynamicData',
|
||||
arguments: [
|
||||
{
|
||||
name: 'key',
|
||||
value: 'listSurveys',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
async run($) {
|
||||
const dataItem = {
|
||||
raw: $.request.body,
|
||||
meta: {
|
||||
internalId: Crypto.randomUUID(),
|
||||
},
|
||||
};
|
||||
|
||||
$.pushTriggerItem(dataItem);
|
||||
},
|
||||
|
||||
async testRun($) {
|
||||
const lastExecutionStep = await $.getLastExecutionStep();
|
||||
|
||||
if (!isEmpty(lastExecutionStep?.dataOut)) {
|
||||
$.pushTriggerItem({
|
||||
raw: lastExecutionStep.dataOut,
|
||||
meta: {
|
||||
internalId: '',
|
||||
},
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
async registerHook($) {
|
||||
const surveyId = $.step.parameters.surveyId;
|
||||
|
||||
const body = JSON.stringify({
|
||||
name: $.flow.id,
|
||||
subscription_url: $.webhookUrl,
|
||||
event_type: 'response_completed',
|
||||
object_type: 'survey',
|
||||
object_ids: [surveyId],
|
||||
});
|
||||
|
||||
const { data } = await $.http.post('/v3/webhooks?bypass_ping=true', body, {
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
});
|
||||
|
||||
await $.flow.setRemoteWebhookId(data.id);
|
||||
},
|
||||
|
||||
async unregisterHook($) {
|
||||
await $.http.delete(`/v3/webhooks/${$.flow.remoteWebhookId}`);
|
||||
},
|
||||
});
|
@@ -113,6 +113,12 @@ export default defineConfig({
|
||||
{ text: 'Connection', link: '/apps/dropbox/connection' },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: 'Eventbrite',
|
||||
collapsible: true,
|
||||
collapsed: true,
|
||||
items: [{ text: 'Connection', link: '/apps/eventbrite/connection' }],
|
||||
},
|
||||
{
|
||||
text: 'Filter',
|
||||
collapsible: true,
|
||||
@@ -437,16 +443,6 @@ export default defineConfig({
|
||||
{ text: 'Connection', link: '/apps/stripe/connection' },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: 'SurveyMonkey',
|
||||
collapsible: true,
|
||||
collapsed: true,
|
||||
items: [
|
||||
{ text: 'Triggers', link: '/apps/surveymonkey/triggers' },
|
||||
{ text: 'Actions', link: '/apps/surveymonkey/actions' },
|
||||
{ text: 'Connection', link: '/apps/surveymonkey/connection' },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: 'Telegram',
|
||||
collapsible: true,
|
||||
|
18
packages/docs/pages/apps/eventbrite/connection.md
Normal file
18
packages/docs/pages/apps/eventbrite/connection.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# Eventbrite
|
||||
|
||||
:::info
|
||||
This page explains the steps you need to follow to set up the Eventbrite
|
||||
connection in Automatisch. If any of the steps are outdated, please let us know!
|
||||
:::
|
||||
|
||||
1. Go to your Eventbrite account settings.
|
||||
2. Click on the **Developer Links**, and click on the **API Keys** button.
|
||||
3. Click on the **Create API Key** button.
|
||||
4. Fill the form.
|
||||
5. Copy **OAuth Redirect URL** from Automatisch to **OAuth Redirect URI** field in the form.
|
||||
6. After filling the form, click on the **Create Key** button.
|
||||
7. Click on the **Show API key, client secret and tokens** in the middle of the page.
|
||||
8. Copy the **API Key** value to the `API Key` field on Automatisch.
|
||||
9. Copy the **Client secret** value to the `Client Secret` field on Automatisch.
|
||||
10. Click **Submit** button on Automatisch.
|
||||
11. Congrats! Start using your new Eventbrite connection within the flows.
|
@@ -1,12 +0,0 @@
|
||||
---
|
||||
favicon: /favicons/surveymonkey.svg
|
||||
items:
|
||||
- name: Create contact
|
||||
desc: Creates a new contact in your address book.
|
||||
---
|
||||
|
||||
<script setup>
|
||||
import CustomListing from '../../components/CustomListing.vue'
|
||||
</script>
|
||||
|
||||
<CustomListing />
|
@@ -1,18 +0,0 @@
|
||||
# SurveyMonkey
|
||||
|
||||
:::info
|
||||
This page explains the steps you need to follow to set up the SurveyMonkey
|
||||
connection in Automatisch. If any of the steps are outdated, please let us know!
|
||||
:::
|
||||
|
||||
1. Go to the [My Apps page of your SurveyMonkey account](https://developer.surveymonkey.com/apps/) to create a project.
|
||||
2. Click on the **Add a New App** button.
|
||||
3. Fill the form and submit it.
|
||||
4. Go to **Settings** page.
|
||||
5. Copy **OAuth Redirect URL** from Automatisch to **OAuth Redirect URIs** field, and click on the **Submit Changes** button.
|
||||
6. In the same page, go to the **Scopes** section.
|
||||
7. Select **Create/Modify Surveys**, **View Surveys**, **View Collectors**, **View Responses**, **Create/Modify Contacts**, **View Contacts**, **Create/Modify Webhooks**, **View Users** and **View Webhooks** scopes and click on the **Update Scopes** button.
|
||||
8. Copy the **Client ID** value in the same page to the `Client ID` field on Automatisch.
|
||||
9. Copy the **Secret** value in the same page to the `Client Secret` field on Automatisch.
|
||||
10. Click **Submit** button on Automatisch.
|
||||
11. Congrats! Start using your new SurveyMonkey connection within the flows.
|
@@ -1,12 +0,0 @@
|
||||
---
|
||||
favicon: /favicons/surveymonkey.svg
|
||||
items:
|
||||
- name: New response notification
|
||||
desc: Triggers a notification upon the completion of your survey.
|
||||
---
|
||||
|
||||
<script setup>
|
||||
import CustomListing from '../../components/CustomListing.vue'
|
||||
</script>
|
||||
|
||||
<CustomListing />
|
@@ -46,7 +46,6 @@ The following integrations are currently supported by Automatisch.
|
||||
- [Spotify](/apps/spotify/actions)
|
||||
- [Strava](/apps/strava/actions)
|
||||
- [Stripe](/apps/stripe/triggers)
|
||||
- [SurveyMonkey](/apps/surveymonkey/triggers)
|
||||
- [Telegram](/apps/telegram-bot/actions)
|
||||
- [Todoist](/apps/todoist/triggers)
|
||||
- [Trello](/apps/trello/actions)
|
||||
|
7
packages/docs/pages/public/favicons/eventbrite.svg
Normal file
7
packages/docs/pages/public/favicons/eventbrite.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<g>
|
||||
<circle fill="#F05537" cx="128" cy="128" r="128"></circle>
|
||||
<path d="M117.475323,82.7290398 C136.772428,78.4407943 156.069532,86.3025777 166.790146,101.311437 L81.5017079,120.608542 C84.3605382,102.26438 98.1782181,87.0172853 117.475323,82.7290398 Z M167.266618,153.48509 C160.596014,163.252761 150.351872,170.161601 138.678314,172.782195 C119.38121,177.070441 99.8458692,169.208657 89.1252554,153.961562 L174.651929,134.664457 L188.469609,131.567391 L215.152026,125.611495 C214.91379,119.893834 214.199082,114.176173 213.007903,108.696749 C202.287289,62.7172275 155.354825,33.8906884 108.42236,44.6113021 C61.4898956,55.3319159 32.1868848,101.073201 43.1457344,147.290958 C54.1045839,193.508715 100.798813,222.097018 147.731277,211.376404 C175.366637,205.182272 196.807864,186.599875 207.766714,163.014525 L167.266618,153.48509 L167.266618,153.48509 Z" fill="#FFFFFF" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 222.61 155.27"><defs><style>.cls-1{fill:#00bf6f;}</style></defs><title>Goldie_Sabaeus_RGB</title><path id="_Compound_Path_" data-name="<Compound Path>" class="cls-1" d="M249,141.26a26.52,26.52,0,0,0-6.29.78,81.08,81.08,0,0,0-64.19-59.81c-1.4-.25-2.66-.44-4.09-.62h0c.24-7.66.59-16.51,11.86-24.47l-1.78-4.49s-22,6.82-24.49,25.61c-1.09-5.11-11.33-11.51-16.4-12.72l-2.52,4.07s6.72,3.36,8.36,12.63h0A81.08,81.08,0,0,0,85.24,142a26.3,26.3,0,1,0,3.32,50,80.63,80.63,0,0,0,8.54,15.89l21.83-14.71-.19-.24c-5.77-7.42-9.3-18.34-9.9-29.21-.65-12,2.27-23.9,9.93-30.9,15.79-13.44,33-7.31,43.74,5.57h2.89c10.77-12.88,28-19,43.74-5.57,7.65,7,10.58,18.91,9.93,30.9-.59,10.87-4.12,21.79-9.9,29.21l-.19.24,21.83,14.71A80.63,80.63,0,0,0,239.37,192,26.29,26.29,0,1,0,249,141.26Zm-170.53,34a7.76,7.76,0,0,1,0-15.52,7.83,7.83,0,0,1,4.35,1.34,117.87,117.87,0,0,0,.83,12.19A7.76,7.76,0,0,1,78.44,175.31Zm171,0a7.76,7.76,0,0,1-5.18-2,117.87,117.87,0,0,0,.83-12.19,7.75,7.75,0,0,1,12.1,6.43A7.74,7.74,0,0,1,249.48,175.31Z" transform="translate(-52.66 -52.66)"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
Reference in New Issue
Block a user