Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
Merge pull request #26 from Synthetixio/refactoring
Browse files Browse the repository at this point in the history
Refactoring
  • Loading branch information
fritzschoff authored Apr 5, 2022
2 parents 180db38 + 86cc61f commit 1982311
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 34 deletions.
15 changes: 2 additions & 13 deletions src/components/Button.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React, { ButtonHTMLAttributes, FC, MouseEvent } from 'react';
import styled from 'styled-components';

import { rem } from '../constants';
import { theme } from '../styles';
import colors from '../styles/colors';
import fonts from '../styles/fonts';
Expand Down Expand Up @@ -64,7 +62,7 @@ const determineHeight = (size: ButtonProps['size']) => {
const determinePadding = (size: ButtonProps['size']) => {
switch (size) {
case 'large':
return '16px 100px';
return '16px 10px';
case 'medium':
return '11.5px 16px';
case 'small':
Expand All @@ -74,15 +72,6 @@ const determinePadding = (size: ButtonProps['size']) => {
}
};

const determineFontSize = (size: ButtonProps['size']) => {
switch (size) {
case 'small':
return '1rem;';
default:
return `${rem * 1.17}px`;
}
};

const determineVariant = (variant: ButtonProps['variant'], disabled?: boolean) => {
if (disabled) return 'rgba(86, 86, 99, 0.6);';
switch (variant) {
Expand Down Expand Up @@ -132,7 +121,7 @@ const StyledButtonText = styled.span<{
variant?: ButtonProps['variant'];
size?: ButtonProps['size'];
}>`
font-size: ${({ size }) => determineFontSize(size)};
font-size: 1rem;
font-family: ${fonts.interBold};
line-height: 17px;
font-weight: bold;
Expand Down
3 changes: 1 addition & 2 deletions src/components/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import { ArrowLeftIcon, ArrowRightIcon } from './Icons';

interface CarouselProps {
/**
* @dev the first html node must be a div element because of the css selectors.
* @warn minimum of 5 elements are required!
* @dev the first html node must be a DIV element because of the css selectors from the StyledCarouselItemsWrapper.2
*/
carouselItems: ReactElement[];
maxWidth?: string;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Icons/CloseIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export default function CloseIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M16.7071 7.29289C17.0976 7.68342 17.0976 8.31658 16.7071 8.70711L8.70711 16.7071C8.31658 17.0976 7.68342 17.0976 7.29289 16.7071C6.90237 16.3166 6.90237 15.6834 7.29289 15.2929L15.2929 7.29289C15.6834 6.90237 16.3166 6.90237 16.7071 7.29289Z"
fill={active ? colors.lightBlue : 'white'}
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M7.29289 7.29289C7.68342 6.90237 8.31658 6.90237 8.70711 7.29289L16.7071 15.2929C17.0976 15.6834 17.0976 16.3166 16.7071 16.7071C16.3166 17.0976 15.6834 17.0976 15.2929 16.7071L7.29289 8.70711C6.90237 8.31658 6.90237 7.68342 7.29289 7.29289Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/EditIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function EditIcon({ active }: SVGIconProps) {
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M9.5 18.5L4.5 19.5L5.5 14.5L15.5 4.5L19.5 8.5L9.5 18.5V18.5Z"
stroke={active ? colors.lightBlue : 'white'}
strokeWidth="2"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/ListIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function ListIcon({ active }: SVGIconProps) {
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M15.8872 3C15.8872 3 8.38121 3.00391 8.36947 3.00391C5.67094 3.02053 4 4.79609 4 7.5044V16.4956C4 19.2176 5.68365 21 8.40565 21C8.40565 21 15.9107 20.9971 15.9234 20.9971C18.6219 20.9804 20.2939 19.2039 20.2939 16.4956V7.5044C20.2939 4.7824 18.6092 3 15.8872 3Z"
stroke={active ? colors.lightBlue : 'white'}
strokeWidth="1.5"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/MenuIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function MenuIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M3 8V6H21V8H3ZM3 13H21V11H3V13ZM3 18H21V16H3V18Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/PlusBorderIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function PlusBorderIcon({ active }: SVGIconProps) {
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M16.6857 2H7.31429C4.04762 2 2 4.31208 2 7.58516V16.4148C2 19.6879 4.0381 22 7.31429 22H16.6857C19.9619 22 22 19.6879 22 16.4148V7.58516C22 4.31208 19.9619 2 16.6857 2Z"
stroke={active ? colors.lightBlue : 'white'}
strokeWidth="1.5"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/SearchIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function SearchIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M14.71 14H15.5L20.49 19L19 20.49L14 15.5V14.71L13.73 14.43C12.59 15.41 11.11 16 9.5 16C5.91 16 3 13.09 3 9.5C3 5.91 5.91 3 9.5 3C13.09 3 16 5.91 16 9.5C16 11.11 15.41 12.59 14.43 13.73L14.71 14ZM5 9.5C5 11.99 7.01 14 9.5 14C11.99 14 14 11.99 14 9.5C14 7.01 11.99 5 9.5 5C7.01 5 5 7.01 5 9.5Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/SkipLeftIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function SkipLeftIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M15.7071 16.7071C15.3166 17.0976 14.6834 17.0976 14.2929 16.7071L10.2929 12.7071C9.90237 12.3166 9.90237 11.6834 10.2929 11.2929L14.2929 7.29289C14.6834 6.90237 15.3166 6.90237 15.7071 7.29289C16.0976 7.68342 16.0976 8.31658 15.7071 8.70711L12.4142 12L15.7071 15.2929C16.0976 15.6834 16.0976 16.3166 15.7071 16.7071Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/SkipRightIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function SkipRightIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M8.29289 7.29289C8.68342 6.90237 9.31658 6.90237 9.70711 7.29289L13.7071 11.2929C14.0976 11.6834 14.0976 12.3166 13.7071 12.7071L9.70711 16.7071C9.31658 17.0976 8.68342 17.0976 8.29289 16.7071C7.90237 16.3166 7.90237 15.6834 8.29289 15.2929L11.5858 12L8.29289 8.70711C7.90237 8.31658 7.90237 7.68342 8.29289 7.29289Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Icons/SortListIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ export default function SortListIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M7.29289 9.70711C6.90237 9.31658 6.90237 8.68342 7.29289 8.29289L11.2929 4.29289C11.6834 3.90237 12.3166 3.90237 12.7071 4.29289L16.7071 8.29289C17.0976 8.68342 17.0976 9.31658 16.7071 9.70711C16.3166 10.0976 15.6834 10.0976 15.2929 9.70711L12 6.41421L8.70711 9.70711C8.31658 10.0976 7.68342 10.0976 7.29289 9.70711Z"
fill={active ? colors.lightBlue : 'white'}
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M16.7071 14.2929C17.0976 14.6834 17.0976 15.3166 16.7071 15.7071L12.7071 19.7071C12.3166 20.0976 11.6834 20.0976 11.2929 19.7071L7.29289 15.7071C6.90237 15.3166 6.90237 14.6834 7.29289 14.2929C7.68342 13.9024 8.31658 13.9024 8.70711 14.2929L12 17.5858L15.2929 14.2929C15.6834 13.9024 16.3166 13.9024 16.7071 14.2929Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/ThreeDotsMenuIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function ThreeDotsMenuIcon({ active }: SVGIconProps) {
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M8 12C8 13.1046 7.10457 14 6 14C4.89543 14 4 13.1046 4 12C4 10.8954 4.89543 10 6 10C7.10457 10 8 10.8954 8 12ZM14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12ZM18 14C19.1046 14 20 13.1046 20 12C20 10.8954 19.1046 10 18 10C16.8954 10 16 10.8954 16 12C16 13.1046 16.8954 14 18 14Z"
fill={active ? colors.lightBlue : 'white'}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icons/WalletIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function WalletIcon({ active }: SVGIconProps) {
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M7.74766 3H16.3911C19.2892 3 21.6388 5.34951 21.6388 8.24766V15.4247C21.6388 18.3229 19.2892 20.6724 16.3911 20.6724H7.74766C4.84951 20.6724 2.5 18.3229 2.5 15.4247V8.24766C2.5 5.34951 4.84951 3 7.74766 3Z"
stroke={active ? colors.lightBlue : 'white'}
strokeWidth="1.5"
Expand Down
2 changes: 0 additions & 2 deletions src/components/TextInput.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React, { FormEventHandler } from 'react';
import styled from 'styled-components';

import { rem } from '../constants';
import colors from '../styles/colors';

interface TextInputProps {
Expand Down
4 changes: 2 additions & 2 deletions src/stories/IconButton.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Template.args = {
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M8.99999 12.2741C7.19251 12.2741 5.72726 10.8088 5.72726 9.00125C5.72726 7.19369 7.19251 5.72837 8.99999 5.72837C10.8075 5.72837 12.2727 7.19369 12.2727 9.00125C12.2727 10.8088 10.8075 12.2741 8.99999 12.2741ZM10.6364 9.00125C10.6364 9.90503 9.90375 10.6377 9.00001 10.6377C8.09627 10.6377 7.36365 9.90503 7.36365 9.00125C7.36365 8.09747 8.09627 7.36481 9.00001 7.36481C9.90375 7.36481 10.6364 8.09747 10.6364 9.00125Z"
fill="white"
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M14.0241 16.1626C14.2847 16.2352 14.5643 16.1618 14.7556 15.9704L15.9514 14.7746C16.1422 14.5838 16.2158 14.3053 16.1442 14.0452L15.6899 12.3946C15.6453 12.2328 15.6563 12.0607 15.7212 11.9059L15.8002 11.7172C15.8645 11.5635 15.9782 11.4356 16.1234 11.3537L17.6186 10.5099C17.8542 10.3769 18 10.1273 18 9.85671V8.16574C18 7.89594 17.8551 7.64692 17.6205 7.51363L16.1298 6.66651C15.9844 6.58387 15.8708 6.455 15.807 6.30037L15.7301 6.11397C15.6664 5.95935 15.6561 5.78785 15.701 5.62673L16.161 3.97527C16.2337 3.7144 16.1601 3.43461 15.9685 3.24326L14.7719 2.04831C14.5811 1.85784 14.3028 1.78438 14.0429 1.85589L12.392 2.31018C12.2301 2.35474 12.0579 2.34366 11.903 2.27872L11.7157 2.20019C11.5621 2.13579 11.4344 2.02212 11.3525 1.87708L10.5086 0.381445C10.3756 0.145768 10.126 0 9.85543 0H8.16454C7.89475 0 7.64575 0.144908 7.51246 0.379481L6.66538 1.87026C6.58274 2.01569 6.45387 2.12932 6.29925 2.19309L6.11316 2.26984C5.95846 2.33365 5.78686 2.34388 5.62568 2.29891L3.97457 1.8383C3.71383 1.76556 3.43412 1.83897 3.24271 2.03039L2.04859 3.22457C1.85785 3.41531 1.78424 3.69381 1.8558 3.9539L2.31008 5.60498C2.35463 5.7669 2.34355 5.93909 2.27862 6.09397L2.20008 6.28128C2.13569 6.43486 2.02202 6.56264 1.87699 6.64448L0.381427 7.48842C0.145762 7.6214 0 7.87103 0 8.14163V9.83255C0 10.102 0.144518 10.3507 0.378589 10.4842L1.86895 11.3337C2.01396 11.4164 2.12725 11.5451 2.19089 11.6994L2.26821 11.8869C2.33197 12.0415 2.34223 12.213 2.29735 12.3741L1.83732 14.0255C1.76471 14.2862 1.83814 14.5658 2.02948 14.7572L3.22442 15.9521C3.41516 16.1429 3.69364 16.2165 3.95372 16.1449L5.60472 15.6906C5.76664 15.6461 5.93882 15.6572 6.09369 15.7221L6.28114 15.8007C6.43467 15.8651 6.56241 15.9787 6.64425 16.1237L7.48815 17.6187C7.62115 17.8543 7.87072 18 8.14127 18H9.83211C10.1016 18 10.3504 17.8554 10.4838 17.6212L11.3325 16.1311C11.4152 15.986 11.5439 15.8726 11.6983 15.8089L11.8855 15.7317C12.0401 15.6679 12.2116 15.6577 12.3727 15.7025L14.0241 16.1626ZM14.8307 10.205C14.6855 10.2869 14.5718 10.4148 14.5074 10.5685L13.9935 11.796C13.9287 11.9509 13.9177 12.1229 13.9622 12.2848L14.3425 13.6665C14.3964 13.8622 14.341 14.0717 14.1975 14.2151C14.0536 14.3591 13.8433 14.4143 13.6472 14.3597L12.2694 13.9758C12.1083 13.931 11.9368 13.9412 11.7822 14.005L10.5547 14.5113C10.4003 14.5749 10.2716 14.6883 10.1889 14.8334L9.47945 16.0791C9.37898 16.2555 9.19159 16.3644 8.98858 16.3644C8.78481 16.3644 8.59682 16.2546 8.49664 16.0772L7.7938 14.8321C7.71196 14.6871 7.58421 14.5734 7.43068 14.5091L6.20489 13.9951C6.05002 13.9301 5.87783 13.9191 5.71592 13.9636L4.33281 14.3442C4.1375 14.3979 3.92838 14.3427 3.78515 14.1994C3.64146 14.0557 3.58632 13.8458 3.64085 13.65L4.02483 12.2716C4.06971 12.1105 4.05945 11.939 3.99569 11.7844L3.48943 10.5568C3.4258 10.4025 3.3125 10.2738 3.1675 10.1911L1.9216 9.48093C1.74526 9.38041 1.63639 9.19302 1.63639 8.99003C1.63639 8.78617 1.7462 8.59811 1.92374 8.49792L3.16936 7.79503C3.31439 7.71319 3.42806 7.58541 3.49245 7.43183L4.00641 6.20598C4.07134 6.0511 4.08242 5.8789 4.03787 5.71698L3.6571 4.33308C3.60349 4.13822 3.65864 3.92957 3.80155 3.78665C3.94496 3.64324 4.15452 3.58823 4.34987 3.64273L5.72872 4.0274C5.88991 4.07236 6.0615 4.06213 6.2162 3.99833L7.44377 3.49203C7.5984 3.42825 7.72726 3.31462 7.8099 3.1692L8.51823 1.92261C8.61845 1.74623 8.80568 1.63726 9.00855 1.63726C9.21202 1.63726 9.39972 1.74687 9.49971 1.92409L10.2029 3.1703C10.2847 3.31534 10.4125 3.42901 10.5661 3.49341L11.7919 4.00739C11.9467 4.07233 12.1189 4.08341 12.2808 4.03886L13.664 3.65825C13.8595 3.60445 14.0689 3.65971 14.2124 3.803C14.3565 3.94694 14.4119 4.15742 14.3572 4.35367L13.9736 5.73088C13.9287 5.892 13.9389 6.0635 14.0027 6.21812L14.509 7.44574C14.5728 7.60037 14.6864 7.72925 14.8318 7.81188L16.0783 8.52024C16.2547 8.62047 16.3637 8.80771 16.3637 9.01059C16.3637 9.21407 16.2541 9.40177 16.0769 9.50177L14.8307 10.205Z"
fill="white"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/stories/LinkButton.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Template.args = {
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M8.99999 12.2741C7.19251 12.2741 5.72726 10.8088 5.72726 9.00125C5.72726 7.19369 7.19251 5.72837 8.99999 5.72837C10.8075 5.72837 12.2727 7.19369 12.2727 9.00125C12.2727 10.8088 10.8075 12.2741 8.99999 12.2741ZM10.6364 9.00125C10.6364 9.90503 9.90375 10.6377 9.00001 10.6377C8.09627 10.6377 7.36365 9.90503 7.36365 9.00125C7.36365 8.09747 8.09627 7.36481 9.00001 7.36481C9.90375 7.36481 10.6364 8.09747 10.6364 9.00125Z"
fill="white"
/>
<path
fillRule="evenodd"
clip-rule="evenodd"
clipRule="evenodd"
d="M14.0241 16.1626C14.2847 16.2352 14.5643 16.1618 14.7556 15.9704L15.9514 14.7746C16.1422 14.5838 16.2158 14.3053 16.1442 14.0452L15.6899 12.3946C15.6453 12.2328 15.6563 12.0607 15.7212 11.9059L15.8002 11.7172C15.8645 11.5635 15.9782 11.4356 16.1234 11.3537L17.6186 10.5099C17.8542 10.3769 18 10.1273 18 9.85671V8.16574C18 7.89594 17.8551 7.64692 17.6205 7.51363L16.1298 6.66651C15.9844 6.58387 15.8708 6.455 15.807 6.30037L15.7301 6.11397C15.6664 5.95935 15.6561 5.78785 15.701 5.62673L16.161 3.97527C16.2337 3.7144 16.1601 3.43461 15.9685 3.24326L14.7719 2.04831C14.5811 1.85784 14.3028 1.78438 14.0429 1.85589L12.392 2.31018C12.2301 2.35474 12.0579 2.34366 11.903 2.27872L11.7157 2.20019C11.5621 2.13579 11.4344 2.02212 11.3525 1.87708L10.5086 0.381445C10.3756 0.145768 10.126 0 9.85543 0H8.16454C7.89475 0 7.64575 0.144908 7.51246 0.379481L6.66538 1.87026C6.58274 2.01569 6.45387 2.12932 6.29925 2.19309L6.11316 2.26984C5.95846 2.33365 5.78686 2.34388 5.62568 2.29891L3.97457 1.8383C3.71383 1.76556 3.43412 1.83897 3.24271 2.03039L2.04859 3.22457C1.85785 3.41531 1.78424 3.69381 1.8558 3.9539L2.31008 5.60498C2.35463 5.7669 2.34355 5.93909 2.27862 6.09397L2.20008 6.28128C2.13569 6.43486 2.02202 6.56264 1.87699 6.64448L0.381427 7.48842C0.145762 7.6214 0 7.87103 0 8.14163V9.83255C0 10.102 0.144518 10.3507 0.378589 10.4842L1.86895 11.3337C2.01396 11.4164 2.12725 11.5451 2.19089 11.6994L2.26821 11.8869C2.33197 12.0415 2.34223 12.213 2.29735 12.3741L1.83732 14.0255C1.76471 14.2862 1.83814 14.5658 2.02948 14.7572L3.22442 15.9521C3.41516 16.1429 3.69364 16.2165 3.95372 16.1449L5.60472 15.6906C5.76664 15.6461 5.93882 15.6572 6.09369 15.7221L6.28114 15.8007C6.43467 15.8651 6.56241 15.9787 6.64425 16.1237L7.48815 17.6187C7.62115 17.8543 7.87072 18 8.14127 18H9.83211C10.1016 18 10.3504 17.8554 10.4838 17.6212L11.3325 16.1311C11.4152 15.986 11.5439 15.8726 11.6983 15.8089L11.8855 15.7317C12.0401 15.6679 12.2116 15.6577 12.3727 15.7025L14.0241 16.1626ZM14.8307 10.205C14.6855 10.2869 14.5718 10.4148 14.5074 10.5685L13.9935 11.796C13.9287 11.9509 13.9177 12.1229 13.9622 12.2848L14.3425 13.6665C14.3964 13.8622 14.341 14.0717 14.1975 14.2151C14.0536 14.3591 13.8433 14.4143 13.6472 14.3597L12.2694 13.9758C12.1083 13.931 11.9368 13.9412 11.7822 14.005L10.5547 14.5113C10.4003 14.5749 10.2716 14.6883 10.1889 14.8334L9.47945 16.0791C9.37898 16.2555 9.19159 16.3644 8.98858 16.3644C8.78481 16.3644 8.59682 16.2546 8.49664 16.0772L7.7938 14.8321C7.71196 14.6871 7.58421 14.5734 7.43068 14.5091L6.20489 13.9951C6.05002 13.9301 5.87783 13.9191 5.71592 13.9636L4.33281 14.3442C4.1375 14.3979 3.92838 14.3427 3.78515 14.1994C3.64146 14.0557 3.58632 13.8458 3.64085 13.65L4.02483 12.2716C4.06971 12.1105 4.05945 11.939 3.99569 11.7844L3.48943 10.5568C3.4258 10.4025 3.3125 10.2738 3.1675 10.1911L1.9216 9.48093C1.74526 9.38041 1.63639 9.19302 1.63639 8.99003C1.63639 8.78617 1.7462 8.59811 1.92374 8.49792L3.16936 7.79503C3.31439 7.71319 3.42806 7.58541 3.49245 7.43183L4.00641 6.20598C4.07134 6.0511 4.08242 5.8789 4.03787 5.71698L3.6571 4.33308C3.60349 4.13822 3.65864 3.92957 3.80155 3.78665C3.94496 3.64324 4.15452 3.58823 4.34987 3.64273L5.72872 4.0274C5.88991 4.07236 6.0615 4.06213 6.2162 3.99833L7.44377 3.49203C7.5984 3.42825 7.72726 3.31462 7.8099 3.1692L8.51823 1.92261C8.61845 1.74623 8.80568 1.63726 9.00855 1.63726C9.21202 1.63726 9.39972 1.74687 9.49971 1.92409L10.2029 3.1703C10.2847 3.31534 10.4125 3.42901 10.5661 3.49341L11.7919 4.00739C11.9467 4.07233 12.1189 4.08341 12.2808 4.03886L13.664 3.65825C13.8595 3.60445 14.0689 3.65971 14.2124 3.803C14.3565 3.94694 14.4119 4.15742 14.3572 4.35367L13.9736 5.73088C13.9287 5.892 13.9389 6.0635 14.0027 6.21812L14.509 7.44574C14.5728 7.60037 14.6864 7.72925 14.8318 7.81188L16.0783 8.52024C16.2547 8.62047 16.3637 8.80771 16.3637 9.01059C16.3637 9.21407 16.2541 9.40177 16.0769 9.50177L14.8307 10.205Z"
fill="white"
/>
Expand Down

0 comments on commit 1982311

Please sign in to comment.