Skip to content

Commit

Permalink
chore: updated label-paired exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-deriv committed Dec 21, 2023
1 parent 8d6f312 commit 433ba41
Show file tree
Hide file tree
Showing 6,130 changed files with 47,961 additions and 58,686 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
"editor.formatOnSave": true,
"[svg]": {
"editor.defaultFormatter": "jock.svg"
}
}
12 changes: 8 additions & 4 deletions scripts/svgr-configs/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export const IconSvgReactOutPutConfig: Options = {
return getExportTemplate({ reactComponentFilename, reactComponentName });
},
getSvgrConfig: (options) => {
console.log('options', JSON.stringify(options, null, 2));
const shouldUseTemplate = !options.componentName.toLowerCase().includes('label-paired');
const shouldCleanFills =
options.pageName.toLowerCase().includes('system') ||
options.pageName.toLowerCase().includes('illustrative');
Expand All @@ -69,7 +71,7 @@ export const IconSvgReactOutPutConfig: Options = {
svgoConfig.plugins?.push({
name: 'removeAttrs',
params: {
attrs: 'fill',
attrs: ['fill', 'fill-opacity'],
},
});
}
Expand All @@ -80,11 +82,13 @@ export const IconSvgReactOutPutConfig: Options = {
},
typescript: true,
svgo: true,
icon: true,
// plugins: shouldUseTemplate
// ? ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier']
// : undefined,
plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier'],
svgoConfig,
dimensions: false,
template: SvgrTemplate,
dimensions: !shouldUseTemplate,
template: shouldUseTemplate ? SvgrTemplate : undefined,
};
},
};
22 changes: 17 additions & 5 deletions scripts/utils/figma.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,27 @@ export const getFileDescriptor = (options: FigmaExport.ComponentOutputterParamOp
const separator = '/';
const splits = componentName.split(separator);

const category = splits[0].trim().replace(/-md/g, '');
let category = splits[0].trim().replace(/-md/g, '');

const subCategory = splits[1].trim().replace(/-md/g, '');
let subCategory = splits[1].trim().replace(/-md/g, '');

const variant = splits[2] ? splits[2].trim().replace(/-md/g, '') : undefined;
let variant = splits[2] ? splits[2].trim().replace(/-md/g, '') : undefined;

const style = splits[3] ? splits[3].trim().replace(/-md/g, '') : undefined;
let style = splits[3] ? splits[3].trim().replace(/-md/g, '') : undefined;

const type = splits[4] ? splits[4].trim().replace(/-md/g, '') : undefined;
let type = splits[4] ? splits[4].trim().replace(/-md/g, '') : undefined;

if (componentName.includes('label-paired')) {
category = splits[0].trim();

subCategory = splits[1].trim();

variant = splits[2] ? splits[2].trim() : undefined;

style = splits[3] ? splits[3].trim() : undefined;

type = splits[4] ? splits[4].trim() : undefined;
}

return {
category,
Expand Down
4 changes: 2 additions & 2 deletions src/react/Currencies/CurrencyAdaIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export const CurrencyAdaIcon = (
<g clipPath='url(#a)'>
<path
fill='#0033AD'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
d='M15.952 8.996a.498.498 0 1 0 .057-.995.498.498 0 0 0-.057.995M20.29 9.243a.392.392 0 1 1-.007-.784.392.392 0 0 1 .007.784M11.854 9.22a.391.391 0 1 0-.357-.696.391.391 0 0 0 .357.696M12.236 17.131a1.214 1.214 0 0 1-.305-.877h-.004a1.21 1.21 0 1 1 1.212 1.282h-.067a1.214 1.214 0 0 1-.836-.405M7.191 16a.392.392 0 1 1 .398.674.392.392 0 0 1-.398-.674M13.338 11.122a.605.605 0 1 1-1.054-.596.605.605 0 0 1 1.054.596M8.945 12.84a.499.499 0 1 0 .549-.835.499.499 0 0 0-.549.834M9.341 15.808a.605.605 0 1 1 .614 1.043.605.605 0 0 1-.614-1.043M9.012 19.795a.5.5 0 1 0 .45.89.5.5 0 0 0-.45-.89M11.762 14.591a.713.713 0 1 1-.012-1.427.713.713 0 0 1 .012 1.427M18.829 11.317a.605.605 0 1 0 .662-1.014.605.605 0 0 0-.662 1.013M18.924 15.1a1.21 1.21 0 0 0-1.28 1.14 1.212 1.212 0 0 0 1.141 1.28h.07a1.212 1.212 0 0 0 .07-2.42M13.928 14.879a1.208 1.208 0 0 1-.395-1.667 1.212 1.212 0 1 1 .395 1.667M22.984 12.838a.5.5 0 1 0-.45-.89.5.5 0 0 0 .45.89M19.612 13.51a.712.712 0 1 1 1.239.7.712.712 0 0 1-1.24-.7M16.349 12.037a.712.712 0 1 1-.724-1.226.712.712 0 0 1 .724 1.226M12.086 19.408a.712.712 0 1 0-.64-1.272.712.712 0 0 0 .64 1.272M16.213 13.937a1.212 1.212 0 1 1 2.417-.196 1.212 1.212 0 0 1-2.417.196M18.514 18.242a1.212 1.212 0 1 0-2.164 1.092 1.212 1.212 0 0 0 2.164-1.092M20.235 18.041a.713.713 0 1 1 .011 1.426.713.713 0 0 1-.01-1.426M22.952 16.337a.604.604 0 1 0-1.207-.07.604.604 0 0 0 1.207.07M24.408 15.96a.392.392 0 1 1 .398.676.392.392 0 0 1-.398-.677M23.05 19.793a.499.499 0 1 0-.546.835.499.499 0 0 0 .546-.835M11.707 23.389a.392.392 0 1 1 .007.783.392.392 0 0 1-.007-.783M20.142 23.412a.392.392 0 1 0 .353.701.392.392 0 0 0-.353-.7M15.783 18.693a1.212 1.212 0 1 1-2.416.197 1.212 1.212 0 0 1 2.416-.197M13.167 21.317a.606.606 0 1 0-.663 1.014.606.606 0 0 0 .663-1.014M15.712 23.704a.499.499 0 1 1 .505.859.499.499 0 0 1-.505-.86M15.998 20.498a.712.712 0 1 0-.087 1.422.712.712 0 0 0 .087-1.422M18.658 21.512a.605.605 0 1 1 1.056.593.605.605 0 0 1-1.056-.593'
d='M15.952 8.996a.498.498 0 1 0 .057-.995.498.498 0 0 0-.057.995ZM20.29 9.243a.392.392 0 1 1-.007-.784.392.392 0 0 1 .007.784ZM11.854 9.22a.391.391 0 1 0-.357-.696.391.391 0 0 0 .357.696ZM12.236 17.131a1.214 1.214 0 0 1-.305-.877h-.004a1.21 1.21 0 1 1 1.212 1.282h-.067a1.214 1.214 0 0 1-.836-.405ZM7.191 16a.392.392 0 1 1 .398.674.392.392 0 0 1-.398-.674ZM13.338 11.122a.605.605 0 1 1-1.054-.596.605.605 0 0 1 1.054.596ZM8.945 12.84a.499.499 0 1 0 .549-.835.499.499 0 0 0-.549.834ZM9.341 15.808a.605.605 0 1 1 .614 1.043.605.605 0 0 1-.614-1.043ZM9.012 19.795a.5.5 0 1 0 .45.89.5.5 0 0 0-.45-.89ZM11.762 14.591a.713.713 0 1 1-.012-1.427.713.713 0 0 1 .012 1.427ZM18.829 11.316a.605.605 0 1 0 .662-1.013.605.605 0 0 0-.662 1.013ZM18.924 15.1a1.21 1.21 0 0 0-1.28 1.14 1.212 1.212 0 0 0 1.141 1.28h.07a1.212 1.212 0 0 0 .07-2.42ZM13.928 14.879a1.208 1.208 0 0 1-.395-1.667 1.212 1.212 0 1 1 .395 1.667ZM22.984 12.838a.5.5 0 1 0-.45-.89.5.5 0 0 0 .45.89ZM19.612 13.51a.712.712 0 1 1 1.239.7.712.712 0 0 1-1.24-.7ZM16.349 12.037a.712.712 0 1 1-.724-1.226.712.712 0 0 1 .724 1.226ZM12.086 19.408a.712.712 0 1 0-.64-1.272.712.712 0 0 0 .64 1.272ZM16.213 13.937a1.212 1.212 0 1 1 2.417-.196 1.212 1.212 0 0 1-2.417.196ZM18.514 18.242a1.212 1.212 0 1 0-2.164 1.092 1.212 1.212 0 0 0 2.164-1.092ZM20.235 18.041a.713.713 0 1 1 .011 1.426.713.713 0 0 1-.01-1.426ZM22.952 16.337a.604.604 0 1 0-1.207-.07.604.604 0 0 0 1.207.07ZM24.408 15.96a.392.392 0 1 1 .398.676.392.392 0 0 1-.398-.677ZM23.05 19.793a.499.499 0 1 0-.546.835.499.499 0 0 0 .546-.835ZM11.707 23.389a.392.392 0 1 1 .007.783.392.392 0 0 1-.007-.783ZM20.142 23.412a.392.392 0 1 0 .353.701.392.392 0 0 0-.353-.7ZM15.783 18.693a1.212 1.212 0 1 1-2.416.197 1.212 1.212 0 0 1 2.416-.197ZM13.167 21.317a.606.606 0 1 0-.663 1.014.606.606 0 0 0 .663-1.014ZM15.712 23.704a.499.499 0 1 1 .505.859.499.499 0 0 1-.505-.86ZM15.998 20.498a.712.712 0 1 0-.087 1.422.712.712 0 0 0 .087-1.422ZM18.658 21.512a.605.605 0 1 1 1.056.593.605.605 0 0 1-1.056-.593Z'
/>
</g>
<defs>
Expand Down
4 changes: 2 additions & 2 deletions src/react/Currencies/CurrencyAlgoIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export const CurrencyAlgoIcon = (
<g clipPath='url(#a)'>
<path
fill='#000'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
d='m10.794 24 7.309-12.642.875 3.273L13.574 24h2.765l3.513-6.081L21.49 24h2.483l-2.426-9.03 1.72-2.977h-2.51L19.682 8H17.27l-.056.085L8.029 24z'
d='m10.794 24 7.309-12.642.875 3.273L13.574 24h2.765l3.513-6.081L21.49 24h2.483l-2.426-9.03 1.72-2.977h-2.51L19.682 8H17.27l-.056.085L8.029 24h2.765Z'
/>
</g>
<defs>
Expand Down
10 changes: 5 additions & 5 deletions src/react/Currencies/CurrencyAudIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ export const CurrencyAudIcon = (
>
<path
fill='#283991'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
d='m24.3 8.51-.612.763.638.751-.989-.176-.356.895-.327-.896-.969.153.636-.744-.613-.745.964.17.356-.913.328.914zM10.944 24.916l1.078-1.344-1.666.302-.578-1.614-.628 1.614-1.7-.302 1.08 1.314L7.408 26.2l1.71-.27.577 1.581.629-1.58 1.744.312zM23.688 26.103l.612-.761-.944.17-.328-.914-.356.915-.963-.171.612.744-.636.745.97-.153.326.895.356-.894.989.176zM27.644 13.626l.61-.761-.943.17-.327-.914-.356.915-.964-.171.612.745-.636.744.97-.153.326.896.356-.895.989.176zM20.878 14.8l-.611.762.637.752-.988-.176-.356.894-.327-.895-.97.152.636-.744-.612-.745.964.172.355-.915.328.915zM0 15.473l5.998-3.999v4.263h4v-4.263l6 4v-4.807l-1.395-.93h1.395v-4h-1.395l1.395-.93V0l-6 4V.9a15.988 15.988 0 0 0-4 2.346V4l-.502-.334a16.037 16.037 0 0 0-4.335 6.071h.231l-.314.21A15.949 15.949 0 0 0 0 15.473'
d='m24.3 8.51-.612.763.638.751-.989-.176-.356.895-.327-.896-.969.153.636-.744-.613-.745.964.17.356-.913.328.914.944-.171ZM10.944 24.916l1.078-1.344-1.666.302-.578-1.614-.628 1.614-1.7-.302 1.08 1.314L7.408 26.2l1.71-.27.577 1.581.629-1.58 1.744.312-1.124-1.327ZM23.688 26.103l.612-.761-.944.17-.328-.914-.356.915-.963-.171.612.744-.636.745.97-.153.326.895.356-.894.989.176-.638-.752ZM27.644 13.626l.61-.761-.943.17-.327-.914-.356.915-.964-.171.612.745-.636.744.97-.153.326.896.356-.895.989.176-.637-.752ZM20.878 14.8l-.611.762.637.752-.988-.176-.356.894-.327-.895-.97.152.636-.744-.612-.745.964.172.355-.915.328.915.944-.172ZM0 15.473l5.998-3.999v4.263h4v-4.263l6 4v-4.807l-1.395-.93h1.395v-4h-1.395l1.395-.93V0l-6 4V.9a15.988 15.988 0 0 0-4 2.346V4l-.502-.334a16.037 16.037 0 0 0-4.335 6.071h.231l-.314.21A15.949 15.949 0 0 0 0 15.473Z'
/>
<path
fill='#F44336'
d='m.143 13.575 5.756-3.838H4.096L.388 12.209c-.1.449-.183.904-.245 1.366'
d='m.143 13.575 5.756-3.838H4.096L.388 12.209c-.1.449-.183.904-.245 1.366Z'
/>
<path
fill='#F44336'
d='M1.606 8.737h5.392v7h2v-7h7v-2h-7V1.345c-.697.34-1.365.728-2 1.161v4.231h-4.23a15.986 15.986 0 0 0-1.162 2'
d='M1.606 8.737h5.392v7h2v-7h7v-2h-7V1.345c-.697.34-1.365.728-2 1.161v4.231h-4.23a15.986 15.986 0 0 0-1.162 2Z'
/>
<path
fill='#F44336'
d='m3.715 5.483.381.254H5.9L4.387 4.729c-.232.244-.456.495-.672.754M15.998 1.803v1.202l-4.099 2.732h-1.803zM11.9 9.737l4.098 2.732v1.202l-5.902-3.934z'
d='m3.715 5.483.381.254H5.9L4.387 4.729c-.232.244-.456.495-.672.754ZM15.998 1.803v1.202l-4.099 2.732h-1.803l5.902-3.934ZM11.9 9.737l4.098 2.732v1.202l-5.902-3.934H11.9Z'
/>
</svg>
);
Expand Down
4 changes: 2 additions & 2 deletions src/react/Currencies/CurrencyAvaxIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const CurrencyAvaxIcon = (
>
<path
fill='#E84142'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
d='M8.306 23.185h3.101c.73 0 1.096 0 1.421-.09a2.34 2.34 0 0 0 .954-.554c.344-.327.561-.783.793-1.19l4.022-7.109c.357-.624.534-.938.612-1.268a2.332 2.332 0 0 0 0-1.091c-.078-.327-.256-.639-.608-1.254L17.02 7.867c-.326-.573-.49-.86-.699-.965a.79.79 0 0 0-.714 0c-.208.106-.373.392-.699.965L7.25 21.364c-.321.565-.482.848-.47 1.08a.788.788 0 0 0 .357.615c.196.126.518.126 1.17.126M23.682 23.185h-4.443c-.656 0-.986 0-1.178-.126a.795.795 0 0 1-.357-.62c-.012-.23.15-.51.475-1.07l2.225-3.82c.326-.562.491-.84.695-.947a.782.782 0 0 1 .71 0c.203.103.361.37.674.899l2.283 3.906c.309.533.466.804.455 1.028a.785.785 0 0 1-.357.62c-.197.13-.527.13-1.182.13'
d='M8.306 23.185h3.101c.73 0 1.096 0 1.421-.09a2.34 2.34 0 0 0 .954-.554c.344-.327.561-.783.793-1.19l4.022-7.109c.357-.624.534-.938.612-1.268a2.332 2.332 0 0 0 0-1.091c-.078-.327-.256-.639-.608-1.254L17.02 7.867c-.326-.573-.49-.86-.699-.965a.79.79 0 0 0-.714 0c-.208.106-.373.392-.699.965L7.25 21.364c-.321.565-.482.848-.47 1.08a.788.788 0 0 0 .357.615c.196.126.518.126 1.17.126ZM23.682 23.185h-4.444c-.655 0-.985 0-1.177-.126a.795.795 0 0 1-.357-.62c-.012-.23.15-.51.475-1.07l2.225-3.82c.326-.562.491-.84.695-.947a.782.782 0 0 1 .71 0c.203.103.361.37.674.899l2.283 3.906c.309.533.466.804.455 1.028a.785.785 0 0 1-.357.62c-.197.13-.527.13-1.182.13Z'
/>
</svg>
);
Expand Down
4 changes: 2 additions & 2 deletions src/react/Currencies/CurrencyBatIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ export const CurrencyBatIcon = (
<g clipPath='url(#a)'>
<path
fill='#FF5000'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
fillRule='evenodd'
d='M16 6.167 4.978 22.7h22.044zm-3.674 12.859L16 13.516l3.674 5.51z'
d='M16 6.167 4.978 22.7h22.044L16 6.168Zm-3.674 12.859L16 13.516l3.674 5.51h-7.348Z'
clipRule='evenodd'
/>
</g>
Expand Down
4 changes: 2 additions & 2 deletions src/react/Currencies/CurrencyBchIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export const CurrencyBchIcon = (
>
<path
fill='#8DC351'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
d='M21.207 10.534c-.776-1.972-2.722-2.15-4.988-1.71l-.807-2.813-1.712.491.786 2.74c-.45.128-.908.27-1.363.41l-.79-2.758-1.711.49.805 2.813c-.368.114-.73.226-1.085.328l-.003-.01-2.362.677.525 1.83s1.258-.388 1.243-.358c.694-.199 1.035.139 1.2.468l.92 3.204c.047-.013.11-.029.184-.04l-.181.052 1.287 4.49c.032.227.004.612-.48.752.027.013-1.246.356-1.246.356l.247 2.143 2.228-.64c.415-.117.825-.227 1.226-.34l.817 2.845 1.71-.49-.807-2.815c.459-.122.916-.248 1.372-.38l.802 2.803 1.713-.491-.814-2.84c2.831-.991 4.638-2.294 4.113-5.07-.422-2.234-1.724-2.912-3.471-2.836.848-.79 1.213-1.859.642-3.301m-.65 6.77c.61 2.127-3.1 2.929-4.26 3.263l-1.081-3.77c1.16-.333 4.704-1.71 5.34.508zm-2.322-5.09c.554 1.935-2.547 2.58-3.514 2.857l-.98-3.419c.966-.277 3.915-1.455 4.494.563z'
d='M21.207 10.534c-.776-1.972-2.722-2.15-4.988-1.71l-.807-2.813-1.712.491.786 2.74c-.45.128-.908.27-1.363.41l-.79-2.758-1.711.49.805 2.813c-.368.114-.73.226-1.085.328l-.003-.01-2.362.677.525 1.83s1.258-.388 1.243-.358c.694-.199 1.035.139 1.2.468l.92 3.204c.047-.013.11-.029.184-.04l-.181.052 1.287 4.49c.032.227.004.612-.48.752.027.013-1.246.356-1.246.356l.247 2.143 2.228-.64c.415-.117.825-.227 1.226-.34l.817 2.845 1.71-.49-.807-2.815c.459-.122.916-.248 1.372-.38l.802 2.803 1.713-.491-.814-2.84c2.831-.991 4.638-2.294 4.113-5.07-.422-2.234-1.724-2.912-3.471-2.836.848-.79 1.213-1.859.642-3.301Zm-.65 6.77c.61 2.127-3.1 2.929-4.26 3.263l-1.081-3.77c1.16-.333 4.704-1.71 5.34.508l.001-.001Zm-2.322-5.09c.554 1.935-2.547 2.58-3.514 2.857l-.98-3.419c.966-.277 3.915-1.455 4.494.563v-.001Z'
/>
</svg>
);
Expand Down
6 changes: 3 additions & 3 deletions src/react/Currencies/CurrencyBnbIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ export const CurrencyBnbIcon = (
>
<path
fill='#F3BA2F'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16'
d='M32 16c0 8.837-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0s16 7.163 16 16Z'
/>
<path
fill='#fff'
d='M19.131 14.696c-.077-.012-.12-.06-.16-.106l-.034-.036-.39-.389c-.787-.786-1.575-1.572-2.355-2.366-.152-.154-.232-.154-.383 0-.507.516-1.019 1.028-1.53 1.54-.405.406-.81.811-1.213 1.219-.13.133-.205.149-.347.002a59.81 59.81 0 0 0-1.492-1.488c-.128-.124-.12-.2 0-.322 1.555-1.549 3.107-3.1 4.655-4.656.098-.099.152-.089.243.003 1.544 1.55 3.09 3.097 4.64 4.64.124.125.148.204.008.34-.35.34-.695.686-1.039 1.032l-.454.455c-.033.033-.07.064-.104.093a3.56 3.56 0 0 0-.045.039M20.873 19.129a1.697 1.697 0 0 1-.074.08l-1.072 1.075c-1.203 1.207-2.407 2.414-3.607 3.623-.101.102-.15.083-.24-.007a1764.098 1764.098 0 0 0-4.673-4.685c-.111-.111-.106-.177.003-.283a88.827 88.827 0 0 0 1.563-1.554c.123-.125.185-.06.256.013l.023.025.629.628v.001c.715.714 1.429 1.427 2.134 2.15.162.165.234.137.379-.011.463-.472.93-.94 1.397-1.408.444-.446.889-.891 1.33-1.34.15-.153.237-.151.385.003.341.355.69.702 1.04 1.049a136.28 136.28 0 0 1 .479.475c.037.032.076.066.078.132l-.016.018z'
d='M19.131 14.696c-.077-.012-.12-.06-.16-.106l-.034-.036-.39-.389c-.787-.786-1.575-1.572-2.355-2.366-.152-.154-.232-.154-.383 0-.507.516-1.019 1.028-1.53 1.54-.405.406-.81.811-1.213 1.219-.13.133-.205.149-.347.002a59.81 59.81 0 0 0-1.492-1.488c-.128-.124-.12-.2 0-.322 1.555-1.549 3.107-3.1 4.655-4.656.098-.099.152-.089.243.003 1.544 1.55 3.09 3.097 4.64 4.64.124.125.148.204.008.34-.35.34-.695.686-1.039 1.032l-.454.455c-.033.033-.07.064-.104.093a3.56 3.56 0 0 0-.045.039ZM20.873 19.129a1.697 1.697 0 0 1-.074.08l-1.072 1.075c-1.203 1.207-2.407 2.414-3.607 3.623-.101.102-.15.083-.24-.007a1764.098 1764.098 0 0 0-4.673-4.685c-.111-.111-.106-.177.003-.283a88.827 88.827 0 0 0 1.563-1.554c.123-.125.185-.06.256.013l.023.025.629.628v.001c.715.714 1.429 1.427 2.134 2.15.162.165.234.137.379-.011.463-.472.93-.94 1.397-1.408.444-.446.889-.891 1.33-1.34.15-.153.237-.151.385.003.341.355.69.702 1.04 1.049a136.28 136.28 0 0 1 .479.475c.037.032.076.066.078.132l-.016.018-.014.016Z'
/>
<path
fill='#fff'
d='m15.949 17.777.024.02c.07.005.104-.03.136-.065l.01-.01.005-.005.42-.42.002-.001c.388-.39.777-.778 1.17-1.162.11-.107.116-.167.005-.277-.544-.536-1.082-1.08-1.619-1.625-.067-.069-.112-.087-.188-.01-.552.56-1.105 1.12-1.664 1.674-.09.09-.059.127.015.2.372.37.742.744 1.112 1.117l.501.505c.023.023.049.042.07.06M22.22 14.21l.036.031c.028.026.06.054.09.084l.451.448c.381.379.763.759 1.148 1.135.066.065.079.09.006.16-.55.54-1.097 1.084-1.641 1.63-.082.083-.13.1-.223.006-.52-.53-1.044-1.056-1.574-1.575-.112-.109-.111-.168 0-.277.38-.37.753-.745 1.127-1.12l.434-.433a.393.393 0 0 0 .02-.024c.03-.033.06-.068.127-.065M9.764 17.762l.02.017c.052.004.076-.021.1-.046a8106.786 8106.786 0 0 1 1.674-1.66c.056-.058.062-.106-.008-.175-.542-.529-1.082-1.06-1.614-1.599-.104-.105-.16-.1-.26.002a154.41 154.41 0 0 1-1.63 1.616c-.059.059-.063.084-.001.145a304.738 304.738 0 0 1 1.664 1.648c.018.02.038.037.055.052'
d='m15.949 17.777.024.02c.07.005.104-.03.136-.065l.01-.01.005-.005.42-.42.002-.001c.388-.39.777-.778 1.17-1.162.11-.107.116-.167.005-.277-.544-.536-1.082-1.08-1.619-1.625-.067-.069-.112-.087-.188-.01-.552.56-1.105 1.12-1.664 1.674-.09.09-.059.127.015.2.372.37.742.744 1.112 1.117l.501.505c.023.023.049.042.07.06ZM22.22 14.21l.036.031c.028.026.06.054.09.084l.451.448c.381.379.763.759 1.148 1.135.066.065.079.09.006.16-.55.54-1.097 1.084-1.641 1.63-.082.083-.13.1-.223.006-.52-.53-1.044-1.056-1.574-1.575-.112-.109-.111-.168 0-.277.38-.37.753-.745 1.127-1.12l.434-.433a.393.393 0 0 0 .02-.024c.03-.033.06-.068.127-.065ZM9.764 17.762l.02.017c.052.004.076-.021.1-.046a8106.786 8106.786 0 0 1 1.674-1.66c.056-.058.062-.106-.008-.175-.542-.529-1.082-1.06-1.614-1.599-.104-.105-.16-.1-.26.002a154.41 154.41 0 0 1-1.63 1.616c-.059.059-.063.084-.001.145a304.738 304.738 0 0 1 1.664 1.648c.018.02.038.037.055.052Z'
/>
</svg>
);
Expand Down
Loading

0 comments on commit 433ba41

Please sign in to comment.