Skip to content

Commit

Permalink
✨ feat: Add OpenRouter and LLaVA
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 authored Mar 4, 2024
1 parent cc94a99 commit 7997637
Show file tree
Hide file tree
Showing 299 changed files with 1,593 additions and 213 deletions.
10 changes: 8 additions & 2 deletions src/Anthropic/components/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@ import { memo } from 'react';

import IconAvatar, { type IconAvatarProps } from '@/IconAvatar';

import { COLOR_PRIMARY } from '../style';
import { COLOR_PRIMARY, TITLE } from '../style';
import Mono from './Mono';

export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;

const Avatar = memo<AvatarProps>(({ background, ...rest }) => {
return (
<IconAvatar Icon={Mono} background={background || COLOR_PRIMARY} color={'#191918'} {...rest} />
<IconAvatar
Icon={Mono}
aria-label={TITLE}
background={background || COLOR_PRIMARY}
color={'#191918'}
{...rest}
/>
);
});

Expand Down
3 changes: 3 additions & 0 deletions src/Anthropic/components/Mono.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { forwardRef } from 'react';

import type { IconType } from '@/types';

import { TITLE } from '../style';

const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
return (
<svg
Expand All @@ -15,6 +17,7 @@ const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"></path>
</svg>
);
Expand Down
3 changes: 3 additions & 0 deletions src/Anthropic/components/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { forwardRef } from 'react';

import type { IconType } from '@/types';

import { TITLE } from '../style';

const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
return (
<svg
Expand All @@ -14,6 +16,7 @@ const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<path d="M38.247 15.874L29.553 2.338H24.86v19.337h4.002V8.139l8.694 13.536h4.693V2.338h-4.003v13.536zm7.313-9.807h6.487v15.608h4.14V6.067h6.487v-3.73H45.56v3.73zm33.686 3.978h-9.109V2.338h-4.14v19.337h4.14v-7.9h9.109v7.9h4.14V2.338h-4.14v7.707zm13.39-3.978h5.108c2.043 0 3.12.746 3.12 2.155 0 1.408-1.077 2.154-3.12 2.154h-5.107v-4.31zm12.37 2.155c0-3.647-2.679-5.884-7.068-5.884h-9.443v19.337h4.142v-7.57h4.61l4.142 7.57h4.583l-4.586-8.146c2.302-.885 3.62-2.75 3.62-5.307zm12.686 9.91c-3.257 0-5.244-2.32-5.244-6.104 0-3.84 1.987-6.16 5.244-6.16 3.23 0 5.189 2.32 5.189 6.16 0 3.784-1.96 6.105-5.189 6.105zm0-16.132c-5.575 0-9.522 4.144-9.522 10.028 0 5.828 3.947 9.972 9.522 9.972 5.547 0 9.466-4.144 9.466-9.972C127.158 6.144 123.24 2 117.692 2zm22.59 8.929h-5.109V6.067h5.11c2.043 0 3.12.829 3.12 2.43 0 1.603-1.077 2.432-3.12 2.432zm.194-8.591h-9.445v19.337h4.142v-7.017h5.303c4.39 0 7.07-2.32 7.07-6.16 0-3.84-2.68-6.16-7.07-6.16zm35.108 12.839c-.718 1.878-2.153 2.956-4.113 2.956-3.257 0-5.244-2.32-5.244-6.105 0-3.84 1.987-6.16 5.244-6.16 1.96 0 3.395 1.077 4.113 2.955h4.388C178.896 4.68 175.667 2 171.472 2c-5.576 0-9.523 4.144-9.523 10.028 0 5.828 3.947 9.972 9.522 9.972 4.223 0 7.453-2.707 8.529-6.823h-4.416zm-26.39-12.84l7.705 19.338h4.225L153.42 2.338h-4.225zM9.277 14.024l2.636-6.796 2.637 6.796H9.276zm.428-11.685L2 21.675h4.307l1.576-4.06h8.06l1.575 4.06h4.307L14.121 2.338H9.704z"></path>
</svg>
);
Expand Down
5 changes: 3 additions & 2 deletions src/Anthropic/index.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
import Avatar from './components/Avatar';
import Mono from './components/Mono';
import Text from './components/Text';
import { COLOR_PRIMARY } from './style';
import { COLOR_PRIMARY, TITLE } from './style';

export type CompoundedIcon = typeof Mono & {
Avatar: typeof Avatar;

Text: typeof Text;
colorPrimary: string;
title: string;
};

const Icons = Mono as CompoundedIcon;

Icons.Text = Text;
Icons.Avatar = Avatar;
Icons.colorPrimary = COLOR_PRIMARY;
Icons.title = TITLE;

export default Icons;
3 changes: 2 additions & 1 deletion src/Anthropic/style.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export const TITLE = 'Anthropic';
export const TEXT_MULTIPLE = 0.75;
export const SPACE_MULTIPLE = 0.1;
export const COLOR_PRIMARY = '#D29D75';
export const COLOR_PRIMARY = '#F1F0E8';
6 changes: 4 additions & 2 deletions src/Automatic/components/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ import { memo } from 'react';

import IconAvatar, { type IconAvatarProps } from '@/IconAvatar';

import { COLOR_PRIMARY } from '../style';
import { COLOR_PRIMARY, TITLE } from '../style';
import Mono from './Mono';

export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;

const Avatar = memo<AvatarProps>(({ background, ...rest }) => {
return <IconAvatar Icon={Mono} background={background || COLOR_PRIMARY} {...rest} />;
return (
<IconAvatar Icon={Mono} aria-label={TITLE} background={background || COLOR_PRIMARY} {...rest} />
);
});

export default Avatar;
3 changes: 3 additions & 0 deletions src/Automatic/components/Color.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { forwardRef } from 'react';

import type { IconType } from '@/types';

import { TITLE } from '../style';

const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
return (
<svg
Expand All @@ -13,6 +15,7 @@ const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<g fill="#E00054" fillRule="nonzero">
<path d="M8.462 3.5h2.924l8.33 17h-1.46L10.617 4.942l-1.442.001z" opacity=".8"></path>
<path d="M5.474 20.5l2.817-5.366 2.873 5.366h5.541l-8.362-17L0 20.5z"></path>
Expand Down
3 changes: 2 additions & 1 deletion src/Automatic/components/Combine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { memo } from 'react';

import IconCombine, { type IconCombineProps } from '@/IconCombine';

import { SPACE_MULTIPLE, TEXT_MULTIPLE } from '../style';
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from '../style';
import Color from './Color';
import Mono from './Mono';
import Text from './Text';
Expand All @@ -17,6 +17,7 @@ const Combine = memo<CombineProps>(({ type = 'mono', ...rest }) => {
<IconCombine
Icon={Icon}
Text={Text}
aria-label={TITLE}
spaceMultiple={SPACE_MULTIPLE}
textMultiple={TEXT_MULTIPLE}
{...rest}
Expand Down
3 changes: 3 additions & 0 deletions src/Automatic/components/Mono.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { forwardRef } from 'react';

import type { IconType } from '@/types';

import { TITLE } from '../style';

const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
return (
<svg
Expand All @@ -15,6 +17,7 @@ const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<g>
<path d="M8.462 3.5h2.924l8.33 17h-1.46L10.617 4.942l-1.442.001z" opacity=".8"></path>
<path d="M5.474 20.5l2.817-5.366 2.873 5.366h5.541l-8.362-17L0 20.5z"></path>
Expand Down
5 changes: 3 additions & 2 deletions src/Automatic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import Color from './components/Color';
import Combine from './components/Combine';
import Mono from './components/Mono';
import Text from './components/Text';
import { COLOR_PRIMARY } from './style';
import { COLOR_PRIMARY, TITLE } from './style';

export type CompoundedIcon = typeof Mono & {
Avatar: typeof Avatar;
Color: typeof Color;
Combine: typeof Combine;

Text: typeof Text;
colorPrimary: string;
title: string;
};

const Icons = Mono as CompoundedIcon;
Expand All @@ -20,5 +20,6 @@ Icons.Text = Text;
Icons.Combine = Combine;
Icons.Avatar = Avatar;
Icons.colorPrimary = COLOR_PRIMARY;
Icons.title = TITLE;

export default Icons;
1 change: 1 addition & 0 deletions src/Automatic/style.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export const TITLE = 'Automatic';
export const TEXT_MULTIPLE = 0.75;
export const SPACE_MULTIPLE = 0.2;
export const COLOR_PRIMARY = '#E00054';
10 changes: 8 additions & 2 deletions src/Aws/components/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@ import { memo } from 'react';

import IconAvatar, { type IconAvatarProps } from '@/IconAvatar';

import { COLOR_PRIMARY } from '../style';
import { COLOR_PRIMARY, TITLE } from '../style';
import Color from './Color';

export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;

const Avatar = memo<AvatarProps>(({ background, ...rest }) => {
return (
<IconAvatar Icon={Color} background={background || COLOR_PRIMARY} color={'#fff'} {...rest} />
<IconAvatar
Icon={Color}
aria-label={TITLE}
background={background || COLOR_PRIMARY}
color={'#fff'}
{...rest}
/>
);
});

Expand Down
3 changes: 3 additions & 0 deletions src/Aws/components/BrandColor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { forwardRef } from 'react';

import type { IconType } from '@/types';

import { TITLE } from '../style';

const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
return (
<svg
Expand All @@ -14,6 +16,7 @@ const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<g>
<path
d="M5.323 16.931l3.433 1.012L8.752 23l-3.429-1.138v-4.931zm7.757 0l-.012 4.928L9.647 23v-5.057l3.433-1.012zm-3.9-1.517l3.2.983-3.195.843-3.162-.843 3.158-.983zm-.424-5.69l-.011 4.928-3.422 1.141v-5.057l3.433-1.012zm.89 0l3.434 1.012-.004 5.057-3.43-1.138v-4.93zm7.757 0l-.012 4.928-3.421 1.141v-5.057l3.433-1.012zM1 9.724l3.433 1.012-.004 5.057L1 14.655v-4.93zm12.504-1.517l3.2.983-3.195.843-3.163-.843 3.158-.983zm-8.647 0l3.2.983-3.195.843-3.163-.843 3.158-.983zm9.113-5.69l3.433 1.012-.004 5.057-3.43-1.138v-4.93zm7.756 0l-.012 4.928-3.42 1.141V3.53l3.432-1.012zM17.827 1l3.2.983-3.195.843-3.163-.843L17.827 1zm4.79 1.517L26.05 3.53l-.005 5.057-3.429-1.138v-4.93zm7.756 0l-.012 4.928-3.421 1.141V3.53l3.433-1.012zM26.473 1l3.2.983-3.195.843-3.162-.843L26.474 1z"
Expand Down
3 changes: 3 additions & 0 deletions src/Aws/components/BrandMono.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { forwardRef } from 'react';

import type { IconType } from '@/types';

import { TITLE } from '../style';

const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
return (
<svg
Expand All @@ -14,6 +16,7 @@ const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<title>{TITLE}</title>
<g>
<path d="M5.323 16.931l3.433 1.012L8.752 23l-3.429-1.138v-4.931zm7.757 0l-.012 4.928L9.647 23v-5.057l3.433-1.012zm-3.9-1.517l3.2.983-3.195.843-3.162-.843 3.158-.983zm-.424-5.69l-.011 4.928-3.422 1.141v-5.057l3.433-1.012zm.89 0l3.434 1.012-.004 5.057-3.43-1.138v-4.93zm7.757 0l-.012 4.928-3.421 1.141v-5.057l3.433-1.012zM1 9.724l3.433 1.012-.004 5.057L1 14.655v-4.93zm12.504-1.517l3.2.983-3.195.843-3.163-.843 3.158-.983zm-8.647 0l3.2.983-3.195.843-3.163-.843 3.158-.983zm9.113-5.69l3.433 1.012-.004 5.057-3.43-1.138v-4.93zm7.756 0l-.012 4.928-3.42 1.141V3.53l3.432-1.012zM17.827 1l3.2.983-3.195.843-3.163-.843L17.827 1zm4.79 1.517L26.05 3.53l-.005 5.057-3.429-1.138v-4.93zm7.756 0l-.012 4.928-3.421 1.141V3.53l3.433-1.012zM26.473 1l3.2.983-3.195.843-3.162-.843L26.474 1z"></path>
<path d="M23.938 18.641l-.253.001c-.092 0-.21.062-.24.163l-.765 2.681-.757-2.675c-.022-.084-.102-.169-.21-.169h-.299c-.107 0-.186.086-.207.17l-.705 2.648-.727-2.656c-.029-.097-.15-.162-.245-.162h-.363a.233.233 0 00-.188.086.124.124 0 00-.021.113l1.124 3.957c.024.083.097.167.203.167h.361c.098 0 .183-.071.208-.171l.691-2.636.753 2.639c.023.08.096.168.202.168h.356a.213.213 0 00.206-.169l1.082-3.954a.128.128 0 00-.02-.116.23.23 0 00-.186-.085zm3.12 1.68h-1.906c.044-.532.391-1.084.98-1.105.626.02.913.56.927 1.105zm-.927-1.708c-1.289 0-1.875 1.132-1.875 2.184 0 1.313.729 2.162 1.858 2.162.808 0 1.423-.406 1.69-1.115a.149.149 0 00-.013-.124.21.21 0 00-.14-.098l-.357-.068c-.096-.014-.206.042-.242.124-.174.394-.49.618-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.823l2.589-.001c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.022-.476-2.115-1.776-2.115zm4.961 2.138l-.002.166c-.017.383-.137 1.342-.906 1.37a.965.965 0 01-.745-.431c-.12-.19-.191-.451-.21-.775v-.712c.015-.545.4-1.143.953-1.166.819.032.903 1.198.91 1.548zm-.772-2.175h-.069c-.427 0-.763.177-1.021.539v-1.668c0-.094-.098-.18-.205-.18h-.373c-.097 0-.206.077-.206.18v5.207c0 .094.098.18.205.18h.11c.103 0 .176-.083.2-.16l.117-.367c.27.382.678.606 1.115.606h.066c1.15 0 1.663-1.111 1.663-2.212 0-.548-.136-1.072-.372-1.438a1.487 1.487 0 00-1.23-.687zm5.68 2.11c-.243-.173-.534-.23-.826-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.372.388-.514.717-.523.401.01.703.188.85.502a.217.217 0 00.192.123l.04-.004.35-.077a.216.216 0 00.138-.102.148.148 0 00.015-.123c-.214-.618-.756-.945-1.576-.945-.741.002-1.533.33-1.533 1.244 0 .626.395 1.023 1.176 1.18l.625.12c.344.065.695.181.695.548 0 .543-.635.598-.827.602-.431-.009-.92-.2-1.038-.605-.024-.089-.136-.152-.235-.131l-.365.074a.21.21 0 00-.134.095.158.158 0 00-.02.126c.175.627.755 1.022 1.567 1.077l.197.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm3.69-.361h-1.907c.043-.533.39-1.085.98-1.105.626.02.913.559.927 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.406 1.69-1.115a.15.15 0 00-.012-.124.21.21 0 00-.14-.097l-.358-.068c-.083-.014-.2.03-.241.124-.174.393-.49.617-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.824h2.589c.054 0 .11-.024.149-.064a.163.163 0 00.051-.116c-.006-1.023-.476-2.116-1.777-2.116zm4.222.049c-.05-.006-.1-.009-.147-.009-.434 0-.787.235-1.032.684l.001-.393c0-.095-.096-.179-.204-.179h-.324c-.106 0-.2.084-.2.18v3.818c0 .096.093.18.2.18h.377c.098 0 .209-.077.21-.18v-1.925c0-.317.03-.556.182-.839.218-.403.522-.6.93-.604.102 0 .192-.09.192-.19v-.357c0-.093-.081-.175-.185-.186zm3.96-.075h-.297c-.094 0-.213.066-.242.164l-.966 3.018-.986-3.015c-.03-.1-.15-.167-.243-.167h-.425a.24.24 0 00-.193.087.124.124 0 00-.02.115l1.35 3.981c.026.079.095.171.203.171h.515c.095 0 .172-.064.208-.171l1.309-3.98a.123.123 0 00-.02-.114.24.24 0 00-.192-.09zm.98-1.53a.497.497 0 100 .994.497.497 0 000-.995zm.204 1.505h-.408c-.111 0-.213.09-.213.187l-.002 4.054c0 .049.026.098.07.134a.23.23 0 00.143.052h.412c.113 0 .212-.088.212-.186v-4.054c0-.1-.1-.187-.214-.187zm3.818 2.75h-.34a.22.22 0 00-.211.156c-.125.535-.407.812-.835.824-.834-.025-.898-1.18-.898-1.534 0-.705.245-1.465.93-1.485.414.012.715.307.806.788a.223.223 0 00.196.185l.365.004c.109-.012.195-.094.194-.196-.13-.869-.735-1.43-1.544-1.43h-.06c-1.176 0-1.703 1.092-1.703 2.174 0 .992.444 2.15 1.697 2.15h.06c.789 0 1.384-.55 1.555-1.44a.16.16 0 00-.041-.12.242.242 0 00-.17-.077zm3.37-.99h-1.908c.044-.533.391-1.085.98-1.105.627.02.914.559.928 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.405 1.69-1.114a.151.151 0 00-.013-.125.208.208 0 00-.139-.097l-.358-.068c-.084-.014-.2.03-.241.124-.175.393-.492.617-.888.63a1.03 1.03 0 01-.894-.576c-.131-.276-.15-.547-.153-.824h2.59c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.023-.476-2.116-1.777-2.116zm5.02 2.07c-.242-.173-.534-.23-.825-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.48.6-.52.716-.523.402.01.704.188.85.502a.218.218 0 00.193.123l.042-.004.348-.077a.217.217 0 00.139-.102.148.148 0 00.014-.123c-.213-.618-.756-.945-1.576-.945-.74.002-1.532.33-1.532 1.244 0 .626.395 1.023 1.175 1.18l.626.12c.344.065.695.181.695.548 0 .543-.636.598-.828.602-.4-.008-.911-.172-1.037-.604-.023-.09-.136-.153-.236-.132l-.365.074a.212.212 0 00-.135.096.158.158 0 00-.02.125c.176.627.756 1.022 1.567 1.077l.198.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm-16.608-9.925v-.92c0-.14.107-.234.235-.233h4.147a.23.23 0 01.24.232v.789c-.002.094-.06.21-.165.368l-2.296 3.261c.797-.019 1.64.1 2.365.505.163.091.207.226.22.359v.982c0 .135-.149.292-.305.21-1.277-.665-2.97-.737-4.383.008-.144.076-.295-.078-.295-.213v-.933c0-.15.003-.405.155-.633l2.489-3.55h-2.167c-.133 0-.239-.094-.24-.232zm-3.99-1.334c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.005.333-.257.215-.715.61-.967.833a.273.273 0 01-.301.027c-.419-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.889-.651-1.889-1.955 0-1.018.555-1.71 1.346-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.154-.644-.153-.23-.448-.325-.708-.325-.441 0-.837.206-.981.631l-.033.122c-.021.113-.105.225-.22.23l-1.222-.131c-.103-.023-.218-.105-.188-.262.281-1.476 1.62-1.921 2.822-1.921zm-16.54 0c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.004.333-.258.215-.716.61-.968.833a.274.274 0 01-.301.027c-.42-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.89-.651-1.89-1.955 0-1.018.556-1.71 1.347-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.153-.644-.154-.23-.45-.325-.708-.325-.442 0-.838.206-.982.631l-.033.122c-.022.113-.105.225-.219.23l-1.223-.131c-.103-.023-.218-.105-.188-.262.28-1.476 1.62-1.921 2.821-1.921zm10.628.062c.53 0 1.107.217 1.46.704.4.543.318 1.328.318 2.02v4.063a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.414c0-.271.024-.949-.035-1.206-.095-.434-.377-.555-.742-.555a.837.837 0 00-.754.527c-.093.233-.113.576-.117.886v3.761a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.639c.012-.694.027-1.55-.778-1.55-.816 0-.87.834-.872 1.544v3.644a.237.237 0 01-.244.232h-1.262a.237.237 0 01-.225-.212v-6.44c0-.128.11-.231.244-.231l1.175-.001c.123.007.222.1.23.216v.842h.023c.306-.814.883-1.193 1.66-1.193.79 0 1.284.38 1.638 1.193.306-.814 1-1.193 1.743-1.193zm6.596 4.123v-.451l-.261.006c-.826.039-1.616.29-1.616 1.257 0 .543.284.91.767.91.354 0 .673-.217.874-.57.217-.38.235-.74.236-1.152zm-16.542.174l.002-.625-.261.006c-.827.039-1.616.29-1.616 1.257 0 .543.283.91.768.91.354 0 .673-.217.873-.57.186-.326.226-.637.234-.978zm28.051-2.983c-.842 0-.97 1.032-.987 1.81l-.002.45c.005.84.07 2.252.978 2.252.977 0 1.024-1.355 1.024-2.181 0-.542-.023-1.192-.188-1.707-.128-.403-.369-.586-.708-.618L51 10.803zM50.99 9.49c1.872 0 2.885 1.599 2.885 3.63 0 1.966-1.12 3.524-2.885 3.524-1.838 0-2.84-1.599-2.84-3.59 0-2.006 1.013-3.564 2.84-3.564zm5.314 7.019h-1.257a.236.236 0 01-.227-.231l-.002-6.442a.238.238 0 01.242-.21l1.171-.001c.11.006.2.08.224.18v.986h.024c.353-.881.848-1.3 1.719-1.3.565 0 1.12.202 1.472.758.33.514.33 1.381.33 2.005v4.052a.239.239 0 01-.241.203h-1.266a.238.238 0 01-.224-.203l.001-3.947c-.006-.625-.093-1.284-.79-1.284-.307 0-.589.204-.73.515-.177.393-.2.786-.2 1.22v3.467a.241.241 0 01-.246.232z"></path>
Expand Down
Loading

0 comments on commit 7997637

Please sign in to comment.