ui: improve metadata display
This commit is contained in:
parent
17a5089c24
commit
ccd8d76e98
493 changed files with 3892 additions and 11522 deletions
|
|
@ -102,7 +102,7 @@ function SessionsModal(props: Props) {
|
|||
))}
|
||||
</Loader>
|
||||
|
||||
<div className="flex items-center justify-between p-5">
|
||||
<div className="flex flex-col items-start lg:flex-row lg:items-center lg:justify-between p-5">
|
||||
<div>
|
||||
{/* showing x to x of total sessions */}
|
||||
{t('Showing')}{' '}
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ function PlayerBlockHeader(props: any) {
|
|||
)}
|
||||
|
||||
{_metaList.length > 0 && (
|
||||
<div className="border-l border-l-gray-lighter h-full flex items-center px-2">
|
||||
<div className="h-full flex items-center px-2 gap-1">
|
||||
<SessionMetaList
|
||||
className=""
|
||||
metaList={_metaList}
|
||||
|
|
|
|||
|
|
@ -37,7 +37,27 @@ function SearchActions() {
|
|||
const showPanel = hasEvents || hasFilters || aiFiltersStore.isLoading;
|
||||
return !metaLoading ? (
|
||||
<div className="mb-2">
|
||||
<div className="flex items-center gap-2 w-full">
|
||||
<div className={'flex flex-col lg:hidden items-start gap-2 w-full'}>
|
||||
<div className='flex items-center justify-between w-full'>
|
||||
<h2 className="text-2xl capitalize mr-4 inline">Sessions</h2>
|
||||
<div className={'ml-auto flex gap-1'}>
|
||||
<SavedSearch/>
|
||||
<Tooltip title='Clear Search Filters'>
|
||||
<Button
|
||||
type="text"
|
||||
disabled={!hasSearch}
|
||||
onClick={() => searchStore.clearSearch()}
|
||||
className="px-2"
|
||||
>
|
||||
Clear
|
||||
</Button>
|
||||
</Tooltip>
|
||||
</div>
|
||||
</div>
|
||||
{isSaas ? <AiSessionSearchField/> : null}
|
||||
</div>
|
||||
|
||||
<div className={'hidden lg:flex items-center gap-2 w-full '}>
|
||||
<h2 className="text-2xl capitalize mr-4">{title}</h2>
|
||||
{isSaas && showAiField ? <AiSessionSearchField /> : null}
|
||||
<div className="ml-auto" />
|
||||
|
|
|
|||
|
|
@ -12,30 +12,21 @@ export default function MetaItem(props: Props) {
|
|||
return (
|
||||
<div
|
||||
className={cn(
|
||||
'flex items-center rounded border border-gray-light-shade',
|
||||
'text-sm flex flex-row items-center px-2 py-0 gap-1 rounded-lg bg-white border border-neutral-100 overflow-hidden',
|
||||
className,
|
||||
)}
|
||||
>
|
||||
<span
|
||||
className="rounded-tl rounded-bl bg-gray-light-shade px-2"
|
||||
style={{ maxWidth: '150px' }}
|
||||
>
|
||||
<TextEllipsis
|
||||
text={label}
|
||||
className="p-0"
|
||||
popupProps={{ size: 'small', disabled: true }}
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="rounded-tr rounded-br bg-white px-2"
|
||||
style={{ maxWidth: '150px' }}
|
||||
>
|
||||
<TextEllipsis
|
||||
text={value}
|
||||
className="p-0"
|
||||
popupProps={{ size: 'small', disabled: true }}
|
||||
/>
|
||||
</span>
|
||||
<TextEllipsis
|
||||
text={label}
|
||||
className="p-0"
|
||||
popupProps={{ size: 'small', disabled: true }}
|
||||
/>
|
||||
<span className="bg-neutral-200 inline-block w-[1px] min-h-[17px]"></span>
|
||||
<TextEllipsis
|
||||
text={value}
|
||||
className="p-0 text-neutral-500"
|
||||
popupProps={{ size: 'small', disabled: true }}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import { Popover } from 'UI';
|
||||
import { Button } from 'antd';
|
||||
import { Button, Popover } from 'antd'
|
||||
import MetaItem from '../MetaItem';
|
||||
import { Icon } from 'UI'
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
interface Props {
|
||||
|
|
@ -13,11 +13,15 @@ export default function MetaMoreButton(props: Props) {
|
|||
const { t } = useTranslation();
|
||||
return (
|
||||
<Popover
|
||||
render={() => (
|
||||
content={() => (
|
||||
<div
|
||||
className="text-sm grid grid-col gap-2 bg-white"
|
||||
className="text-sm grid grid-col gap-3 bg-white"
|
||||
style={{ maxHeight: '200px', overflowY: 'auto' }}
|
||||
>
|
||||
<span className="text-base">
|
||||
{list.length - maxLength}{' '}
|
||||
{t(`More ${list.length - maxLength === 1 ? "attribute" : "attributes"}`)}
|
||||
</span>
|
||||
{list.slice(maxLength).map(({ label, value }, index) => (
|
||||
<MetaItem key={index} label={label} value={value} />
|
||||
))}
|
||||
|
|
@ -26,8 +30,8 @@ export default function MetaMoreButton(props: Props) {
|
|||
placement="bottom"
|
||||
>
|
||||
<div className="flex items-center">
|
||||
<Button type="link" size={'small'} className={'h-[17px]'}>
|
||||
{t('More')}
|
||||
<Button type="text" size='small' className='text-sm text-neutral-400 px-0'>
|
||||
<Icon name="metadata-more" className="w-4 h-4" color={'black'} size={14} />
|
||||
</Button>
|
||||
</div>
|
||||
</Popover>
|
||||
|
|
|
|||
|
|
@ -149,9 +149,9 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
const isAssist = useMemo(() => {
|
||||
return (
|
||||
(!ignoreAssist &&
|
||||
(isRoute(ASSIST_ROUTE, location.pathname) ||
|
||||
isRoute(ASSIST_LIVE_SESSION, location.pathname) ||
|
||||
location.pathname.includes('multiview'))) ||
|
||||
(isRoute(ASSIST_ROUTE, location.pathname) ||
|
||||
isRoute(ASSIST_LIVE_SESSION, location.pathname) ||
|
||||
location.pathname.includes('multiview'))) ||
|
||||
propsLive
|
||||
);
|
||||
}, [ignoreAssist, location.pathname, propsLive]);
|
||||
|
|
@ -205,11 +205,11 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
const formattedTime = useMemo(() => {
|
||||
const timezoneToUse =
|
||||
shownTimezone === 'user' && userTimezone
|
||||
? {
|
||||
? {
|
||||
label: userTimezone.split('+').join(' +'),
|
||||
value: userTimezone.split(':')[0]
|
||||
}
|
||||
: timezone;
|
||||
: timezone;
|
||||
|
||||
return formatTimeOrDate(startedAt, timezoneToUse);
|
||||
}, [startedAt, shownTimezone, userTimezone, timezone]);
|
||||
|
|
@ -242,7 +242,9 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
|
||||
return (
|
||||
<Tooltip
|
||||
title={!isMultiviewDisabled ? '' : t(`Session already added into the multiview`)}
|
||||
title={
|
||||
!isMultiviewDisabled ? '' : t(`Session already added into the multiview`)
|
||||
}
|
||||
>
|
||||
<div
|
||||
className={cn(stl.sessionItem, 'flex flex-col p-4')}
|
||||
|
|
@ -250,18 +252,23 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
onClick={(e) => e.stopPropagation()}
|
||||
onMouseEnter={handleHover}
|
||||
>
|
||||
<div className="flex items-start">
|
||||
<div className={cn('flex items-center w-full')}>
|
||||
<div className="flex items-start ">
|
||||
<div
|
||||
className={cn(
|
||||
'flex flex-col items-start lg:flex-row lg:items-center w-full',
|
||||
)}
|
||||
>
|
||||
{!compact && (
|
||||
<div
|
||||
className="flex flex-col shrink-0 pr-2 gap-2"
|
||||
style={{ width: '40%' }}
|
||||
className={
|
||||
'flex flex-col shrink-0 pr-2 gap-2 w-full lg:w-[40%]'
|
||||
}
|
||||
>
|
||||
<div className="flex items-center pr-2 shrink-0">
|
||||
<div>
|
||||
<Avatar
|
||||
width="24px"
|
||||
height="24px"
|
||||
width={'24px'}
|
||||
height={'24px'}
|
||||
iconSize={12}
|
||||
isActive={active}
|
||||
seed={userNumericHash}
|
||||
|
|
@ -274,8 +281,8 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
'color-teal cursor-pointer':
|
||||
!disableUser && hasUserId && !isDisabled,
|
||||
[stl.userName]:
|
||||
!disableUser && hasUserId && !isDisabled,
|
||||
'color-gray-medium': disableUser || !hasUserId
|
||||
!disableUser && hasUserId && !isDisabled,
|
||||
'color-gray-medium': disableUser || !hasUserId,
|
||||
})}
|
||||
onClick={handleUserClick}
|
||||
>
|
||||
|
|
@ -288,13 +295,15 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
</div>
|
||||
</div>
|
||||
{_metaList.length > 0 && (
|
||||
<SessionMetaList maxLength={1} metaList={_metaList} />
|
||||
<SessionMetaList maxLength={3} metaList={_metaList} />
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
<div
|
||||
style={{ width: compact ? '40%' : '20%' }}
|
||||
className="px-2 flex flex-col justify-between"
|
||||
className={cn(
|
||||
'px-2 flex flex-col justify-between gap-2 mt-3 lg:mt-0',
|
||||
compact ? 'w-[40%]' : 'lg:w-1/5',
|
||||
)}
|
||||
>
|
||||
<div>
|
||||
<Tooltip
|
||||
|
|
@ -309,42 +318,38 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
/>
|
||||
</Tooltip>
|
||||
</div>
|
||||
<div className="flex items-center color-gray-medium py-1">
|
||||
<div className="flex items-center text-sm text-neutral-500">
|
||||
{!isAssist && (
|
||||
<>
|
||||
<div className="color-gray-medium">
|
||||
<div className="">
|
||||
<span className="mr-1">{eventsCount}</span>
|
||||
<span>
|
||||
{eventsCount === 0 || eventsCount > 1
|
||||
? t('Events')
|
||||
: t('Event')}
|
||||
? 'Events'
|
||||
: 'Event'}
|
||||
</span>
|
||||
</div>
|
||||
<Icon name="circle-fill" size={3} className="mx-4" />
|
||||
</>
|
||||
)}
|
||||
<div>
|
||||
{live ? (
|
||||
<Counter startTime={startedAt} />
|
||||
) : (
|
||||
formattedDuration
|
||||
)}
|
||||
{live ? <Counter startTime={startedAt} /> : formattedDuration}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
style={{ width: '30%' }}
|
||||
className="px-2 flex flex-col justify-between"
|
||||
className="px-2 flex flex-col justify-between gap-2"
|
||||
>
|
||||
<div style={{ height: '21px' }}>
|
||||
<CountryFlag
|
||||
userCity={userCity}
|
||||
userState={userState}
|
||||
country={userCountry}
|
||||
showLabel
|
||||
showLabel={true}
|
||||
/>
|
||||
</div>
|
||||
<div className="color-gray-medium flex items-center py-1">
|
||||
<div className="flex items-center text-sm text-neutral-500">
|
||||
{userBrowser && (
|
||||
<span className="capitalize" style={{ maxWidth: '70px' }}>
|
||||
<TextEllipsis
|
||||
|
|
@ -392,7 +397,9 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
<div
|
||||
className={cn(
|
||||
stl.playLink,
|
||||
isDisabled ? 'cursor-not-allowed' : 'cursor-pointer'
|
||||
isDisabled
|
||||
? 'cursor-not-allowed'
|
||||
: 'cursor-pointer flex flex-col lg:flex-row',
|
||||
)}
|
||||
id="play-button"
|
||||
data-viewed={viewed}
|
||||
|
|
@ -410,15 +417,10 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
</div>
|
||||
)}
|
||||
{isSessions && (
|
||||
<div className="mr-4 flex-shrink-0 w-24">
|
||||
<div className="flex-shrink-0 w-24 mb-2 lg:mb-0">
|
||||
{isLastPlayed && (
|
||||
<Label className="bg-gray-lightest p-1 px-2 rounded-lg">
|
||||
<span
|
||||
className="color-gray-medium text-xs"
|
||||
style={{ whiteSpace: 'nowrap' }}
|
||||
>
|
||||
{t('LAST PLAYED')}
|
||||
</span>
|
||||
<Label className="bg-neutral-100 p-1 py-0 text-xs whitespace-nowrap rounded-xl text-neutral-400 ms-auto">
|
||||
{t('LAST PLAYED')}
|
||||
</Label>
|
||||
)}
|
||||
</div>
|
||||
|
|
@ -451,4 +453,4 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
);
|
||||
}
|
||||
|
||||
export default withRouter(observer(SessionItem));
|
||||
export default withRouter(observer(SessionItem));
|
||||
|
|
@ -10,10 +10,10 @@ interface Props {
|
|||
}
|
||||
|
||||
export default function SessionMetaList(props: Props) {
|
||||
const { className = '', metaList, maxLength = 4 } = props;
|
||||
const { className = '', metaList, maxLength = 14 } = props;
|
||||
|
||||
return (
|
||||
<div className={cn('text-sm flex items-center gap-2', className)}>
|
||||
<div className={cn('flex items-center flex-wrap gap-1', className)}>
|
||||
{metaList.slice(0, maxLength).map(({ label, value }, index) => (
|
||||
<React.Fragment key={index}>
|
||||
<MetaItem label={label} value={`${value}`} />
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import { issues_types, types } from 'Types/session/issue';
|
||||
import { Segmented } from 'antd';
|
||||
import { Angry, CircleAlert, Skull, WifiOff } from 'lucide-react';
|
||||
import { Angry, CircleAlert, Skull, WifiOff, ChevronDown } from 'lucide-react';
|
||||
import { observer } from 'mobx-react-lite';
|
||||
import React from 'react';
|
||||
import React, { useState, useEffect, useRef } from 'react';
|
||||
import { useStore } from 'App/mstore';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
|
|
@ -18,31 +18,120 @@ const tagIcons = {
|
|||
function SessionTags() {
|
||||
const { t } = useTranslation();
|
||||
const { projectsStore, sessionStore, searchStore } = useStore();
|
||||
const { total } = sessionStore;
|
||||
const total = sessionStore.total;
|
||||
const platform = projectsStore.active?.platform || '';
|
||||
const activeTab = searchStore.activeTags;
|
||||
const [isMobile, setIsMobile] = useState(false);
|
||||
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
||||
const dropdownRef = useRef<HTMLDivElement | null>(null);
|
||||
|
||||
return total === 0 &&
|
||||
(activeTab.length === 0 || activeTab[0] === 'all') ? null : (
|
||||
const filteredOptions = issues_types
|
||||
.filter(
|
||||
(tag) =>
|
||||
tag.type !== 'mouse_thrashing' &&
|
||||
(platform === 'web'
|
||||
? tag.type !== types.TAP_RAGE
|
||||
: tag.type !== types.CLICK_RAGE),
|
||||
)
|
||||
.map((tag) => ({
|
||||
value: tag.type,
|
||||
icon: tagIcons[tag.type],
|
||||
label: t(tag.name),
|
||||
}));
|
||||
|
||||
// Find the currently active option
|
||||
const activeOption =
|
||||
filteredOptions.find((option) => option.value === activeTab[0]) ||
|
||||
filteredOptions[0];
|
||||
|
||||
// Check if on mobile
|
||||
useEffect(() => {
|
||||
const checkIfMobile = () => {
|
||||
setIsMobile(window.innerWidth < 768);
|
||||
};
|
||||
|
||||
checkIfMobile();
|
||||
window.addEventListener('resize', checkIfMobile);
|
||||
|
||||
return () => {
|
||||
window.removeEventListener('resize', checkIfMobile);
|
||||
};
|
||||
}, []);
|
||||
|
||||
// Close dropdown when clicking outside
|
||||
useEffect(() => {
|
||||
const handleClickOutside = (event: MouseEvent) => {
|
||||
if (
|
||||
dropdownRef.current &&
|
||||
!(dropdownRef.current as HTMLElement).contains(event.target as Node)
|
||||
) {
|
||||
setIsDropdownOpen(false);
|
||||
}
|
||||
};
|
||||
|
||||
document.addEventListener('mousedown', handleClickOutside);
|
||||
return () => {
|
||||
document.removeEventListener('mousedown', handleClickOutside);
|
||||
};
|
||||
}, []);
|
||||
|
||||
// Handler for dropdown item selection
|
||||
const handleSelectOption = (value: string) => {
|
||||
searchStore.toggleTag(value as any);
|
||||
setIsDropdownOpen(false);
|
||||
};
|
||||
|
||||
if (total === 0 && (activeTab.length === 0 || activeTab[0] === 'all')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="flex items-center">
|
||||
<Segmented
|
||||
options={issues_types
|
||||
.filter(
|
||||
(tag) =>
|
||||
tag.type !== 'mouse_thrashing' &&
|
||||
(platform === 'web'
|
||||
? tag.type !== types.TAP_RAGE
|
||||
: tag.type !== types.CLICK_RAGE),
|
||||
)
|
||||
.map((tag: any) => ({
|
||||
value: tag.type,
|
||||
icon: tagIcons[tag.type],
|
||||
label: t(tag.name),
|
||||
}))}
|
||||
value={activeTab[0]}
|
||||
onChange={(value: any) => searchStore.toggleTag(value)}
|
||||
size="small"
|
||||
/>
|
||||
{isMobile ? (
|
||||
<div className="relative" ref={dropdownRef}>
|
||||
<button
|
||||
onClick={() => setIsDropdownOpen(!isDropdownOpen)}
|
||||
className="flex items-center text-start justify-between w-full px-3 py-2 text-base bg-white border rounded-lg focus:outline-none"
|
||||
>
|
||||
<div className="flex items-center">
|
||||
{activeOption.icon && (
|
||||
<span className="mr-2">{activeOption.icon}</span>
|
||||
)}
|
||||
<span className="text-start">{activeOption.label}</span>
|
||||
</div>
|
||||
<ChevronDown
|
||||
size={16}
|
||||
className={`ml-2 transition-transform ${isDropdownOpen ? 'rotate-180' : ''}`}
|
||||
/>
|
||||
</button>
|
||||
|
||||
{isDropdownOpen && (
|
||||
<div className="absolute z-10 w-full min-w-40 mt-1 bg-white border rounded-xl max-h-60 overflow-auto">
|
||||
{filteredOptions.map((option) => (
|
||||
<div
|
||||
key={option.value}
|
||||
className={`flex items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-100 ${
|
||||
option.value === activeTab[0]
|
||||
? 'bg-gray-50 font-medium'
|
||||
: ''
|
||||
}`}
|
||||
onClick={() => handleSelectOption(option.value)}
|
||||
>
|
||||
{option.icon && <span className="mr-2">{option.icon}</span>}
|
||||
<span>{option.label}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
) : (
|
||||
<Segmented
|
||||
options={filteredOptions}
|
||||
value={activeTab[0]}
|
||||
onChange={(value) => searchStore.toggleTag(value as any)}
|
||||
size={'small'}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Activity(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Analytics(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 576 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M80 352H16c-8.84 0-16 7.16-16 16v128c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V368c0-8.84-7.16-16-16-16zM64 480H32v-96h32v96zm496-288h-64c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm-16 288h-32V224h32v256zM502.77 88.68C510.12 93.24 518.71 96 528 96c26.51 0 48-21.49 48-48S554.51 0 528 0s-48 21.49-48 48c0 5.51 1.12 10.71 2.83 15.64l-89.6 71.68c-7.35-4.57-15.94-7.33-25.23-7.33s-17.88 2.76-25.23 7.33l-89.6-71.68C254.88 58.72 256 53.51 256 48c0-26.51-21.49-48-48-48s-48 21.49-48 48c0 7.4 1.81 14.32 4.8 20.58L68.58 164.8C62.32 161.81 55.4 160 48 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-7.4-1.81-14.32-4.8-20.58l96.22-96.22C193.68 94.19 200.6 96 208 96c9.29 0 17.88-2.76 25.23-7.33l89.6 71.68c-1.71 4.93-2.83 10.14-2.83 15.65 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.51-1.12-10.72-2.83-15.65l89.6-71.67zM528 32c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 224c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zM208 64c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zm160 128c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zm-128 0h-64c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm-16 288h-32V224h32v256zm176-160h-64c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V336c0-8.84-7.16-16-16-16zm-16 160h-32V352h32v128z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 576 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M80 352H16c-8.84 0-16 7.16-16 16v128c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V368c0-8.84-7.16-16-16-16zM64 480H32v-96h32v96zm496-288h-64c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm-16 288h-32V224h32v256zM502.77 88.68C510.12 93.24 518.71 96 528 96c26.51 0 48-21.49 48-48S554.51 0 528 0s-48 21.49-48 48c0 5.51 1.12 10.71 2.83 15.64l-89.6 71.68c-7.35-4.57-15.94-7.33-25.23-7.33s-17.88 2.76-25.23 7.33l-89.6-71.68C254.88 58.72 256 53.51 256 48c0-26.51-21.49-48-48-48s-48 21.49-48 48c0 7.4 1.81 14.32 4.8 20.58L68.58 164.8C62.32 161.81 55.4 160 48 160c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-7.4-1.81-14.32-4.8-20.58l96.22-96.22C193.68 94.19 200.6 96 208 96c9.29 0 17.88-2.76 25.23-7.33l89.6 71.68c-1.71 4.93-2.83 10.14-2.83 15.65 0 26.51 21.49 48 48 48s48-21.49 48-48c0-5.51-1.12-10.72-2.83-15.65l89.6-71.67zM528 32c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16zM48 224c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zM208 64c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zm160 128c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zm-128 0h-64c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm-16 288h-32V224h32v256zm176-160h-64c-8.84 0-16 7.16-16 16v160c0 8.84 7.16 16 16 16h64c8.84 0 16-7.16 16-16V336c0-8.84-7.16-16-16-16zm-16 160h-32V352h32v128z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Anchor(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M5 2V0H0v5h2v6H0v5h5v-2h6v2h5v-5h-2V5h2V0h-5v2H5zm6 1v2h2v6h-2v2H5v-2H3V5h2V3h6zm1-2h3v3h-3V1zm3 11v3h-3v-3h3zM4 15H1v-3h3v3zM1 4V1h3v3H1z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M5 2V0H0v5h2v6H0v5h5v-2h6v2h5v-5h-2V5h2V0h-5v2H5zm6 1v2h2v6h-2v2H5v-2H3V5h2V3h6zm1-2h3v3h-3V1zm3 11v3h-3v-3h3zM4 15H1v-3h3v3zM1 4V1h3v3H1z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_bar_left(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5zM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5zM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_clockwise(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2v1z" />
|
||||
<path d="M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2v1z"/><path d="M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_counterclockwise(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z" />
|
||||
<path d="M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z"/><path d="M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_down(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="m443.5 248.5-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L241 419.9V44c0-6.6-5.4-12-12-12h-10c-6.6 0-12 5.4-12 12v375.9L28.5 241.4c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.8 4.8-12.3.1-17z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="m443.5 248.5-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L241 419.9V44c0-6.6-5.4-12-12-12h-10c-6.6 0-12 5.4-12 12v375.9L28.5 241.4c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.8 4.8-12.3.1-17z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_down_short(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_down_up(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M11.5 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L11 2.707V14.5a.5.5 0 0 0 .5.5zm-7-14a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V1.5a.5.5 0 0 1 .5-.5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11.5 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L11 2.707V14.5a.5.5 0 0 0 .5.5zm-7-14a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V1.5a.5.5 0 0 1 .5-.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_repeat(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41zm-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9z" />
|
||||
<path d="M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5.002 5.002 0 0 0 8 3zM3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9H3.1z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41zm-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9z"/><path d="M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5.002 5.002 0 0 0 8 3zM3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9H3.1z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_right_short(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_up(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="m4.465 263.536 7.07 7.071c4.686 4.686 12.284 4.686 16.971 0L207 92.113V468c0 6.627 5.373 12 12 12h10c6.627 0 12-5.373 12-12V92.113l178.494 178.493c4.686 4.686 12.284 4.686 16.971 0l7.07-7.071c4.686-4.686 4.686-12.284 0-16.97l-211.05-211.05c-4.686-4.686-12.284-4.686-16.971 0L4.465 246.566c-4.687 4.686-4.687 12.284 0 16.97z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="m4.465 263.536 7.07 7.071c4.686 4.686 12.284 4.686 16.971 0L207 92.113V468c0 6.627 5.373 12 12 12h10c6.627 0 12-5.373 12-12V92.113l178.494 178.493c4.686 4.686 12.284 4.686 16.971 0l7.07-7.071c4.686-4.686 4.686-12.284 0-16.97l-211.05-211.05c-4.686-4.686-12.284-4.686-16.971 0L4.465 246.566c-4.687 4.686-4.687 12.284 0 16.97z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Arrow_up_short(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,25 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar1(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M20.4 12.11c-1.7 4.2-4.1 5-5.9 5.1-2.5.2-2.5-.7-2.5-.7l-2-.1c0 1.3 1.3 2.29 3 2.59v1.3c-1.6-.1-3-1.3-4-2.29-1.4.5-3.8-.5-3-3 .4-1.1 1.2-1.6 1.9-1.8.1.1.2.3.3.4 1 1.5 2.5 2.4 3.9 2.4.6 0 1.2-.2 1.7-.5.5-.4.9-.8 1.1-1.4 2-.7 4.7-1.6 5.5-2z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path
|
||||
d="M12.6 13.91c-.7.5-1.9-.1-2.8-1.4-.8-1.3-1-2.6-.3-3.09.7-.5 1.9.1 2.8 1.39.9 1.2 1 2.6.3 3.1z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M9.26 11.26a1.753 1.193 44.983 1 0 2.48 2.48 1.753 1.193 44.983 1 0-2.48-2.48Z" />
|
||||
<path d="M14.8 11.413c-.2-.599-.5-1.299-.9-1.798-.7-.999-1.6-1.798-2.6-2.098.2-.199 1.2-.517 2.2-.517 2.35 0 3.569.9 4.119 1.493L18 9c0-4-3-8-9-8-5 0-6 3-6 3l.039.003L3 4.021s3 1.998 3 4.994c0 0-3 1.998-3 4.994 0 5.993 4 5.993 4 5.993h1C10.9 22.8 15 23 15 23v-3.996c5.4-.499 7.4-5.694 8-9.989.1.001-4.8 1.399-8.2 2.398zM9.5 9.415c.7-.499 1.9.1 2.8 1.398.9 1.199 1 2.597.3 3.097-.7.499-1.9-.1-2.8-1.398-.8-1.299-1-2.597-.3-3.097zm5 7.791c-2.5.2-2.5-.699-2.5-.699l-2-.1c0 1.299 1.3 2.297 3 2.597v1.299c-1.6-.1-3-1.299-4-2.297-1.4.499-3.8-.499-3-2.997.4-1.099 1.2-1.598 1.9-1.798.1.1.2.3.3.4 1 1.498 2.5 2.397 3.9 2.397.6 0 1.2-.2 1.7-.499.5-.4.9-.799 1.1-1.398 2-.699 4.7-1.598 5.5-1.998-1.7 4.194-4.1 4.994-5.9 5.093z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M20.4 12.11c-1.7 4.2-4.1 5-5.9 5.1-2.5.2-2.5-.7-2.5-.7l-2-.1c0 1.3 1.3 2.29 3 2.59v1.3c-1.6-.1-3-1.3-4-2.29-1.4.5-3.8-.5-3-3 .4-1.1 1.2-1.6 1.9-1.8.1.1.2.3.3.4 1 1.5 2.5 2.4 3.9 2.4.6 0 1.2-.2 1.7-.5.5-.4.9-.8 1.1-1.4 2-.7 4.7-1.6 5.5-2z" opacity=".3"/><path d="M12.6 13.91c-.7.5-1.9-.1-2.8-1.4-.8-1.3-1-2.6-.3-3.09.7-.5 1.9.1 2.8 1.39.9 1.2 1 2.6.3 3.1z" opacity=".3"/><path d="M9.26 11.26a1.753 1.193 44.983 1 0 2.48 2.48 1.753 1.193 44.983 1 0-2.48-2.48Z"/><path d="M14.8 11.413c-.2-.599-.5-1.299-.9-1.798-.7-.999-1.6-1.798-2.6-2.098.2-.199 1.2-.517 2.2-.517 2.35 0 3.569.9 4.119 1.493L18 9c0-4-3-8-9-8-5 0-6 3-6 3l.039.003L3 4.021s3 1.998 3 4.994c0 0-3 1.998-3 4.994 0 5.993 4 5.993 4 5.993h1C10.9 22.8 15 23 15 23v-3.996c5.4-.499 7.4-5.694 8-9.989.1.001-4.8 1.399-8.2 2.398zM9.5 9.415c.7-.499 1.9.1 2.8 1.398.9 1.199 1 2.597.3 3.097-.7.499-1.9-.1-2.8-1.398-.8-1.299-1-2.597-.3-3.097zm5 7.791c-2.5.2-2.5-.699-2.5-.699l-2-.1c0 1.299 1.3 2.297 3 2.597v1.299c-1.6-.1-3-1.299-4-2.297-1.4.499-3.8-.499-3-2.997.4-1.099 1.2-1.598 1.9-1.798.1.1.2.3.3.4 1 1.498 2.5 2.397 3.9 2.397.6 0 1.2-.2 1.7-.499.5-.4.9-.799 1.1-1.398 2-.699 4.7-1.598 5.5-1.998-1.7 4.194-4.1 4.994-5.9 5.093z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,19 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar10(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M7 3v5H5v4h3v10h8V12h3V8h-2V3z" opacity=".3" />
|
||||
<path d="M11 7h2v5h-2z" />
|
||||
<path d="M8 7h8v2H8z" />
|
||||
<path d="M18 7V2H6v5H4v6h3v10h10V13h3V7h-2zm-3 14H9v-5h6v5zm3-10h-3v3H9v-3H6V9h2V4h8v5h2v2z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M7 3v5H5v4h3v10h8V12h3V8h-2V3z" opacity=".3"/><path d="M11 7h2v5h-2z"/><path d="M8 7h8v2H8z"/><path d="M18 7V2H6v5H4v6h3v10h10V13h3V7h-2zm-3 14H9v-5h6v5zm3-10h-3v3H9v-3H6V9h2V4h8v5h2v2z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,25 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar11(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
baseProfile="basic"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M19.003 11.01c-.112 0-.223-.005-.333-.013-.607-.049-1.323-.388-1.898-1.024-.09.009-.179.027-.272.027-.405 0-.781-.106-1.12-.277a2.288 2.288 0 0 1-1.092.261l-.078-.001c-.654-.016-1.209-.268-1.606-.728-.726-.842-.66-2.111-.597-2.622.052-.441.15-.789.265-1.098A20.32 20.32 0 0 0 11.25 5.5c-1.361 0-2.371.276-3.5.75C7.047 5.891 5.132 4.777 3.875 5c-.278.049-1.625 2.5-.088 4.956a6.463 6.463 0 0 0-.776 3.048c0 4.01 3.388 5.997 8.797 5.997C18.125 19 20 17.01 20 13c0-.729-.149-1.409-.405-2.053a3.542 3.542 0 0 1-.592.063z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<ellipse cx="7" cy="12.992" rx="1" ry=".992" />
|
||||
<circle cx="16" cy="13" r="1" />
|
||||
<ellipse cx="11.51" cy="15.011" rx="1.51" ry=".989" />
|
||||
<path d="M14.879 4.033a2.951 2.951 0 0 1 1.535.976c.03-.001.057-.009.086-.009.241 0 .471.038.691.103.065-.007.128-.027.194-.024.018.028.04.069.064.119.155.065.306.14.444.233a4.45 4.45 0 0 1 1.621-.411c-.411-1.463-1.209-1.798-1.553-1.873-1.283-.282-2.307.288-3.082.886zM23 13.992v-2c-.776 0-1.511.002-2.061.004a6.18 6.18 0 0 0-.381-1.37 3.18 3.18 0 0 1-1.555.384c-.112 0-.223-.005-.333-.013-.05-.004-.105-.022-.156-.03.341.681.511 1.335.488 1.997C18.907 15.58 17.971 18 11.808 18c-3.557 0-7.797-.867-7.797-4.997 0-.881.22-1.742.65-2.559.332-.528.796-.88.805-.886A1 1 0 0 0 4.29 7.939a4.847 4.847 0 0 0-.169.134c-.156-.926.077-1.712.26-2.098.841.072 2.122.749 2.645 1.025l.683.353.429-.181c.959-.403 1.855-.672 3.112-.672.201 0 .477.009.778.024.134-.974.452-1.578.821-1.955A25.792 25.792 0 0 0 11.25 4.5c-1.216 0-2.243.191-3.444.65C6.8 4.621 5.09 3.768 3.699 4.016c-.297.052-.739.235-1.169 1.204-.261.588-.97 2.572.125 4.761-.041.094-.086.186-.12.286-.007.021-.003.042-.008.063a7.389 7.389 0 0 0-.438 1.667c-.553-.002-1.3-.004-2.089-.004v2c.786 0 1.531.002 2.082.004.091.694.277 1.336.56 1.919L.939 17.525l1.373 1.453 1.521-1.436C5.478 19.134 8.191 20 11.808 20c3.486 0 5.955-.77 7.454-2.325l1.282 1.282 1.414-1.414-1.569-1.569a7.414 7.414 0 0 0 .528-1.978c.55-.002 1.296-.004 2.083-.004z" />
|
||||
<path d="M19.875 6c-1.051 0-1.664.334-2.149.673a1.496 1.496 0 0 0-.678-.57 1.489 1.489 0 0 0-1.092.003c-.269-.488-.672-.933-1.331-1.106-.483-.127-1.403-.124-1.625 1.75-.015.125-.301 2.196 1.234 2.233.416.01.674-.098 1.183-.449.074.078.155.149.244.21a1.48 1.48 0 0 0 1.515.088c.435.76 1.092 1.129 1.574 1.168.706.057 1.49-.112 1.87-.756C21.5 7.75 20.512 6 19.875 6z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" baseProfile="basic" width={ `${ width }px` } height={ `${ height }px` } ><path d="M19.003 11.01c-.112 0-.223-.005-.333-.013-.607-.049-1.323-.388-1.898-1.024-.09.009-.179.027-.272.027-.405 0-.781-.106-1.12-.277a2.288 2.288 0 0 1-1.092.261l-.078-.001c-.654-.016-1.209-.268-1.606-.728-.726-.842-.66-2.111-.597-2.622.052-.441.15-.789.265-1.098A20.32 20.32 0 0 0 11.25 5.5c-1.361 0-2.371.276-3.5.75C7.047 5.891 5.132 4.777 3.875 5c-.278.049-1.625 2.5-.088 4.956a6.463 6.463 0 0 0-.776 3.048c0 4.01 3.388 5.997 8.797 5.997C18.125 19 20 17.01 20 13c0-.729-.149-1.409-.405-2.053a3.542 3.542 0 0 1-.592.063z" opacity=".3"/><ellipse cx="7" cy="12.992" rx="1" ry=".992"/><circle cx="16" cy="13" r="1"/><ellipse cx="11.51" cy="15.011" rx="1.51" ry=".989"/><path d="M14.879 4.033a2.951 2.951 0 0 1 1.535.976c.03-.001.057-.009.086-.009.241 0 .471.038.691.103.065-.007.128-.027.194-.024.018.028.04.069.064.119.155.065.306.14.444.233a4.45 4.45 0 0 1 1.621-.411c-.411-1.463-1.209-1.798-1.553-1.873-1.283-.282-2.307.288-3.082.886zM23 13.992v-2c-.776 0-1.511.002-2.061.004a6.18 6.18 0 0 0-.381-1.37 3.18 3.18 0 0 1-1.555.384c-.112 0-.223-.005-.333-.013-.05-.004-.105-.022-.156-.03.341.681.511 1.335.488 1.997C18.907 15.58 17.971 18 11.808 18c-3.557 0-7.797-.867-7.797-4.997 0-.881.22-1.742.65-2.559.332-.528.796-.88.805-.886A1 1 0 0 0 4.29 7.939a4.847 4.847 0 0 0-.169.134c-.156-.926.077-1.712.26-2.098.841.072 2.122.749 2.645 1.025l.683.353.429-.181c.959-.403 1.855-.672 3.112-.672.201 0 .477.009.778.024.134-.974.452-1.578.821-1.955A25.792 25.792 0 0 0 11.25 4.5c-1.216 0-2.243.191-3.444.65C6.8 4.621 5.09 3.768 3.699 4.016c-.297.052-.739.235-1.169 1.204-.261.588-.97 2.572.125 4.761-.041.094-.086.186-.12.286-.007.021-.003.042-.008.063a7.389 7.389 0 0 0-.438 1.667c-.553-.002-1.3-.004-2.089-.004v2c.786 0 1.531.002 2.082.004.091.694.277 1.336.56 1.919L.939 17.525l1.373 1.453 1.521-1.436C5.478 19.134 8.191 20 11.808 20c3.486 0 5.955-.77 7.454-2.325l1.282 1.282 1.414-1.414-1.569-1.569a7.414 7.414 0 0 0 .528-1.978c.55-.002 1.296-.004 2.083-.004z"/><path d="M19.875 6c-1.051 0-1.664.334-2.149.673a1.496 1.496 0 0 0-.678-.57 1.489 1.489 0 0 0-1.092.003c-.269-.488-.672-.933-1.331-1.106-.483-.127-1.403-.124-1.625 1.75-.015.125-.301 2.196 1.234 2.233.416.01.674-.098 1.183-.449.074.078.155.149.244.21a1.48 1.48 0 0 0 1.515.088c.435.76 1.092 1.129 1.574 1.168.706.057 1.49-.112 1.87-.756C21.5 7.75 20.512 6 19.875 6z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,27 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar12(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M20 15c0 .55-.22 1.05-.59 1.41-.36.37-.86.59-1.41.59v5h-7c1.66 0 3-1.34 3-3v-1c0-1.66-1.34-3-3-3v-.04c.16.03.33.04.5.04 1.93 0 3.5-1.57 3.5-3.5S13.43 8 11.5 8c-.74 0-1.44.23-2 .64-.56-.41-1.26-.64-2-.64-.54 0-1.05.12-1.5.35V8c0-3.31 2.69-6 6-6 1.66 0 3.16.67 4.24 1.76A5.944 5.944 0 0 1 18 8v5c.55 0 1.05.22 1.41.59.37.36.59.86.59 1.41z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M19 23h-8v-2h6v-5h1a.959.959 0 0 0 .693-.287c.204-.199.307-.446.307-.713s-.103-.514-.287-.693A.977.977 0 0 0 18 14h-1V8a4.93 4.93 0 0 0-1.464-3.53A4.935 4.935 0 0 0 12 3C9.243 3 7 5.243 7 8H5c0-3.859 3.141-7 7-7 1.879 0 3.637.73 4.95 2.056A6.908 6.908 0 0 1 19 8v4.17a2.92 2.92 0 0 1 1.127.723c.557.541.873 1.295.873 2.107s-.316 1.566-.893 2.127a2.86 2.86 0 0 1-1.107.704V23z" />
|
||||
<path d="M9 16H5a1 1 0 1 1 0-2h4a1 1 0 1 1 0 2z" />
|
||||
<path d="M11 23H9.5c-2.206 0-4-1.794-4-4H6 4v-1c0-2.289 2.376-4 4.5-4H11c2.206 0 4 1.794 4 4v1c0 2.206-1.794 4-4 4zm-5-4h1.5c0 1.103.897 2 2 2H11c1.103 0 2-.897 2-2v-1c0-1.103-.897-2-2-2H8.5c-1.125 0-2.5.923-2.5 2v1z" />
|
||||
<path d="M11.5 9a2.5 2.5 0 1 1-2 4 2.5 2.5 0 1 1-2-4c.82 0 1.55.4 2 1.01.45-.61 1.18-1.01 2-1.01m0-2a4.49 4.49 0 0 0-2 .473A4.49 4.49 0 0 0 7.5 7C5.019 7 3 9.019 3 11.5a4.505 4.505 0 0 0 6.5 4.035A4.505 4.505 0 0 0 16 11.5C16 9.019 13.981 7 11.5 7z" />
|
||||
<path d="M11.5 9a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5m0-1C9.57 8 8 9.57 8 11.5S9.57 15 11.5 15s3.5-1.57 3.5-3.5S13.43 8 11.5 8z" />
|
||||
<circle cx="11" cy="11" r="1" />
|
||||
<circle cx="6" cy="11" r="1" />
|
||||
<path d="M4 19h7v1H4z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M20 15c0 .55-.22 1.05-.59 1.41-.36.37-.86.59-1.41.59v5h-7c1.66 0 3-1.34 3-3v-1c0-1.66-1.34-3-3-3v-.04c.16.03.33.04.5.04 1.93 0 3.5-1.57 3.5-3.5S13.43 8 11.5 8c-.74 0-1.44.23-2 .64-.56-.41-1.26-.64-2-.64-.54 0-1.05.12-1.5.35V8c0-3.31 2.69-6 6-6 1.66 0 3.16.67 4.24 1.76A5.944 5.944 0 0 1 18 8v5c.55 0 1.05.22 1.41.59.37.36.59.86.59 1.41z" opacity=".3"/><path d="M19 23h-8v-2h6v-5h1a.959.959 0 0 0 .693-.287c.204-.199.307-.446.307-.713s-.103-.514-.287-.693A.977.977 0 0 0 18 14h-1V8a4.93 4.93 0 0 0-1.464-3.53A4.935 4.935 0 0 0 12 3C9.243 3 7 5.243 7 8H5c0-3.859 3.141-7 7-7 1.879 0 3.637.73 4.95 2.056A6.908 6.908 0 0 1 19 8v4.17a2.92 2.92 0 0 1 1.127.723c.557.541.873 1.295.873 2.107s-.316 1.566-.893 2.127a2.86 2.86 0 0 1-1.107.704V23z"/><path d="M9 16H5a1 1 0 1 1 0-2h4a1 1 0 1 1 0 2z"/><path d="M11 23H9.5c-2.206 0-4-1.794-4-4H6 4v-1c0-2.289 2.376-4 4.5-4H11c2.206 0 4 1.794 4 4v1c0 2.206-1.794 4-4 4zm-5-4h1.5c0 1.103.897 2 2 2H11c1.103 0 2-.897 2-2v-1c0-1.103-.897-2-2-2H8.5c-1.125 0-2.5.923-2.5 2v1z"/><path d="M11.5 9a2.5 2.5 0 1 1-2 4 2.5 2.5 0 1 1-2-4c.82 0 1.55.4 2 1.01.45-.61 1.18-1.01 2-1.01m0-2a4.49 4.49 0 0 0-2 .473A4.49 4.49 0 0 0 7.5 7C5.019 7 3 9.019 3 11.5a4.505 4.505 0 0 0 6.5 4.035A4.505 4.505 0 0 0 16 11.5C16 9.019 13.981 7 11.5 7z"/><path d="M11.5 9a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5m0-1C9.57 8 8 9.57 8 11.5S9.57 15 11.5 15s3.5-1.57 3.5-3.5S13.43 8 11.5 8z"/><circle cx="11" cy="11" r="1"/><circle cx="6" cy="11" r="1"/><path d="M4 19h7v1H4z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,21 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar13(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
opacity=".3"
|
||||
d="M12 21h-2l-3-2-1-5-1-3 1-2V5l3-3h6l3 3v4l1 2-1 3-1 5-3 2h-2z"
|
||||
/>
|
||||
<path d="M14 22h-4c-.197 0-.391-.059-.555-.168l-3-2a.999.999 0 0 1-.426-.636l-.988-4.939-.979-2.94a1.004 1.004 0 0 1 .054-.764L5 8.764V5c0-.266.105-.52.293-.707l3-3A.996.996 0 0 1 9 1h6c.266 0 .52.105.707.293l3 3A.996.996 0 0 1 19 5v3.764l.895 1.789c.118.237.138.512.054.764l-.979 2.94-.988 4.939c-.052.26-.205.488-.426.636l-3 2A1.011 1.011 0 0 1 14 22zm-3.697-2h3.395l2.403-1.603.919-4.594c.008-.04.019-.081.032-.12l.868-2.606-.814-1.63A.99.99 0 0 1 17 9V5.414L14.586 3H9.414L7 5.414V9c0 .155-.036.309-.105.447l-.814 1.63.868 2.606a.85.85 0 0 1 .032.12l.919 4.594L10.303 20z" />
|
||||
<path d="M13 8h-2c-.409 0-.776-.249-.929-.629l-2-5 1.857-.742L11.677 6h.646l1.748-4.371 1.857.742-2 5A1 1 0 0 1 13 8zM6.757 11.97l.485-1.94 4 1-.485 1.94zM12.757 11.03l4-1 .485 1.94-4 .999zM14.772 21.559 12.67 20h-1.34l-2.103 1.559-1.191-1.607 2.368-1.755A1 1 0 0 1 11 18h2c.215 0 .423.069.596.196l2.368 1.755-1.192 1.608z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path opacity=".3" d="M12 21h-2l-3-2-1-5-1-3 1-2V5l3-3h6l3 3v4l1 2-1 3-1 5-3 2h-2z"/><path d="M14 22h-4c-.197 0-.391-.059-.555-.168l-3-2a.999.999 0 0 1-.426-.636l-.988-4.939-.979-2.94a1.004 1.004 0 0 1 .054-.764L5 8.764V5c0-.266.105-.52.293-.707l3-3A.996.996 0 0 1 9 1h6c.266 0 .52.105.707.293l3 3A.996.996 0 0 1 19 5v3.764l.895 1.789c.118.237.138.512.054.764l-.979 2.94-.988 4.939c-.052.26-.205.488-.426.636l-3 2A1.011 1.011 0 0 1 14 22zm-3.697-2h3.395l2.403-1.603.919-4.594c.008-.04.019-.081.032-.12l.868-2.606-.814-1.63A.99.99 0 0 1 17 9V5.414L14.586 3H9.414L7 5.414V9c0 .155-.036.309-.105.447l-.814 1.63.868 2.606a.85.85 0 0 1 .032.12l.919 4.594L10.303 20z"/><path d="M13 8h-2c-.409 0-.776-.249-.929-.629l-2-5 1.857-.742L11.677 6h.646l1.748-4.371 1.857.742-2 5A1 1 0 0 1 13 8zM6.757 11.97l.485-1.94 4 1-.485 1.94zM12.757 11.03l4-1 .485 1.94-4 .999zM14.772 21.559 12.67 20h-1.34l-2.103 1.559-1.191-1.607 2.368-1.755A1 1 0 0 1 11 18h2c.215 0 .423.069.596.196l2.368 1.755-1.192 1.608z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,24 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar14(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M20 21h-2v-6c0-.737.604-1.083 1.091-1.361.497-.285.909-.545.909-.839C20 4.635 13.877 4 12 4s-8 .635-8 8.8c0 .294.412.554.909.839C5.396 13.917 6 14.263 6 15v6H4v-5.578l-.084-.048C3.246 14.991 2 14.277 2 12.8 2 4.828 7.387 2 12 2s10 2.828 10 10.8c0 1.478-1.246 2.191-1.916 2.574l-.084.048V21z" />
|
||||
<circle cx="8.5" cy="10.5" r="2.5" />
|
||||
<circle cx="15.5" cy="10.5" r="2.5" />
|
||||
<path d="M15 18a1 1 0 0 1-1-1v-2c0-1.103-.897-2-2-2s-2 .897-2 2v2a1 1 0 1 1-2 0v-2c0-2.206 1.794-4 4-4s4 1.794 4 4v2a1 1 0 0 1-1 1z" />
|
||||
<circle cx="12" cy="14" r="1" />
|
||||
<path
|
||||
d="M12 3c-4.557 0-9 2.8-9 9.8 0 1.4 2 1.762 2 2.2v6h14v-6c0-.438 2-.8 2-2.2 0-7-4.443-9.8-9-9.8z"
|
||||
opacity=".3"
|
||||
/>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M20 21h-2v-6c0-.737.604-1.083 1.091-1.361.497-.285.909-.545.909-.839C20 4.635 13.877 4 12 4s-8 .635-8 8.8c0 .294.412.554.909.839C5.396 13.917 6 14.263 6 15v6H4v-5.578l-.084-.048C3.246 14.991 2 14.277 2 12.8 2 4.828 7.387 2 12 2s10 2.828 10 10.8c0 1.478-1.246 2.191-1.916 2.574l-.084.048V21z"/><circle cx="8.5" cy="10.5" r="2.5"/><circle cx="15.5" cy="10.5" r="2.5"/><path d="M15 18a1 1 0 0 1-1-1v-2c0-1.103-.897-2-2-2s-2 .897-2 2v2a1 1 0 1 1-2 0v-2c0-2.206 1.794-4 4-4s4 1.794 4 4v2a1 1 0 0 1-1 1z"/><circle cx="12" cy="14" r="1"/><path d="M12 3c-4.557 0-9 2.8-9 9.8 0 1.4 2 1.762 2 2.2v6h14v-6c0-.438 2-.8 2-2.2 0-7-4.443-9.8-9-9.8z" opacity=".3"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,22 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar15(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M16.8 10.8 15.6 12H14v.9l-.3 2.7-.2.9-.4 3.5h-2.2l-.4-3.5-.2-.8-.3-2.8V12H8.4l-1.2-1.2.2-.4 3.6.6 1-1 1 1 3.6-.6zM16 7H8c0-2.1 2.1-3 4-3s4 .9 4 3z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M11 11h2v2h-2z" />
|
||||
<path d="m18.6 10.1.4-.1V7h-1c0-2.9-2.5-5-6-5S6 4.1 6 7H5v3l.4.1-.6 1.1L7.6 14h.5l1 8h5.8l1-8h.5l2.8-2.8-.6-1.1zM12 4c1.9 0 4 .9 4 3H8c0-2.1 2.1-3 4-3zm3.6 8H14v.9l-.3 2.7-.2.9-.4 3.5h-2.2l-.4-3.5-.2-.8-.3-2.8V12H8.4l-1.2-1.2.2-.4 3.6.6 1-1 1 1 3.6-.6.2.4-1.2 1.2z" />
|
||||
<path d="M9 15h6v2H9z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M16.8 10.8 15.6 12H14v.9l-.3 2.7-.2.9-.4 3.5h-2.2l-.4-3.5-.2-.8-.3-2.8V12H8.4l-1.2-1.2.2-.4 3.6.6 1-1 1 1 3.6-.6zM16 7H8c0-2.1 2.1-3 4-3s4 .9 4 3z" opacity=".3"/><path d="M11 11h2v2h-2z"/><path d="m18.6 10.1.4-.1V7h-1c0-2.9-2.5-5-6-5S6 4.1 6 7H5v3l.4.1-.6 1.1L7.6 14h.5l1 8h5.8l1-8h.5l2.8-2.8-.6-1.1zM12 4c1.9 0 4 .9 4 3H8c0-2.1 2.1-3 4-3zm3.6 8H14v.9l-.3 2.7-.2.9-.4 3.5h-2.2l-.4-3.5-.2-.8-.3-2.8V12H8.4l-1.2-1.2.2-.4 3.6.6 1-1 1 1 3.6-.6.2.4-1.2 1.2z"/><path d="M9 15h6v2H9z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,23 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar16(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M22 13.68C22 16.6 14.31 20 12 20S2 16.6 2 13.68c0-1.05.99-2.46 2.37-3.84.18.41.45.8.79 1.16 4.22-.88 5.26-4.28 5.26-4.28s-.38-.37-.95-.77C10.51 5.36 11.42 5 12 5s1.49.36 2.53.95c-.57.4-.95.77-.95.77s1.04 3.4 5.26 4.28c.34-.36.61-.75.79-1.16 1.38 1.38 2.37 2.79 2.37 3.84z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M12 21c-2.464 0-11-3.544-11-7.315 0-1.248.896-2.779 2.661-4.551l1.416 1.411C3.546 12.083 3 13.175 3 13.685 3 15.645 9.639 19 12 19s9-3.355 9-5.315c0-.51-.546-1.602-2.077-3.14l1.416-1.411C22.104 10.906 23 12.437 23 13.685 23 17.456 14.464 21 12 21zM14.045 6.817C12.655 6.04 12.098 6 12 6s-.655.04-2.045.817l-.976-1.745C10.249 4.361 11.266 4 12 4s1.751.361 3.021 1.072l-.976 1.745z" />
|
||||
<path d="M5.157 12a.999.999 0 0 1-.723-.309c-1.082-1.131-1.59-2.587-1.393-3.994.189-1.352 1.004-2.511 2.294-3.264 2.599-1.52 5.658 1.45 5.788 1.578a.998.998 0 0 1 .253 1.004c-.05.162-1.268 3.971-6.015 4.964a.995.995 0 0 1-.204.021zM6.97 6.002c-.225 0-.437.047-.625.158-.761.444-1.218 1.071-1.323 1.815-.09.637.093 1.309.505 1.903C7.729 9.235 8.778 7.8 9.209 6.999c-.595-.458-1.484-.997-2.239-.997zM18.843 12c-.068 0-.137-.007-.205-.021-4.747-.993-5.965-4.802-6.015-4.964a.998.998 0 0 1 .253-1.004c.13-.127 3.186-3.098 5.789-1.578 1.289.753 2.104 1.912 2.293 3.264.197 1.407-.311 2.863-1.393 3.994a.997.997 0 0 1-.722.309zm-4.052-5.001c.432.806 1.48 2.237 3.682 2.879.412-.594.595-1.266.505-1.903-.104-.744-.562-1.371-1.321-1.815-.828-.481-2.094.245-2.866.839zm-1.212-.277h.01-.01zM12 17c-3.685 0-6.49-2.116-6.607-2.206l1.215-1.588C6.63 13.223 9.011 15 12 15s5.37-1.777 5.395-1.796l1.213 1.59C18.49 14.884 15.685 17 12 17z" />
|
||||
<circle cx="7" cy="8" r="1" />
|
||||
<circle cx="17" cy="8" r="1" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M22 13.68C22 16.6 14.31 20 12 20S2 16.6 2 13.68c0-1.05.99-2.46 2.37-3.84.18.41.45.8.79 1.16 4.22-.88 5.26-4.28 5.26-4.28s-.38-.37-.95-.77C10.51 5.36 11.42 5 12 5s1.49.36 2.53.95c-.57.4-.95.77-.95.77s1.04 3.4 5.26 4.28c.34-.36.61-.75.79-1.16 1.38 1.38 2.37 2.79 2.37 3.84z" opacity=".3"/><path d="M12 21c-2.464 0-11-3.544-11-7.315 0-1.248.896-2.779 2.661-4.551l1.416 1.411C3.546 12.083 3 13.175 3 13.685 3 15.645 9.639 19 12 19s9-3.355 9-5.315c0-.51-.546-1.602-2.077-3.14l1.416-1.411C22.104 10.906 23 12.437 23 13.685 23 17.456 14.464 21 12 21zM14.045 6.817C12.655 6.04 12.098 6 12 6s-.655.04-2.045.817l-.976-1.745C10.249 4.361 11.266 4 12 4s1.751.361 3.021 1.072l-.976 1.745z"/><path d="M5.157 12a.999.999 0 0 1-.723-.309c-1.082-1.131-1.59-2.587-1.393-3.994.189-1.352 1.004-2.511 2.294-3.264 2.599-1.52 5.658 1.45 5.788 1.578a.998.998 0 0 1 .253 1.004c-.05.162-1.268 3.971-6.015 4.964a.995.995 0 0 1-.204.021zM6.97 6.002c-.225 0-.437.047-.625.158-.761.444-1.218 1.071-1.323 1.815-.09.637.093 1.309.505 1.903C7.729 9.235 8.778 7.8 9.209 6.999c-.595-.458-1.484-.997-2.239-.997zM18.843 12c-.068 0-.137-.007-.205-.021-4.747-.993-5.965-4.802-6.015-4.964a.998.998 0 0 1 .253-1.004c.13-.127 3.186-3.098 5.789-1.578 1.289.753 2.104 1.912 2.293 3.264.197 1.407-.311 2.863-1.393 3.994a.997.997 0 0 1-.722.309zm-4.052-5.001c.432.806 1.48 2.237 3.682 2.879.412-.594.595-1.266.505-1.903-.104-.744-.562-1.371-1.321-1.815-.828-.481-2.094.245-2.866.839zm-1.212-.277h.01-.01zM12 17c-3.685 0-6.49-2.116-6.607-2.206l1.215-1.588C6.63 13.223 9.011 15 12 15s5.37-1.777 5.395-1.796l1.213 1.59C18.49 14.884 15.685 17 12 17z"/><circle cx="7" cy="8" r="1"/><circle cx="17" cy="8" r="1"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,21 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar17(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M4 10c0-4.4 3.6-8 8-8s8 3.6 8 8h2v4h-1.1c-.5 4.5-4.3 8-8.9 8s-8.4-3.5-8.9-8H2v-4h2z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M5 11h3v2H5zm11 0h3v2h-3zm-2 2h3v4h-3zm-4-2h4v3h-4zm-3 2h3v4H7zm4-5c0 1.1-.9 2-2 2s-2-.9-2-2h4zm6 0c0 1.1-.9 2-2 2s-2-.9-2-2h4z" />
|
||||
<path d="M12 23c-4.8 0-8.9-3.4-9.8-8H1V9h2.1c.5-4.5 4.3-8 8.9-8 4.6 0 8.4 3.5 8.9 8H23v6h-1.2c-.9 4.6-5 8-9.8 8zM3 13h1v.9C4.4 18 7.9 21 12 21s7.5-3.1 8-7.1V13h1v-2h-2v-1c0-3.9-3.1-7-7-7s-7 3.1-7 7v1H3v2z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M4 10c0-4.4 3.6-8 8-8s8 3.6 8 8h2v4h-1.1c-.5 4.5-4.3 8-8.9 8s-8.4-3.5-8.9-8H2v-4h2z" opacity=".3"/><path d="M5 11h3v2H5zm11 0h3v2h-3zm-2 2h3v4h-3zm-4-2h4v3h-4zm-3 2h3v4H7zm4-5c0 1.1-.9 2-2 2s-2-.9-2-2h4zm6 0c0 1.1-.9 2-2 2s-2-.9-2-2h4z"/><path d="M12 23c-4.8 0-8.9-3.4-9.8-8H1V9h2.1c.5-4.5 4.3-8 8.9-8 4.6 0 8.4 3.5 8.9 8H23v6h-1.2c-.9 4.6-5 8-9.8 8zM3 13h1v.9C4.4 18 7.9 21 12 21s7.5-3.1 8-7.1V13h1v-2h-2v-1c0-3.9-3.1-7-7-7s-7 3.1-7 7v1H3v2z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,41 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar18(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
clipRule="evenodd"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#27A2A8"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeMiterlimit="10"
|
||||
strokeWidth="2"
|
||||
d="M11.833 8.999c.079.004.643.051.721.057 3.2.255 5.847 2.005 6.56 4.665.974 3.634-2.029 7.601-6.701 8.853-4.672 1.252-9.256-.682-10.23-4.317-.508-1.896-.014-3.792 1.317-5.437"
|
||||
/>
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#27A2A8"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeMiterlimit="10"
|
||||
strokeWidth="2"
|
||||
d="M10.138 14c4.063-1.089 7.879-.043 8.516 2.333.636 2.376-2.145 5.189-6.208 6.278-4.063 1.089-7.879.043-8.516-2.333-.636-2.376 2.145-5.189 6.208-6.278zM6 8s1.307 2.685 4.191 2c2.768-.658 1.809-4.388.758-5.755C10.188 3.257 8.635 2 7.138 2c-.737 0-1.873 0-2.857 1.294-2.218 2.919-.817 9.434-.817 9.434M13 8.999c1.244-.019 5.449.207 7.5-.256 2.118-.478 2.5-1.854 2.5-3.049C23 4.738 22.353 3 20 3c-4.238 0-7.955 2.48-8.053 2.53"
|
||||
/>
|
||||
<ellipse cx="8" cy="19.5" rx="1" ry="1.5" />
|
||||
<ellipse cx="15" cy="17.5" rx="1" ry="1.5" />
|
||||
<path d="M11.886 19.318c.551-.096 1.05.123 1.114.49.064.367-.33.743-.881.84-.55.096-1.049-.123-1.114-.49-.064-.367.331-.744.881-.84z" />
|
||||
<path
|
||||
d="M4.5 21.287S3 18.899 5.5 16.5c1.988-1.908 4.242-2.772 5-2.931 4-.841 7.503.163 7.691 3.163.912-.674 1.309-1.232 1.309-1.232l-3.782-6s5.834-.166 6.558-2S23 4.479 22.5 3.74C22 3 18.625 2.5 17.812 3c-.812.5-5.865 2.5-5.865 2.5S10 1.5 8.5 2s-4 .5-4.5 1.5-.5 9-.5 9-2.025 2.588-1.513 4.692C2.5 19.295 4.5 21.287 4.5 21.287z"
|
||||
opacity=".3"
|
||||
/>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" clipRule="evenodd" width={ `${ width }px` } height={ `${ height }px` } ><path fill="none" stroke="#27A2A8" strokeLinecap="round" strokeLinejoin="round" strokeMiterlimit="10" strokeWidth="2" d="M11.833 8.999c.079.004.643.051.721.057 3.2.255 5.847 2.005 6.56 4.665.974 3.634-2.029 7.601-6.701 8.853-4.672 1.252-9.256-.682-10.23-4.317-.508-1.896-.014-3.792 1.317-5.437"/><path fill="none" stroke="#27A2A8" strokeLinecap="round" strokeLinejoin="round" strokeMiterlimit="10" strokeWidth="2" d="M10.138 14c4.063-1.089 7.879-.043 8.516 2.333.636 2.376-2.145 5.189-6.208 6.278-4.063 1.089-7.879.043-8.516-2.333-.636-2.376 2.145-5.189 6.208-6.278zM6 8s1.307 2.685 4.191 2c2.768-.658 1.809-4.388.758-5.755C10.188 3.257 8.635 2 7.138 2c-.737 0-1.873 0-2.857 1.294-2.218 2.919-.817 9.434-.817 9.434M13 8.999c1.244-.019 5.449.207 7.5-.256 2.118-.478 2.5-1.854 2.5-3.049C23 4.738 22.353 3 20 3c-4.238 0-7.955 2.48-8.053 2.53"/><ellipse cx="8" cy="19.5" rx="1" ry="1.5"/><ellipse cx="15" cy="17.5" rx="1" ry="1.5"/><path d="M11.886 19.318c.551-.096 1.05.123 1.114.49.064.367-.33.743-.881.84-.55.096-1.049-.123-1.114-.49-.064-.367.331-.744.881-.84z"/><path d="M4.5 21.287S3 18.899 5.5 16.5c1.988-1.908 4.242-2.772 5-2.931 4-.841 7.503.163 7.691 3.163.912-.674 1.309-1.232 1.309-1.232l-3.782-6s5.834-.166 6.558-2S23 4.479 22.5 3.74C22 3 18.625 2.5 17.812 3c-.812.5-5.865 2.5-5.865 2.5S10 1.5 8.5 2s-4 .5-4.5 1.5-.5 9-.5 9-2.025 2.588-1.513 4.692C2.5 19.295 4.5 21.287 4.5 21.287z" opacity=".3"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,21 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar19(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
baseProfile="basic"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M19 13c1.1 0 2 .9 2 2s-.9 2-2 2h-.08A6.965 6.965 0 0 1 12 23.02c-3.53 0-6.44-2.6-6.92-6H5c-1.1 0-2-.9-2-2s.9-2 2-2L19 13zM5 9h14v4H5zM5 9 2.75 7.75l2.125-1.875-1-2.375 3.375.375 2.92-2.855L12 2.875l3.787-1.855.713 3.355L20 3l-1 2.5L22 7l-3 2z"
|
||||
opacity=".35"
|
||||
/>
|
||||
<path d="M22.447 6.105 20.27 5.017l.659-1.646a1 1 0 0 0-1.294-1.302l-2.401.943-.468-2.2a1 1 0 0 0-1.418-.69L12.207 1.66 10.883.318A1 1 0 0 0 9.471.306L6.89 2.829l-2.905-.323c-.356-.033-.7.112-.912.396-.212.284-.258.66-.121.986l.721 1.713L2.088 7a1.001 1.001 0 0 0 .176 1.624L4 9.588v2.615a2.996 2.996 0 0 0-2 2.816c0 1.372.926 2.533 2.232 2.888C5.085 21.44 8.299 24.02 12 24.02c3.717 0 6.929-2.581 7.769-6.119A3.006 3.006 0 0 0 22 15a2.996 2.996 0 0 0-2-2.816V9.535l2.555-1.703a1 1 0 0 0-.108-1.727zM13 10v2h-2v-2h2zm5 0v2h-3v-2h3zm-9 2H6v-2h3v2zm9.92 4a1 1 0 0 0-.991.866 5.85 5.85 0 0 1-.723 2.118l-1.758-.879a1 1 0 0 0-.895 1.789l1.349.674A5.987 5.987 0 0 1 12 22.02a5.982 5.982 0 0 1-3.897-1.453l1.344-.672a1 1 0 0 0-.895-1.789l-1.755.878a5.89 5.89 0 0 1-.727-2.103C6 16.387 5.498 16.02 5 16.02a1.001 1.001 0 0 1 0-2L19.001 14c.551.001.999.449.999 1 0 .552-.449 1-1.08 1zm-.223-8H5.259l-.786-.437 1.063-.938a1 1 0 0 0 .26-1.138l-.338-.805 1.682.187c.296.03.595-.07.81-.279l2.208-2.158 1.13 1.146a.998.998 0 0 0 1.152.196l2.636-1.291.446 2.101a1.002 1.002 0 0 0 1.343.723l1.347-.529-.141.353a1 1 0 0 0 .481 1.266l1.459.729L18.697 8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" baseProfile="basic" width={ `${ width }px` } height={ `${ height }px` } ><path d="M19 13c1.1 0 2 .9 2 2s-.9 2-2 2h-.08A6.965 6.965 0 0 1 12 23.02c-3.53 0-6.44-2.6-6.92-6H5c-1.1 0-2-.9-2-2s.9-2 2-2L19 13zM5 9h14v4H5zM5 9 2.75 7.75l2.125-1.875-1-2.375 3.375.375 2.92-2.855L12 2.875l3.787-1.855.713 3.355L20 3l-1 2.5L22 7l-3 2z" opacity=".35"/><path d="M22.447 6.105 20.27 5.017l.659-1.646a1 1 0 0 0-1.294-1.302l-2.401.943-.468-2.2a1 1 0 0 0-1.418-.69L12.207 1.66 10.883.318A1 1 0 0 0 9.471.306L6.89 2.829l-2.905-.323c-.356-.033-.7.112-.912.396-.212.284-.258.66-.121.986l.721 1.713L2.088 7a1.001 1.001 0 0 0 .176 1.624L4 9.588v2.615a2.996 2.996 0 0 0-2 2.816c0 1.372.926 2.533 2.232 2.888C5.085 21.44 8.299 24.02 12 24.02c3.717 0 6.929-2.581 7.769-6.119A3.006 3.006 0 0 0 22 15a2.996 2.996 0 0 0-2-2.816V9.535l2.555-1.703a1 1 0 0 0-.108-1.727zM13 10v2h-2v-2h2zm5 0v2h-3v-2h3zm-9 2H6v-2h3v2zm9.92 4a1 1 0 0 0-.991.866 5.85 5.85 0 0 1-.723 2.118l-1.758-.879a1 1 0 0 0-.895 1.789l1.349.674A5.987 5.987 0 0 1 12 22.02a5.982 5.982 0 0 1-3.897-1.453l1.344-.672a1 1 0 0 0-.895-1.789l-1.755.878a5.89 5.89 0 0 1-.727-2.103C6 16.387 5.498 16.02 5 16.02a1.001 1.001 0 0 1 0-2L19.001 14c.551.001.999.449.999 1 0 .552-.449 1-1.08 1zm-.223-8H5.259l-.786-.437 1.063-.938a1 1 0 0 0 .26-1.138l-.338-.805 1.682.187c.296.03.595-.07.81-.279l2.208-2.158 1.13 1.146a.998.998 0 0 0 1.152.196l2.636-1.291.446 2.101a1.002 1.002 0 0 0 1.343.723l1.347-.529-.141.353a1 1 0 0 0 .481 1.266l1.459.729L18.697 8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,22 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar2(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M20 19s2.568-1.202 2-4c-.719-3.54-4.405-10-10-10S2.718 11.46 2 15c-.568 2.798 2 4 2 4s1.006-4 8-4 8 4 8 4z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M20 20H4a1 1 0 1 1 0-2h16a1 1 0 1 1 0 2z" />
|
||||
<path d="M20 20a.996.996 0 0 1-.967-.744C18.986 19.095 18.009 16 12 16c-6.038 0-6.996 3.125-7.034 3.258a1.02 1.02 0 0 1-.549.645 1 1 0 0 1-.841.003c-1.135-.53-3.13-2.281-2.556-5.104C1.783 11.035 5.788 4 12 4c6.21 0 10.215 7.035 10.98 10.801.573 2.823-1.422 4.574-2.557 5.104A.975.975 0 0 1 20 20zM12 6c-4.994 0-8.39 6.092-9.02 9.198-.222 1.09.201 1.84.646 2.303C4.551 16.09 6.798 14 12 14c5.2 0 7.447 2.088 8.372 3.499.447-.466.868-1.215.648-2.3C20.389 12.092 16.992 6 12 6z" />
|
||||
<path d="m15.03 13.242-.572-2.286-1.751 1.751a.999.999 0 0 1-1.414 0l-1.751-1.751-.572 2.286-1.94-.484 1-4a1 1 0 0 1 1.677-.465L12 10.586l2.293-2.293a.998.998 0 0 1 1.677.465l1 4-1.94.484z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M20 19s2.568-1.202 2-4c-.719-3.54-4.405-10-10-10S2.718 11.46 2 15c-.568 2.798 2 4 2 4s1.006-4 8-4 8 4 8 4z" opacity=".3"/><path d="M20 20H4a1 1 0 1 1 0-2h16a1 1 0 1 1 0 2z"/><path d="M20 20a.996.996 0 0 1-.967-.744C18.986 19.095 18.009 16 12 16c-6.038 0-6.996 3.125-7.034 3.258a1.02 1.02 0 0 1-.549.645 1 1 0 0 1-.841.003c-1.135-.53-3.13-2.281-2.556-5.104C1.783 11.035 5.788 4 12 4c6.21 0 10.215 7.035 10.98 10.801.573 2.823-1.422 4.574-2.557 5.104A.975.975 0 0 1 20 20zM12 6c-4.994 0-8.39 6.092-9.02 9.198-.222 1.09.201 1.84.646 2.303C4.551 16.09 6.798 14 12 14c5.2 0 7.447 2.088 8.372 3.499.447-.466.868-1.215.648-2.3C20.389 12.092 16.992 6 12 6z"/><path d="m15.03 13.242-.572-2.286-1.751 1.751a.999.999 0 0 1-1.414 0l-1.751-1.751-.572 2.286-1.94-.484 1-4a1 1 0 0 1 1.677-.465L12 10.586l2.293-2.293a.998.998 0 0 1 1.677.465l1 4-1.94.484z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,24 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar20(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M21 13c0-1.6-1.2-3.3-3-4 0-2.8-2.1-6-6-6S6 6.2 6 9c-1.8.7-3 2.4-3 4 0 2.7 2.6 4.4 5.2 4.9.5 1.2 2 2.1 3.8 2.1s3.3-.9 3.8-2.1c2.6-.5 5.2-2.2 5.2-4.9z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M12 21c-2.8 0-5-1.8-5-4h2c0 1.1 1.3 2 3 2s3-.9 3-2h2c0 2.2-2.2 4-5 4z" />
|
||||
<path d="m15.1 19-.1-2c2.1-.1 5.1-1.5 5.1-4 0-1.2-1-2.5-2.4-3.1l-.7-.2V9c0-2.1-1.6-5-5-5S7 6.9 7 9v.7l-.6.2C5 10.5 4 11.8 4 13c0 2.5 3 3.9 5.1 4L9 19c-3.4-.2-7-2.4-7-6 0-1.9 1.2-3.7 3-4.7C5.3 5.1 7.9 2 12 2s6.7 3.1 7 6.3c1.8 1 3 2.8 3 4.7 0 3.6-3.6 5.8-6.9 6z" />
|
||||
<path d="M17 13h-2c0-1.1-1.4-2-3-2s-3 .9-3 2H7c0-2.2 2.2-4 5-4s5 1.8 5 4zm-7 4v-2c2.5 0 3.9-.8 4-1.1l2 .1c0 2.1-3.1 3-6 3z" />
|
||||
<path d="M19 7H5l-2 4h18l-2-4zM9 10c-1.1 0-2-.4-2-1s.9-1 2-1 2 .4 2 1-.9 1-2 1zm6 0c-1.1 0-2-.4-2-1s.9-1 2-1 2 .4 2 1-.9 1-2 1z" />
|
||||
<path d="m21.2 4-.8.5c-1.4.8-1.9 2.5-1.1 3.9l.5.6.7-.4c1.4-.8 1.9-2.5 1.1-3.9l-.4-.7z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M21 13c0-1.6-1.2-3.3-3-4 0-2.8-2.1-6-6-6S6 6.2 6 9c-1.8.7-3 2.4-3 4 0 2.7 2.6 4.4 5.2 4.9.5 1.2 2 2.1 3.8 2.1s3.3-.9 3.8-2.1c2.6-.5 5.2-2.2 5.2-4.9z" opacity=".3"/><path d="M12 21c-2.8 0-5-1.8-5-4h2c0 1.1 1.3 2 3 2s3-.9 3-2h2c0 2.2-2.2 4-5 4z"/><path d="m15.1 19-.1-2c2.1-.1 5.1-1.5 5.1-4 0-1.2-1-2.5-2.4-3.1l-.7-.2V9c0-2.1-1.6-5-5-5S7 6.9 7 9v.7l-.6.2C5 10.5 4 11.8 4 13c0 2.5 3 3.9 5.1 4L9 19c-3.4-.2-7-2.4-7-6 0-1.9 1.2-3.7 3-4.7C5.3 5.1 7.9 2 12 2s6.7 3.1 7 6.3c1.8 1 3 2.8 3 4.7 0 3.6-3.6 5.8-6.9 6z"/><path d="M17 13h-2c0-1.1-1.4-2-3-2s-3 .9-3 2H7c0-2.2 2.2-4 5-4s5 1.8 5 4zm-7 4v-2c2.5 0 3.9-.8 4-1.1l2 .1c0 2.1-3.1 3-6 3z"/><path d="M19 7H5l-2 4h18l-2-4zM9 10c-1.1 0-2-.4-2-1s.9-1 2-1 2 .4 2 1-.9 1-2 1zm6 0c-1.1 0-2-.4-2-1s.9-1 2-1 2 .4 2 1-.9 1-2 1z"/><path d="m21.2 4-.8.5c-1.4.8-1.9 2.5-1.1 3.9l.5.6.7-.4c1.4-.8 1.9-2.5 1.1-3.9l-.4-.7z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,20 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar21(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M11 3a8 8 0 1 0 0 16 8 8 0 1 0 0-16Z" opacity=".3" />
|
||||
<path d="M18.3 20.8 16 18.5c-1 .8-2.4 1.4-5 1.5-2.3.1-4.6-.8-6.3-2.5C3 15.8 2 13.4 2 11c0-5 4-9 9-9 4.3 0 8.1 3.1 8.9 7.2l-2 .4C17.3 6.4 14.3 4 11 4c-3.9 0-7 3.1-7 7 0 1.9.8 3.7 2.1 5.1 1.3 1.3 3 2 4.8 1.9 2.7-.1 3.6-.8 4.3-1.6l.7-.8 3.8 3.7-1.4 1.5z" />
|
||||
<path d="m18.303 13.717 1.414-1.414 1.98 1.98-1.414 1.414zM18.16 4.485a3.1 1.9-74.342 1 0 3.659 1.025 3.1 1.9-74.342 1 0-3.66-1.025Z" />
|
||||
<path d="M6 8a1 1.5 0 1 0 0 3 1 1.5 0 1 0 0-3zm3-2a1 1.5 0 1 0 0 3 1 1.5 0 1 0 0-3zm0 9c-1.7 0-3-.7-3-1.5S7.3 12 9 12v3zm2-4h3c0 3.1-1.3 5-3 5v-5zm2.9-7.4c-.5-.2-.9-.3-1.4-.4-.5-.1-1-.2-1.5-.2-1.1 0-2.2.2-3.1.6C8.2 5 9.4 6 10.9 6c.4 0 .7-.1 1.1-.2.1 2.3 1.7 4.2 3.6 4.2 1.2 0 2.2-.7 2.9-1.8-.8-2.1-2.5-3.8-4.6-4.6zM3.3 13c-1.3 5.5 2 9 4.2 9 1.6 0 3.1-1.1 3.6-2.8-3.2.1-6.6-3.6-7.8-6.2z" />
|
||||
<path d="M18 14h-.5c-1.5-.3-2.5-1.5-2.5-3 0-1.7 1.3-3 3-3h.5c1.5.3 2.5 1.5 2.5 3 0 1.7-1.3 3-3 3zm-.2-2h.2c.6 0 1-.4 1-1 0-.5-.3-.9-.8-1H18c-.6 0-1 .4-1 1 0 .5.3.9.8 1z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11 3a8 8 0 1 0 0 16 8 8 0 1 0 0-16Z" opacity=".3"/><path d="M18.3 20.8 16 18.5c-1 .8-2.4 1.4-5 1.5-2.3.1-4.6-.8-6.3-2.5C3 15.8 2 13.4 2 11c0-5 4-9 9-9 4.3 0 8.1 3.1 8.9 7.2l-2 .4C17.3 6.4 14.3 4 11 4c-3.9 0-7 3.1-7 7 0 1.9.8 3.7 2.1 5.1 1.3 1.3 3 2 4.8 1.9 2.7-.1 3.6-.8 4.3-1.6l.7-.8 3.8 3.7-1.4 1.5z"/><path d="m18.303 13.717 1.414-1.414 1.98 1.98-1.414 1.414zM18.16 4.485a3.1 1.9-74.342 1 0 3.659 1.025 3.1 1.9-74.342 1 0-3.66-1.025Z"/><path d="M6 8a1 1.5 0 1 0 0 3 1 1.5 0 1 0 0-3zm3-2a1 1.5 0 1 0 0 3 1 1.5 0 1 0 0-3zm0 9c-1.7 0-3-.7-3-1.5S7.3 12 9 12v3zm2-4h3c0 3.1-1.3 5-3 5v-5zm2.9-7.4c-.5-.2-.9-.3-1.4-.4-.5-.1-1-.2-1.5-.2-1.1 0-2.2.2-3.1.6C8.2 5 9.4 6 10.9 6c.4 0 .7-.1 1.1-.2.1 2.3 1.7 4.2 3.6 4.2 1.2 0 2.2-.7 2.9-1.8-.8-2.1-2.5-3.8-4.6-4.6zM3.3 13c-1.3 5.5 2 9 4.2 9 1.6 0 3.1-1.1 3.6-2.8-3.2.1-6.6-3.6-7.8-6.2z"/><path d="M18 14h-.5c-1.5-.3-2.5-1.5-2.5-3 0-1.7 1.3-3 3-3h.5c1.5.3 2.5 1.5 2.5 3 0 1.7-1.3 3-3 3zm-.2-2h.2c.6 0 1-.4 1-1 0-.5-.3-.9-.8-1H18c-.6 0-1 .4-1 1 0 .5.3.9.8 1z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,21 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar22(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M17 14c-1.486 1.33-1.872 8-5 8s-2.966-5.888-5-8c-1.173-1.017-3-1.966-3-4 0-.939.905-2.531 2-3 0 0 .916-5 6-5s6 5 6 5c1.017.391 2 2.061 2 3 0 2.112-1.905 2.983-3 4z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M12 23c-2.616 0-3.472-2.656-4.226-5-.417-1.296-.849-2.636-1.495-3.307-.14-.116-.368-.292-.602-.473C4.548 13.344 3 12.144 3 10c0-1.176.882-2.854 2.126-3.661C5.691 4.257 7.671 1 12 1c4.325 0 6.306 3.251 6.872 5.333C20.063 7.111 21 8.848 21 10c0 2.135-1.486 3.283-2.572 4.122-.267.207-.525.405-.747.61l-.014.013c-.346.31-.763 1.575-1.098 2.592C15.739 19.86 14.705 23 12 23zm0-20C7.798 3 7.015 7.01 6.983 7.181l-.096.527-.492.211C5.676 8.228 5 9.442 5 10c0 1.085.719 1.722 1.903 2.64.264.204.52.403.752.604 1.032 1.066 1.536 2.631 2.022 4.143C10.381 19.569 10.922 21 12 21c1.258 0 2.041-2.378 2.67-4.288.491-1.492.916-2.782 1.655-3.45.262-.242.565-.479.88-.722C18.322 11.677 19 11.075 19 10c0-.573-.772-1.841-1.358-2.066l-.524-.201-.101-.552C16.984 7.014 16.166 3 12 3z" />
|
||||
<path d="M12.899 12.129c.469 0-.626-2.112-.939-2.112-.235 0-1.33 2.112-.939 2.112.469 0 .704-.469.939-.469s.627.469.939.469zM8.001 11a1 1 0 0 1-.453-1.892C7.582 9.09 9 8.333 9 7a1 1 0 1 1 2 0c0 2.588-2.448 3.843-2.553 3.895a1.003 1.003 0 0 1-.446.105zM15.997 11a.997.997 0 0 1-.444-.105C15.448 10.843 13 9.588 13 7a1 1 0 1 1 2 0c0 1.342 1.438 2.101 1.453 2.108A1.001 1.001 0 0 1 15.997 11zM12 20a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M17 14c-1.486 1.33-1.872 8-5 8s-2.966-5.888-5-8c-1.173-1.017-3-1.966-3-4 0-.939.905-2.531 2-3 0 0 .916-5 6-5s6 5 6 5c1.017.391 2 2.061 2 3 0 2.112-1.905 2.983-3 4z" opacity=".3"/><path d="M12 23c-2.616 0-3.472-2.656-4.226-5-.417-1.296-.849-2.636-1.495-3.307-.14-.116-.368-.292-.602-.473C4.548 13.344 3 12.144 3 10c0-1.176.882-2.854 2.126-3.661C5.691 4.257 7.671 1 12 1c4.325 0 6.306 3.251 6.872 5.333C20.063 7.111 21 8.848 21 10c0 2.135-1.486 3.283-2.572 4.122-.267.207-.525.405-.747.61l-.014.013c-.346.31-.763 1.575-1.098 2.592C15.739 19.86 14.705 23 12 23zm0-20C7.798 3 7.015 7.01 6.983 7.181l-.096.527-.492.211C5.676 8.228 5 9.442 5 10c0 1.085.719 1.722 1.903 2.64.264.204.52.403.752.604 1.032 1.066 1.536 2.631 2.022 4.143C10.381 19.569 10.922 21 12 21c1.258 0 2.041-2.378 2.67-4.288.491-1.492.916-2.782 1.655-3.45.262-.242.565-.479.88-.722C18.322 11.677 19 11.075 19 10c0-.573-.772-1.841-1.358-2.066l-.524-.201-.101-.552C16.984 7.014 16.166 3 12 3z"/><path d="M12.899 12.129c.469 0-.626-2.112-.939-2.112-.235 0-1.33 2.112-.939 2.112.469 0 .704-.469.939-.469s.627.469.939.469zM8.001 11a1 1 0 0 1-.453-1.892C7.582 9.09 9 8.333 9 7a1 1 0 1 1 2 0c0 2.588-2.448 3.843-2.553 3.895a1.003 1.003 0 0 1-.446.105zM15.997 11a.997.997 0 0 1-.444-.105C15.448 10.843 13 9.588 13 7a1 1 0 1 1 2 0c0 1.342 1.438 2.101 1.453 2.108A1.001 1.001 0 0 1 15.997 11zM12 20a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,22 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar23(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M21 13.695V8a6 6 0 0 0-6-6H9a6 6 0 0 0-6 6v5.977c-.546.314-.852.918-.852 1.613 0 .544.227 1.033.588 1.37L3.777 18l.521.005a.965.965 0 0 0-.254 1.275l.514.844C5.437 21.664 6.327 22 7.735 22H9a2 2 0 0 0 2-2h2a2 2 0 0 0 2 2h1.047c1.457 0 2.378-.348 3.288-1.943l.535-.876c.234-.384.17-.868-.103-1.181l.285.003 1.221-1.219c.374-.349.609-.855.609-1.419 0-.719-.317-1.345-.882-1.67z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M7.267 12.807 11 10H5l.778 2.341a.96.96 0 0 0 1.489.466z" />
|
||||
<path d="M22.946 14.885c0-.912-.345-1.729-.946-2.287V7.632c0-.26-.032-.431-.081-.636C21.43 3.612 18.518 1 15 1H9C5.482 1 2.57 3.612 2.08 6.996c-.048.144-.08.432-.08.592v5.01c-.601.558-.946 1.375-.946 2.287 0 .855.354 1.677.945 2.229l1.027 1.026a2.09 2.09 0 0 0 .278 1.361l.556.911C5.085 22.56 6.503 23 8.255 23H9a3.006 3.006 0 0 0 2.829-2h.343a3.006 3.006 0 0 0 2.829 2h.743c1.751 0 3.169-.44 4.379-2.563l.574-.939c.248-.407.337-.888.277-1.359l1.003-1.002a3.092 3.092 0 0 0 .969-2.252zM9 3h6a5.003 5.003 0 0 1 4.576 3H4.424A5.003 5.003 0 0 1 9 3zM4 8h16v5.095a1 1 0 0 0 .501.866c.283.163.445.5.445.924 0 .304-.122.592-.359.814l-.816.816-5.992-3.082a3.945 3.945 0 0 0-3.559 0l-5.99 3.082-.84-.839a1.082 1.082 0 0 1-.335-.791c0-.424.162-.761.445-.924a1 1 0 0 0 .5-.866V8zm14.4 11.422C17.625 20.78 16.982 21 15.743 21H15c-.551 0-1-.448-1-1a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1c0 .552-.449 1-1 1h-.745c-1.239 0-1.882-.22-2.672-1.604l-.571-.936c-.022-.037-.008-.089-.009-.093l6.132-3.155a1.9 1.9 0 0 1 1.729 0l6.125 3.245-.589.965z" />
|
||||
<path d="M18.222 12.341 19 10h-6l3.733 2.807a.96.96 0 0 0 1.489-.466z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M21 13.695V8a6 6 0 0 0-6-6H9a6 6 0 0 0-6 6v5.977c-.546.314-.852.918-.852 1.613 0 .544.227 1.033.588 1.37L3.777 18l.521.005a.965.965 0 0 0-.254 1.275l.514.844C5.437 21.664 6.327 22 7.735 22H9a2 2 0 0 0 2-2h2a2 2 0 0 0 2 2h1.047c1.457 0 2.378-.348 3.288-1.943l.535-.876c.234-.384.17-.868-.103-1.181l.285.003 1.221-1.219c.374-.349.609-.855.609-1.419 0-.719-.317-1.345-.882-1.67z" opacity=".3"/><path d="M7.267 12.807 11 10H5l.778 2.341a.96.96 0 0 0 1.489.466z"/><path d="M22.946 14.885c0-.912-.345-1.729-.946-2.287V7.632c0-.26-.032-.431-.081-.636C21.43 3.612 18.518 1 15 1H9C5.482 1 2.57 3.612 2.08 6.996c-.048.144-.08.432-.08.592v5.01c-.601.558-.946 1.375-.946 2.287 0 .855.354 1.677.945 2.229l1.027 1.026a2.09 2.09 0 0 0 .278 1.361l.556.911C5.085 22.56 6.503 23 8.255 23H9a3.006 3.006 0 0 0 2.829-2h.343a3.006 3.006 0 0 0 2.829 2h.743c1.751 0 3.169-.44 4.379-2.563l.574-.939c.248-.407.337-.888.277-1.359l1.003-1.002a3.092 3.092 0 0 0 .969-2.252zM9 3h6a5.003 5.003 0 0 1 4.576 3H4.424A5.003 5.003 0 0 1 9 3zM4 8h16v5.095a1 1 0 0 0 .501.866c.283.163.445.5.445.924 0 .304-.122.592-.359.814l-.816.816-5.992-3.082a3.945 3.945 0 0 0-3.559 0l-5.99 3.082-.84-.839a1.082 1.082 0 0 1-.335-.791c0-.424.162-.761.445-.924a1 1 0 0 0 .5-.866V8zm14.4 11.422C17.625 20.78 16.982 21 15.743 21H15c-.551 0-1-.448-1-1a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1c0 .552-.449 1-1 1h-.745c-1.239 0-1.882-.22-2.672-1.604l-.571-.936c-.022-.037-.008-.089-.009-.093l6.132-3.155a1.9 1.9 0 0 1 1.729 0l6.125 3.245-.589.965z"/><path d="M18.222 12.341 19 10h-6l3.733 2.807a.96.96 0 0 0 1.489-.466z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,21 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar3(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M18.92 9c-.486-3.391-3.394-6-6.92-6S5.566 5.609 5.08 9h13.84z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M17 8H7c-1.654 0-3 1.346-3 3v1h2v-1c0-.551.449-1 1-1h10c.551 0 1 .449 1 1v1h2v-1c0-1.654-1.346-3-3-3z" />
|
||||
<path d="M20 11.767V10c0-4.411-3.589-8-8-8s-8 3.589-8 8v1.767c-.628.562-1 1.373-1 2.233 0 1.276.823 2.397 1.992 2.816C6.396 20.028 9.043 22 12 22s5.604-1.972 7.008-5.184A3.008 3.008 0 0 0 21 14c0-.86-.372-1.671-1-2.233zm-1.863 3.214-.585.081-.211.551C16.302 18.319 14.256 20 12 20s-4.302-1.681-5.34-4.386l-.211-.551-.585-.081A.999.999 0 0 1 5 14c0-.36.186-.682.498-.861L6 12.851V10c0-3.309 2.691-6 6-6s6 2.691 6 6v2.851l.502.288A.982.982 0 0 1 19 14a.997.997 0 0 1-.863.981z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M18.92 9c-.486-3.391-3.394-6-6.92-6S5.566 5.609 5.08 9h13.84z" opacity=".3"/><path d="M17 8H7c-1.654 0-3 1.346-3 3v1h2v-1c0-.551.449-1 1-1h10c.551 0 1 .449 1 1v1h2v-1c0-1.654-1.346-3-3-3z"/><path d="M20 11.767V10c0-4.411-3.589-8-8-8s-8 3.589-8 8v1.767c-.628.562-1 1.373-1 2.233 0 1.276.823 2.397 1.992 2.816C6.396 20.028 9.043 22 12 22s5.604-1.972 7.008-5.184A3.008 3.008 0 0 0 21 14c0-.86-.372-1.671-1-2.233zm-1.863 3.214-.585.081-.211.551C16.302 18.319 14.256 20 12 20s-4.302-1.681-5.34-4.386l-.211-.551-.585-.081A.999.999 0 0 1 5 14c0-.36.186-.682.498-.861L6 12.851V10c0-3.309 2.691-6 6-6s6 2.691 6 6v2.851l.502.288A.982.982 0 0 1 19 14a.997.997 0 0 1-.863.981z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,20 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar4(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M12.155 9.988c-3.715 0-7.423-.692-10.559-2.073l.807-1.83c5.68 2.502 13.401 2.554 19.212.134l.77 1.846c-3.08 1.284-6.658 1.923-10.23 1.923z" />
|
||||
<path d="M19 8h-2V5H7v3H5V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v4zM8.333 13h-.322C7.452 13 7 12.491 7 11.863v-.726C7 10.509 7.452 10 8.011 10H9.99c.558 0 1.01.509 1.01 1.137C11 12.166 9.667 13 8.333 13zM15.583 13h.313c.541 0 .979-.509.979-1.137v-.726c0-.628-.438-1.137-.979-1.137h-1.917c-.541 0-.979.509-.979 1.137C13 12.166 14.292 13 15.583 13z" />
|
||||
<path d="M13 22h-2c-1.458 0-3.177-1.295-3.868-2.504l-1.98-3.956c-.699-.891-2.552-3.51-1.712-5.259C3.722 9.697 4.394 9 6 9v2c-.56 0-.746.125-.757.148-.198.411.563 2.01 1.538 3.227l.113.178 2 4C9.268 19.203 10.403 20 11 20h2c.597 0 1.732-.797 2.132-1.496l2.087-4.128c.973-1.221 1.735-2.819 1.538-3.228C18.746 11.125 18.56 11 18 11V9c1.606 0 2.278.697 2.56 1.281.841 1.749-1.013 4.368-1.712 5.259l-1.953 3.907C16.177 20.705 14.458 22 13 22z" />
|
||||
<path d="M15 21H9a1 1 0 0 1-1-1v-2c0-1.227 1.425-3 4-3s4 1.773 4 3v2a1 1 0 0 1-1 1zm-5.001-2H14v-1c-.037-.2-.612-1-2-1s-1.963.8-2.002 1.025l.001.975z" />
|
||||
<path opacity=".3" d="M6 4v4l6 1 6-1V4z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M12.155 9.988c-3.715 0-7.423-.692-10.559-2.073l.807-1.83c5.68 2.502 13.401 2.554 19.212.134l.77 1.846c-3.08 1.284-6.658 1.923-10.23 1.923z"/><path d="M19 8h-2V5H7v3H5V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v4zM8.333 13h-.322C7.452 13 7 12.491 7 11.863v-.726C7 10.509 7.452 10 8.011 10H9.99c.558 0 1.01.509 1.01 1.137C11 12.166 9.667 13 8.333 13zM15.583 13h.313c.541 0 .979-.509.979-1.137v-.726c0-.628-.438-1.137-.979-1.137h-1.917c-.541 0-.979.509-.979 1.137C13 12.166 14.292 13 15.583 13z"/><path d="M13 22h-2c-1.458 0-3.177-1.295-3.868-2.504l-1.98-3.956c-.699-.891-2.552-3.51-1.712-5.259C3.722 9.697 4.394 9 6 9v2c-.56 0-.746.125-.757.148-.198.411.563 2.01 1.538 3.227l.113.178 2 4C9.268 19.203 10.403 20 11 20h2c.597 0 1.732-.797 2.132-1.496l2.087-4.128c.973-1.221 1.735-2.819 1.538-3.228C18.746 11.125 18.56 11 18 11V9c1.606 0 2.278.697 2.56 1.281.841 1.749-1.013 4.368-1.712 5.259l-1.953 3.907C16.177 20.705 14.458 22 13 22z"/><path d="M15 21H9a1 1 0 0 1-1-1v-2c0-1.227 1.425-3 4-3s4 1.773 4 3v2a1 1 0 0 1-1 1zm-5.001-2H14v-1c-.037-.2-.612-1-2-1s-1.963.8-2.002 1.025l.001.975z"/><path opacity=".3" d="M6 4v4l6 1 6-1V4z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,23 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar5(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M12 22h-.2C5.6 20.6 3 14.6 3 12.4V4.2l.5-.3C3.6 3.8 6.5 2 12 2s8.4 1.8 8.5 1.9l.5.3v8.3c0 2.2-2.6 8.2-8.8 9.5H12zM5 5.3v7.1c0 1.4 2.1 6.3 7 7.5 4.9-1.2 7-6.1 7-7.5V5.3C18 4.9 15.7 4 12 4s-6 .9-7 1.3z" />
|
||||
<path
|
||||
d="M12 3c5.3 0 8 1.7 8 1.7v7.7c0 1.9-2.5 7.3-8 8.6-5.5-1.2-8-6.7-8-8.6V4.7S6.8 3 12 3"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M7 13c.5.2.9.4 1.4.7.5.3.7.4 1.1.4h.5c.2 0 .2-.1.3-.1.2-.1.5-.4.6-.6l.3-.4h1.6l.3.4c.1.2.4.5.6.6.1.1.2.1.3.1h.5c.4-.1.6-.1 1.1-.4.4-.2.9-.5 1.4-.7-.2.5-.4.9-.7 1.4-.2.4-.7 1-1.2 1.2l-.9.3c-.3 0-.8 0-1.1-.1-.7-.2-1.2-.6-1.6-1.2l.8.4h-.6l.8-.4c-.2.3-.4.5-.7.7-.3.2-.6.4-.9.5-.3.1-.8.2-1.1.1-.3 0-.6-.1-.9-.3-.6-.3-1-.8-1.2-1.2-.3-.5-.5-.9-.7-1.4zm8-4c-.8 0-1.5.4-2 1 .5.6 1.2 1 2 1s1.5-.4 2-1c-.5-.6-1.2-1-2-1zM9 9c-.8 0-1.5.4-2 1 .5.6 1.2 1 2 1s1.5-.4 2-1c-.5-.6-1.2-1-2-1zm2 9h2v2.8h-2zm3-12a1 1 0 1 0 0 2 1 1 0 1 0 0-2z" />
|
||||
<path d="M13.3 6.3c.4-.3.8-.5 1.3-.6.4-.2.9-.3 1.4-.2.5.1.9.3 1.2.6.3.3.6.6.8.9-.3-.2-.7-.4-1-.5-.3-.1-.7-.1-1 0-.3.1-.5.3-.7.5-.2.2-.5.5-.6.7l-1.4-1.4zM10 6a1 1 0 1 0 0 2 1 1 0 1 0 0-2z" />
|
||||
<path d="M9.3 7.7c-.1-.2-.4-.5-.6-.7-.2-.2-.4-.4-.7-.5-.3-.1-.6-.1-1 0-.3.1-.7.3-1 .5.2-.3.5-.6.8-.9.3-.3.7-.5 1.2-.6.5-.1 1 0 1.4.2.4.2.8.3 1.3.6L9.3 7.7z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M12 22h-.2C5.6 20.6 3 14.6 3 12.4V4.2l.5-.3C3.6 3.8 6.5 2 12 2s8.4 1.8 8.5 1.9l.5.3v8.3c0 2.2-2.6 8.2-8.8 9.5H12zM5 5.3v7.1c0 1.4 2.1 6.3 7 7.5 4.9-1.2 7-6.1 7-7.5V5.3C18 4.9 15.7 4 12 4s-6 .9-7 1.3z"/><path d="M12 3c5.3 0 8 1.7 8 1.7v7.7c0 1.9-2.5 7.3-8 8.6-5.5-1.2-8-6.7-8-8.6V4.7S6.8 3 12 3" opacity=".3"/><path d="M7 13c.5.2.9.4 1.4.7.5.3.7.4 1.1.4h.5c.2 0 .2-.1.3-.1.2-.1.5-.4.6-.6l.3-.4h1.6l.3.4c.1.2.4.5.6.6.1.1.2.1.3.1h.5c.4-.1.6-.1 1.1-.4.4-.2.9-.5 1.4-.7-.2.5-.4.9-.7 1.4-.2.4-.7 1-1.2 1.2l-.9.3c-.3 0-.8 0-1.1-.1-.7-.2-1.2-.6-1.6-1.2l.8.4h-.6l.8-.4c-.2.3-.4.5-.7.7-.3.2-.6.4-.9.5-.3.1-.8.2-1.1.1-.3 0-.6-.1-.9-.3-.6-.3-1-.8-1.2-1.2-.3-.5-.5-.9-.7-1.4zm8-4c-.8 0-1.5.4-2 1 .5.6 1.2 1 2 1s1.5-.4 2-1c-.5-.6-1.2-1-2-1zM9 9c-.8 0-1.5.4-2 1 .5.6 1.2 1 2 1s1.5-.4 2-1c-.5-.6-1.2-1-2-1zm2 9h2v2.8h-2zm3-12a1 1 0 1 0 0 2 1 1 0 1 0 0-2z"/><path d="M13.3 6.3c.4-.3.8-.5 1.3-.6.4-.2.9-.3 1.4-.2.5.1.9.3 1.2.6.3.3.6.6.8.9-.3-.2-.7-.4-1-.5-.3-.1-.7-.1-1 0-.3.1-.5.3-.7.5-.2.2-.5.5-.6.7l-1.4-1.4zM10 6a1 1 0 1 0 0 2 1 1 0 1 0 0-2z"/><path d="M9.3 7.7c-.1-.2-.4-.5-.6-.7-.2-.2-.4-.4-.7-.5-.3-.1-.6-.1-1 0-.3.1-.7.3-1 .5.2-.3.5-.6.8-.9.3-.3.7-.5 1.2-.6.5-.1 1 0 1.4.2.4.2.8.3 1.3.6L9.3 7.7z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,18 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar6(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M12 22c-4.4 0-8-3.6-8-8v-2.3h2V14c0 3.3 2.7 6 6 6s6-2.7 6-6v-2.3h2V14c0 4.4-3.6 8-8 8z" />
|
||||
<path d="M15 20h7C22 5 16 2 12 2S2 5 2 20h7s-3-2-3-6v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 4-3 6-3 6zm1-11H8c-1 0-2 .4-2.7 1 1.8-5.3 5-6 6.7-6s4.9.8 6.7 6C18 9.4 17 9 16 9z" />
|
||||
<path d="M19 10H5c0-3.9 3.1-7 7-7s7 3.1 7 7z" opacity=".3" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M12 22c-4.4 0-8-3.6-8-8v-2.3h2V14c0 3.3 2.7 6 6 6s6-2.7 6-6v-2.3h2V14c0 4.4-3.6 8-8 8z"/><path d="M15 20h7C22 5 16 2 12 2S2 5 2 20h7s-3-2-3-6v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 4-3 6-3 6zm1-11H8c-1 0-2 .4-2.7 1 1.8-5.3 5-6 6.7-6s4.9.8 6.7 6C18 9.4 17 9 16 9z"/><path d="M19 10H5c0-3.9 3.1-7 7-7s7 3.1 7 7z" opacity=".3"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,45 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar7(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<circle cx="5" cy="8" r="2" opacity=".35" />
|
||||
<circle cx="19" cy="8" r="2" opacity=".35" />
|
||||
<path opacity=".35" d="M10 3h4v4h-4z" />
|
||||
<path
|
||||
d="M17.986 12.27c.004-.09.014-.179.014-.27 0-2.612-1.67-5.176-4-6h-4c-2.33.824-4 3.388-4 6 0 .091.01.18.014.27A1.99 1.99 0 0 0 5 14c0 2 2 2.71 2 2.71v1.79c0 1.381 2.239 2.5 5 2.5s5-1.119 5-2.5v-1.793S19 16 19 14a1.99 1.99 0 0 0-1.014-1.73z"
|
||||
opacity=".35"
|
||||
/>
|
||||
<path d="M12 22c-3.421 0-6-1.505-6-3.5v-1.173C5.209 16.858 4 15.84 4 14c0-.855.373-1.665 1.004-2.229.094-2.983 2.026-5.782 4.663-6.714L9.828 5h4.344l.161.057c2.637.933 4.569 3.731 4.663 6.715A2.994 2.994 0 0 1 20 14c0 1.84-1.209 2.857-2 3.325V18.5c0 1.995-2.579 3.5-6 3.5zM10.182 7C8.357 7.73 7 9.848 7 12l.039.835-.528.303A.985.985 0 0 0 6 14c0 1.253 1.288 1.75 1.343 1.771l.648.243L8 18.5c0 .529 1.519 1.5 4 1.5s4-.971 4-1.5V16l.667-.235C16.714 15.747 18 15.252 18 14c0-.357-.19-.68-.511-.862l-.528-.303L17 12c0-2.152-1.357-4.27-3.182-5h-3.636z" />
|
||||
<circle
|
||||
cx="5"
|
||||
cy="8"
|
||||
r="2"
|
||||
fill="none"
|
||||
stroke="#27A2A8"
|
||||
strokeMiterlimit="10"
|
||||
strokeWidth="2"
|
||||
/>
|
||||
<circle
|
||||
cx="19"
|
||||
cy="8"
|
||||
r="2"
|
||||
fill="none"
|
||||
stroke="#27A2A8"
|
||||
strokeMiterlimit="10"
|
||||
strokeWidth="2"
|
||||
/>
|
||||
<path d="M8 5h8v2H8z" />
|
||||
<path d="M15 7h-2V4h-2v3H9V2h6z" />
|
||||
<ellipse cx="12" cy="13" rx="2" ry="1" />
|
||||
<path d="M9.807 11.122a.488.488 0 0 1-.303.878.497.497 0 0 1-.496-.496c0-.156.076-.289.189-.38-.69.051-1.15.246-1.185.262-.004.039-.012.075-.012.114a1.5 1.5 0 0 0 3 0c0-.038-.008-.074-.011-.112a4.087 4.087 0 0 0-1.182-.266zM14.193 11.122a.488.488 0 0 0 .304.878.496.496 0 0 0 .496-.496.486.486 0 0 0-.189-.38c.69.051 1.15.246 1.185.262.003.039.011.075.011.114a1.5 1.5 0 0 1-3 0c0-.038.008-.074.011-.112a4.087 4.087 0 0 1 1.182-.266zM8 9v1h3s-1-1-3-1zM16 9v1h-3s1-1 3-1zM8 16s.016 1.234 1 1.759V17h1v1h1v-1h2v1h1v-1h1v.759c.984-.525 1-1.759 1-1.759H8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><circle cx="5" cy="8" r="2" opacity=".35"/><circle cx="19" cy="8" r="2" opacity=".35"/><path opacity=".35" d="M10 3h4v4h-4z"/><path d="M17.986 12.27c.004-.09.014-.179.014-.27 0-2.612-1.67-5.176-4-6h-4c-2.33.824-4 3.388-4 6 0 .091.01.18.014.27A1.99 1.99 0 0 0 5 14c0 2 2 2.71 2 2.71v1.79c0 1.381 2.239 2.5 5 2.5s5-1.119 5-2.5v-1.793S19 16 19 14a1.99 1.99 0 0 0-1.014-1.73z" opacity=".35"/><path d="M12 22c-3.421 0-6-1.505-6-3.5v-1.173C5.209 16.858 4 15.84 4 14c0-.855.373-1.665 1.004-2.229.094-2.983 2.026-5.782 4.663-6.714L9.828 5h4.344l.161.057c2.637.933 4.569 3.731 4.663 6.715A2.994 2.994 0 0 1 20 14c0 1.84-1.209 2.857-2 3.325V18.5c0 1.995-2.579 3.5-6 3.5zM10.182 7C8.357 7.73 7 9.848 7 12l.039.835-.528.303A.985.985 0 0 0 6 14c0 1.253 1.288 1.75 1.343 1.771l.648.243L8 18.5c0 .529 1.519 1.5 4 1.5s4-.971 4-1.5V16l.667-.235C16.714 15.747 18 15.252 18 14c0-.357-.19-.68-.511-.862l-.528-.303L17 12c0-2.152-1.357-4.27-3.182-5h-3.636z"/><circle cx="5" cy="8" r="2" fill="none" stroke="#27A2A8" strokeMiterlimit="10" strokeWidth="2"/><circle cx="19" cy="8" r="2" fill="none" stroke="#27A2A8" strokeMiterlimit="10" strokeWidth="2"/><path d="M8 5h8v2H8z"/><path d="M15 7h-2V4h-2v3H9V2h6z"/><ellipse cx="12" cy="13" rx="2" ry="1"/><path d="M9.807 11.122a.488.488 0 0 1-.303.878.497.497 0 0 1-.496-.496c0-.156.076-.289.189-.38-.69.051-1.15.246-1.185.262-.004.039-.012.075-.012.114a1.5 1.5 0 0 0 3 0c0-.038-.008-.074-.011-.112a4.087 4.087 0 0 0-1.182-.266zM14.193 11.122a.488.488 0 0 0 .304.878.496.496 0 0 0 .496-.496.486.486 0 0 0-.189-.38c.69.051 1.15.246 1.185.262.003.039.011.075.011.114a1.5 1.5 0 0 1-3 0c0-.038.008-.074.011-.112a4.087 4.087 0 0 1 1.182-.266zM8 9v1h3s-1-1-3-1zM16 9v1h-3s1-1 3-1zM8 16s.016 1.234 1 1.759V17h1v1h1v-1h2v1h1v-1h1v.759c.984-.525 1-1.759 1-1.759H8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,23 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar8(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path
|
||||
d="M18 10v11h-.13c-.44-1.73-2.01-3-3.87-3h-4c-1.86 0-3.43 1.27-3.87 3H6V10c0-3.31 2.69-6 6-6 1.66 0 3.16.67 4.24 1.76A5.944 5.944 0 0 1 18 10z"
|
||||
opacity=".3"
|
||||
/>
|
||||
<path d="M17 14.235h2V22h-2zM16.996 9.8C16.89 7.108 14.695 5 12 5S7.11 7.108 7.004 9.799l-1.998-.078C5.154 5.952 8.227 3 12 3s6.846 2.952 6.994 6.722l-1.998.078zM5 14.234h2V22H5z" />
|
||||
<path d="M16 16H8c-2.206 0-4-1.794-4-4s1.794-4 4-4h8c2.206 0 4 1.794 4 4s-1.794 4-4 4zm-8-6c-1.103 0-2 .897-2 2s.897 2 2 2h8c1.103 0 2-.897 2-2s-.897-2-2-2H8z" />
|
||||
<path d="M8 11h2v2H8zM14 11h2v2h-2zM11 0h2v4h-2z" />
|
||||
<path d="M14 5h-4V4a2 2 0 1 1 4 0v1zM19 22h-2c0-1.654-1.346-3-3-3h-4c-1.654 0-3 1.346-3 3H5c0-2.757 2.243-5 5-5h4c2.757 0 5 2.243 5 5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M18 10v11h-.13c-.44-1.73-2.01-3-3.87-3h-4c-1.86 0-3.43 1.27-3.87 3H6V10c0-3.31 2.69-6 6-6 1.66 0 3.16.67 4.24 1.76A5.944 5.944 0 0 1 18 10z" opacity=".3"/><path d="M17 14.235h2V22h-2zM16.996 9.8C16.89 7.108 14.695 5 12 5S7.11 7.108 7.004 9.799l-1.998-.078C5.154 5.952 8.227 3 12 3s6.846 2.952 6.994 6.722l-1.998.078zM5 14.234h2V22H5z"/><path d="M16 16H8c-2.206 0-4-1.794-4-4s1.794-4 4-4h8c2.206 0 4 1.794 4 4s-1.794 4-4 4zm-8-6c-1.103 0-2 .897-2 2s.897 2 2 2h8c1.103 0 2-.897 2-2s-.897-2-2-2H8z"/><path d="M8 11h2v2H8zM14 11h2v2h-2zM11 0h2v4h-2z"/><path d="M14 5h-4V4a2 2 0 1 1 4 0v1zM19 22h-2c0-1.654-1.346-3-3-3h-4c-1.654 0-3 1.346-3 3H5c0-2.757 2.243-5 5-5h4c2.757 0 5 2.243 5 5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,21 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Avatar_icn_avatar9(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="#27A2A8"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M11.5 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 1 0 0-5Z" opacity=".3" />
|
||||
<path d="M11.5 9C9.6 9 8 7.4 8 5.5S9.6 2 11.5 2 15 3.6 15 5.5 13.4 9 11.5 9zm0-5c-.8 0-1.5.7-1.5 1.5S10.7 7 11.5 7 13 6.3 13 5.5 12.3 4 11.5 4zM16 23c-4.5 0-7.6-2.1-8.8-6H4v-4c0-1.7 1.3-3 3-3h9c1.7 0 3 1.3 3 3v4h-2.9c.1 1.1.8 2.6 3.3 3.6l2.1.8-2.1 1c-1 .5-2.4.6-3.4.6zM6 15h2.8l.2.8c.8 3.5 3.1 5.2 7 5.2h.1c-1.2-1.1-2.2-2.7-2.1-5v-1h3v-2c0-.6-.4-1-1-1H7c-.6 0-1 .4-1 1v2z" />
|
||||
<path
|
||||
d="M5 16v-3c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v3h-3c0 1 0 4 4 5.5-1 .5-2.5.5-3 .5-4.3 0-7.1-2-8-6H5z"
|
||||
opacity=".3"
|
||||
/>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="#27A2A8" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11.5 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 1 0 0-5Z" opacity=".3"/><path d="M11.5 9C9.6 9 8 7.4 8 5.5S9.6 2 11.5 2 15 3.6 15 5.5 13.4 9 11.5 9zm0-5c-.8 0-1.5.7-1.5 1.5S10.7 7 11.5 7 13 6.3 13 5.5 12.3 4 11.5 4zM16 23c-4.5 0-7.6-2.1-8.8-6H4v-4c0-1.7 1.3-3 3-3h9c1.7 0 3 1.3 3 3v4h-2.9c.1 1.1.8 2.6 3.3 3.6l2.1.8-2.1 1c-1 .5-2.4.6-3.4.6zM6 15h2.8l.2.8c.8 3.5 3.1 5.2 7 5.2h.1c-1.2-1.1-2.2-2.7-2.1-5v-1h3v-2c0-.6-.4-1-1-1H7c-.6 0-1 .4-1 1v2z"/><path d="M5 16v-3c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v3h-3c0 1 0 4 4 5.5-1 .5-2.5.5-3 .5-4.3 0-7.1-2-8-6H5z" opacity=".3"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Ban(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zM103.265 408.735c-80.622-80.622-84.149-208.957-10.9-293.743l304.644 304.643c-84.804 73.264-213.138 69.706-293.744-10.9zm316.37-11.727L114.992 92.365c84.804-73.263 213.137-69.705 293.743 10.9 80.622 80.621 84.149 208.957 10.9 293.743z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zM103.265 408.735c-80.622-80.622-84.149-208.957-10.9-293.743l304.644 304.643c-84.804 73.264-213.138 69.706-293.744-10.9zm316.37-11.727L114.992 92.365c84.804-73.263 213.137-69.705 293.743 10.9 80.622 80.621 84.149 208.957 10.9 293.743z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bar_chart_line(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1V2zm1 12h2V2h-2v12zm-3 0V7H7v7h2zm-5 0v-3H2v3h2z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1V2zm1 12h2V2h-2v12zm-3 0V7H7v7h2zm-5 0v-3H2v3h2z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,32 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bar_pencil(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 59 66" width={`${width}px`} height={`${height}px`}>
|
||||
<g>
|
||||
<path d="M40.27 15.736a3.59 3.59 0 0 1 3.591-3.59h7.18a3.59 3.59 0 0 1 3.591 3.59V58.82h1.795a1.796 1.796 0 0 1 0 3.59H2.573a1.795 1.795 0 1 1 0-3.59h1.795V48.05a3.59 3.59 0 0 1 3.59-3.59h7.18a3.59 3.59 0 0 1 3.591 3.59v10.77h3.59V33.687a3.59 3.59 0 0 1 3.59-3.59h7.181a3.59 3.59 0 0 1 3.59 3.59V58.82h3.59V15.736Zm3.591 43.083h7.18V15.736h-7.18V58.82Zm-10.77 0V33.687H25.91V58.82h7.18Zm-17.952 0V48.05h-7.18v10.77h7.18Z" />
|
||||
</g>
|
||||
<g>
|
||||
<path d="M28.613.335a1.145 1.145 0 0 1 1.622 0L37.11 7.21a1.146 1.146 0 0 1 0 1.622L14.193 31.749c-.11.109-.24.195-.385.252L2.35 36.584a1.147 1.147 0 0 1-1.49-1.49l4.584-11.458c.057-.144.143-.275.252-.385L28.613.335ZM26.46 5.729l5.254 5.255 2.963-2.963-5.254-5.255-2.963 2.963Zm3.634 6.875L24.84 7.35 9.945 22.245v.672h1.145a1.146 1.146 0 0 1 1.146 1.145v1.146h1.146a1.146 1.146 0 0 1 1.146 1.146V27.5h.671l14.896-14.896ZM7.726 24.464l-.243.242-3.501 8.757 8.756-3.502.243-.243a1.146 1.146 0 0 1-.745-1.072V27.5H11.09a1.146 1.146 0 0 1-1.145-1.146v-1.146H8.799a1.146 1.146 0 0 1-1.073-.744Z" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path
|
||||
fill="#fff"
|
||||
transform="translate(.778 8.556)"
|
||||
d="M0 0h57.444v57.444H0z"
|
||||
/>
|
||||
</clipPath>
|
||||
<clipPath id="b">
|
||||
<path
|
||||
fill="#fff"
|
||||
transform="translate(.778)"
|
||||
d="M0 0h36.667v36.667H0z"
|
||||
/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 59 66" width={ `${ width }px` } height={ `${ height }px` } ><g><path d="M40.27 15.736a3.59 3.59 0 0 1 3.591-3.59h7.18a3.59 3.59 0 0 1 3.591 3.59V58.82h1.795a1.796 1.796 0 0 1 0 3.59H2.573a1.795 1.795 0 1 1 0-3.59h1.795V48.05a3.59 3.59 0 0 1 3.59-3.59h7.18a3.59 3.59 0 0 1 3.591 3.59v10.77h3.59V33.687a3.59 3.59 0 0 1 3.59-3.59h7.181a3.59 3.59 0 0 1 3.59 3.59V58.82h3.59V15.736Zm3.591 43.083h7.18V15.736h-7.18V58.82Zm-10.77 0V33.687H25.91V58.82h7.18Zm-17.952 0V48.05h-7.18v10.77h7.18Z"/></g><g><path d="M28.613.335a1.145 1.145 0 0 1 1.622 0L37.11 7.21a1.146 1.146 0 0 1 0 1.622L14.193 31.749c-.11.109-.24.195-.385.252L2.35 36.584a1.147 1.147 0 0 1-1.49-1.49l4.584-11.458c.057-.144.143-.275.252-.385L28.613.335ZM26.46 5.729l5.254 5.255 2.963-2.963-5.254-5.255-2.963 2.963Zm3.634 6.875L24.84 7.35 9.945 22.245v.672h1.145a1.146 1.146 0 0 1 1.146 1.145v1.146h1.146a1.146 1.146 0 0 1 1.146 1.146V27.5h.671l14.896-14.896ZM7.726 24.464l-.243.242-3.501 8.757 8.756-3.502.243-.243a1.146 1.146 0 0 1-.745-1.072V27.5H11.09a1.146 1.146 0 0 1-1.145-1.146v-1.146H8.799a1.146 1.146 0 0 1-1.073-.744Z"/></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.778 8.556)" d="M0 0h57.444v57.444H0z"/></clipPath><clipPath id="b"><path fill="#fff" transform="translate(.778)" d="M0 0h36.667v36.667H0z"/></clipPath></defs></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Battery(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M0 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm2-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H2zm14 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M0 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm2-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H2zm14 3a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,14 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Battery_charging(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M9.585 2.568a.5.5 0 0 1 .226.58L8.677 6.832h1.99a.5.5 0 0 1 .364.843l-5.334 5.667a.5.5 0 0 1-.842-.49L5.99 9.167H4a.5.5 0 0 1-.364-.843l5.333-5.667a.5.5 0 0 1 .616-.09z" />
|
||||
<path d="M2 4h4.332l-.94 1H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2.38l-.308 1H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z" />
|
||||
<path d="M2 6h2.45L2.908 7.639A1.5 1.5 0 0 0 3.313 10H2V6zm8.595-2-.308 1H12a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H9.276l-.942 1H12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.405z" />
|
||||
<path d="M12 10h-1.783l1.542-1.639c.097-.103.178-.218.241-.34V10zm0-3.354V6h-.646a1.5 1.5 0 0 1 .646.646zM16 8a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M9.585 2.568a.5.5 0 0 1 .226.58L8.677 6.832h1.99a.5.5 0 0 1 .364.843l-5.334 5.667a.5.5 0 0 1-.842-.49L5.99 9.167H4a.5.5 0 0 1-.364-.843l5.333-5.667a.5.5 0 0 1 .616-.09z"/><path d="M2 4h4.332l-.94 1H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2.38l-.308 1H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z"/><path d="M2 6h2.45L2.908 7.639A1.5 1.5 0 0 0 3.313 10H2V6zm8.595-2-.308 1H12a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H9.276l-.942 1H12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.405z"/><path d="M12 10h-1.783l1.542-1.639c.097-.103.178-.218.241-.34V10zm0-3.354V6h-.646a1.5 1.5 0 0 1 .646.646zM16 8a1.5 1.5 0 0 1-1.5 1.5v-3A1.5 1.5 0 0 1 16 8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bell(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2zM8 1.918l-.797.161A4.002 4.002 0 0 0 4 6c0 .628-.134 2.197-.459 3.742-.16.767-.376 1.566-.663 2.258h10.244c-.287-.692-.502-1.49-.663-2.258C12.134 8.197 12 6.628 12 6a4.002 4.002 0 0 0-3.203-3.92L8 1.917zM14.22 12c.223.447.481.801.78 1H1c.299-.199.557-.553.78-1C2.68 10.2 3 6.88 3 6c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0A5.002 5.002 0 0 1 13 6c0 .88.32 4.2 1.22 6z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2zM8 1.918l-.797.161A4.002 4.002 0 0 0 4 6c0 .628-.134 2.197-.459 3.742-.16.767-.376 1.566-.663 2.258h10.244c-.287-.692-.502-1.49-.663-2.258C12.134 8.197 12 6.628 12 6a4.002 4.002 0 0 0-3.203-3.92L8 1.917zM14.22 12c.223.447.481.801.78 1H1c.299-.199.557-.553.78-1C2.68 10.2 3 6.88 3 6c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0A5.002 5.002 0 0 1 13 6c0 .88.32 4.2 1.22 6z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bell_plus(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M224 480a32 32 0 0 1-32-32h-32a64 64 0 1 0 128 0h-32a32 32 0 0 1-32 32zm209.37-145.19c-28-26.62-49.34-54.48-49.34-148.9 0-79.6-63.37-144.5-144-152.36V16a16 16 0 0 0-32 0v17.56C127.35 41.41 64 106.31 64 185.91c0 94.4-21.41 122.28-49.35 148.9a46.47 46.47 0 0 0-11.27 51.24A47.68 47.68 0 0 0 48 416h352a47.67 47.67 0 0 0 44.62-30 46.47 46.47 0 0 0-11.25-51.19zM400 384H48c-14.22 0-21.35-16.47-11.32-26C71.54 324.8 96 287.66 96 185.91 96 118.53 153.22 64 224 64s128 54.52 128 121.91c0 101.34 24.22 138.68 59.28 172.07C421.37 367.56 414.16 384 400 384zM296 224h-56v-56a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h56v56a8 8 0 0 0 8 8h16a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M224 480a32 32 0 0 1-32-32h-32a64 64 0 1 0 128 0h-32a32 32 0 0 1-32 32zm209.37-145.19c-28-26.62-49.34-54.48-49.34-148.9 0-79.6-63.37-144.5-144-152.36V16a16 16 0 0 0-32 0v17.56C127.35 41.41 64 106.31 64 185.91c0 94.4-21.41 122.28-49.35 148.9a46.47 46.47 0 0 0-11.27 51.24A47.68 47.68 0 0 0 48 416h352a47.67 47.67 0 0 0 44.62-30 46.47 46.47 0 0 0-11.25-51.19zM400 384H48c-14.22 0-21.35-16.47-11.32-26C71.54 324.8 96 287.66 96 185.91 96 118.53 153.22 64 224 64s128 54.52 128 121.91c0 101.34 24.22 138.68 59.28 172.07C421.37 367.56 414.16 384 400 384zM296 224h-56v-56a8 8 0 0 0-8-8h-16a8 8 0 0 0-8 8v56h-56a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h56v56a8 8 0 0 0 8 8h16a8 8 0 0 0 8-8v-56h56a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bell_slash(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M5.164 14H15c-.299-.199-.557-.553-.78-1-.9-1.8-1.22-5.12-1.22-6 0-.264-.02-.523-.06-.776l-.938.938c.02.708.157 2.154.457 3.58.161.767.377 1.566.663 2.258H6.164l-1 1zm5.581-9.91a3.986 3.986 0 0 0-1.948-1.01L8 2.917l-.797.161A4.002 4.002 0 0 0 4 7c0 .628-.134 2.197-.459 3.742-.05.238-.105.479-.166.718l-1.653 1.653c.02-.037.04-.074.059-.113C2.679 11.2 3 7.88 3 7c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0c.942.19 1.788.645 2.457 1.284l-.707.707zM10 15a2 2 0 1 1-4 0h4zm-9.375.625a.53.53 0 0 0 .75.75l14.75-14.75a.53.53 0 0 0-.75-.75L.625 15.625z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M5.164 14H15c-.299-.199-.557-.553-.78-1-.9-1.8-1.22-5.12-1.22-6 0-.264-.02-.523-.06-.776l-.938.938c.02.708.157 2.154.457 3.58.161.767.377 1.566.663 2.258H6.164l-1 1zm5.581-9.91a3.986 3.986 0 0 0-1.948-1.01L8 2.917l-.797.161A4.002 4.002 0 0 0 4 7c0 .628-.134 2.197-.459 3.742-.05.238-.105.479-.166.718l-1.653 1.653c.02-.037.04-.074.059-.113C2.679 11.2 3 7.88 3 7c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0c.942.19 1.788.645 2.457 1.284l-.707.707zM10 15a2 2 0 1 1-4 0h4zm-9.375.625a.53.53 0 0 0 .75.75l14.75-14.75a.53.53 0 0 0-.75-.75L.625 15.625z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Binoculars(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M3 2.5A1.5 1.5 0 0 1 4.5 1h1A1.5 1.5 0 0 1 7 2.5V5h2V2.5A1.5 1.5 0 0 1 10.5 1h1A1.5 1.5 0 0 1 13 2.5v2.382a.5.5 0 0 0 .276.447l.895.447A1.5 1.5 0 0 1 15 7.118V14.5a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 14.5v-3a.5.5 0 0 1 .146-.354l.854-.853V9.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.793l.854.853A.5.5 0 0 1 7 11.5v3A1.5 1.5 0 0 1 5.5 16h-3A1.5 1.5 0 0 1 1 14.5V7.118a1.5 1.5 0 0 1 .83-1.342l.894-.447A.5.5 0 0 0 3 4.882V2.5zM4.5 2a.5.5 0 0 0-.5.5V3h2v-.5a.5.5 0 0 0-.5-.5h-1zM6 4H4v.882a1.5 1.5 0 0 1-.83 1.342l-.894.447A.5.5 0 0 0 2 7.118V13h4v-1.293l-.854-.853A.5.5 0 0 1 5 10.5v-1A1.5 1.5 0 0 1 6.5 8h3A1.5 1.5 0 0 1 11 9.5v1a.5.5 0 0 1-.146.354l-.854.853V13h4V7.118a.5.5 0 0 0-.276-.447l-.895-.447A1.5 1.5 0 0 1 12 4.882V4h-2v1.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V4zm4-1h2v-.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5V3zm4 11h-4v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V14zm-8 0H2v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V14z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M3 2.5A1.5 1.5 0 0 1 4.5 1h1A1.5 1.5 0 0 1 7 2.5V5h2V2.5A1.5 1.5 0 0 1 10.5 1h1A1.5 1.5 0 0 1 13 2.5v2.382a.5.5 0 0 0 .276.447l.895.447A1.5 1.5 0 0 1 15 7.118V14.5a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 14.5v-3a.5.5 0 0 1 .146-.354l.854-.853V9.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.793l.854.853A.5.5 0 0 1 7 11.5v3A1.5 1.5 0 0 1 5.5 16h-3A1.5 1.5 0 0 1 1 14.5V7.118a1.5 1.5 0 0 1 .83-1.342l.894-.447A.5.5 0 0 0 3 4.882V2.5zM4.5 2a.5.5 0 0 0-.5.5V3h2v-.5a.5.5 0 0 0-.5-.5h-1zM6 4H4v.882a1.5 1.5 0 0 1-.83 1.342l-.894.447A.5.5 0 0 0 2 7.118V13h4v-1.293l-.854-.853A.5.5 0 0 1 5 10.5v-1A1.5 1.5 0 0 1 6.5 8h3A1.5 1.5 0 0 1 11 9.5v1a.5.5 0 0 1-.146.354l-.854.853V13h4V7.118a.5.5 0 0 0-.276-.447l-.895-.447A1.5 1.5 0 0 1 12 4.882V4h-2v1.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V4zm4-1h2v-.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5V3zm4 11h-4v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V14zm-8 0H2v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5V14z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Book(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M5 0h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2 2 2 0 0 1-2 2H3a2 2 0 0 1-2-2h1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1H1a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v9a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1H3a2 2 0 0 1 2-2z" />
|
||||
<path d="M1 6v-.5a.5.5 0 0 1 1 0V6h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0V9h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 2.5v.5H.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H2v-.5a.5.5 0 0 0-1 0z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M5 0h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2 2 2 0 0 1-2 2H3a2 2 0 0 1-2-2h1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1H1a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v9a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1H3a2 2 0 0 1 2-2z"/><path d="M1 6v-.5a.5.5 0 0 1 1 0V6h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0V9h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 2.5v.5H.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H2v-.5a.5.5 0 0 0-1 0z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bookmark(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5V2zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1H4z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5V2zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1H4z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Broadcast(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M3.05 3.05a7 7 0 0 0 0 9.9.5.5 0 0 1-.707.707 8 8 0 0 1 0-11.314.5.5 0 0 1 .707.707zm2.122 2.122a4 4 0 0 0 0 5.656.5.5 0 1 1-.708.708 5 5 0 0 1 0-7.072.5.5 0 0 1 .708.708zm5.656-.708a.5.5 0 0 1 .708 0 5 5 0 0 1 0 7.072.5.5 0 1 1-.708-.708 4 4 0 0 0 0-5.656.5.5 0 0 1 0-.708zm2.122-2.12a.5.5 0 0 1 .707 0 8 8 0 0 1 0 11.313.5.5 0 0 1-.707-.707 7 7 0 0 0 0-9.9.5.5 0 0 1 0-.707zM10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M3.05 3.05a7 7 0 0 0 0 9.9.5.5 0 0 1-.707.707 8 8 0 0 1 0-11.314.5.5 0 0 1 .707.707zm2.122 2.122a4 4 0 0 0 0 5.656.5.5 0 1 1-.708.708 5 5 0 0 1 0-7.072.5.5 0 0 1 .708.708zm5.656-.708a.5.5 0 0 1 .708 0 5 5 0 0 1 0 7.072.5.5 0 1 1-.708-.708 4 4 0 0 0 0-5.656.5.5 0 0 1 0-.708zm2.122-2.12a.5.5 0 0 1 .707 0 8 8 0 0 1 0 11.313.5.5 0 0 1-.707-.707 7 7 0 0 0 0-9.9.5.5 0 0 1 0-.707zM10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_browser(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_chrome(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 517 517" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M148.978 223c8.725-25.136 24.616-44.93 47.674-59.383 23.058-14.453 48.297-21.05 75.718-19.794L464 154.191c-20.565-41.474-50.79-73.835-90.674-97.086C337.181 36.368 298.232 26 256.478 26c-34.275 0-67.304 7.54-99.087 22.622C125.61 63.703 98.811 85.068 77 112.718L148.978 223Zm61.483-37.353c-18.07 11.327-30.15 26.373-36.92 45.879l-17.375 50.057-111.15-170.3 11.571-14.668C77 67 110.845 41.93 146.245 25.132 181.488 8.41 218.321 0 256.478 0c46.292 0 89.702 11.556 129.787 34.553l.155.09c44.282 25.814 78.05 61.971 100.874 107.998l19.794 39.92-236.01-12.77c-22.108-.994-42.08 4.237-60.617 15.856ZM179 258.5c0 21.806 7.583 40.34 22.75 55.604C216.917 329.368 235.333 337 257 337s40.083-7.632 55.25-22.896C327.417 298.84 335 280.306 335 258.5c0-21.806-7.583-40.34-22.75-55.604C297.083 187.632 278.667 180 257 180s-40.083 7.632-55.25 22.896C186.583 218.16 179 236.694 179 258.5Zm-26 0c0-28.647 10.282-53.777 30.307-73.93C203.363 164.384 228.422 154 257 154c28.578 0 53.637 10.384 73.693 30.57C350.718 204.723 361 229.853 361 258.5c0 28.647-10.282 53.777-30.307 73.93C310.637 352.616 285.578 363 257 363c-28.578 0-53.637-10.384-73.693-30.57C163.282 312.277 153 287.147 153 258.5ZM474.853 175l-129.839 6.535c17.437 20.54 26.466 44.348 27.089 71.424.623 27.075-6.539 52.128-21.484 75.157L246 489.636c46.082 2.49 89.05-7.78 128.905-30.81 33.005-19.296 59.47-44.504 79.398-75.625 19.928-31.121 31.76-65.043 35.496-101.766 3.736-36.724-1.245-72.201-14.946-106.435Zm24.14-11.66c15.26 38.132 20.834 79.828 16.672 120.726-4.149 40.78-17.341 78.602-39.466 113.155-22.164 34.616-51.648 62.698-88.172 84.05l-.113.067c-44.226 25.555-92.201 37.021-143.317 34.26-10.485-.58-18.184-1.113-23.097-1.598-5.048-.498-12.29-1.44-21.725-2.824l24.403-35.675 104.63-161.538c12.111-18.661 17.804-38.576 17.302-60.406-.486-21.128-7.342-39.204-20.917-55.195l-34.08-40.146 200.98-10.117 6.9 15.24ZM151.164 304.41 63.363 132C38.454 170.73 26 213.207 26 259.433c0 38.105 8.562 73.555 25.687 106.35 17.124 32.796 40.632 60.125 70.522 81.989 29.89 21.863 63.205 35.606 99.945 41.228L281 371.874c-26.154 4.997-51.218 1.093-75.192-11.713-23.975-12.805-42.189-31.39-54.643-55.752Zm66.892 32.818c18.76 10.02 37.782 12.983 58.063 9.108l51.778-9.894L239.5 516.5l-21.279-1.8c-40.865-6.253-78.097-21.61-111.362-45.943-33.108-24.217-59.249-54.608-78.22-90.94C9.56 341.28 0 301.698 0 259.434c0-51.208 13.886-98.568 41.495-141.497L70.5 79.5l103.824 213.092c10.042 19.637 24.454 34.338 43.733 44.636Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 517 517" width={ `${ width }px` } height={ `${ height }px` } ><path d="M148.978 223c8.725-25.136 24.616-44.93 47.674-59.383 23.058-14.453 48.297-21.05 75.718-19.794L464 154.191c-20.565-41.474-50.79-73.835-90.674-97.086C337.181 36.368 298.232 26 256.478 26c-34.275 0-67.304 7.54-99.087 22.622C125.61 63.703 98.811 85.068 77 112.718L148.978 223Zm61.483-37.353c-18.07 11.327-30.15 26.373-36.92 45.879l-17.375 50.057-111.15-170.3 11.571-14.668C77 67 110.845 41.93 146.245 25.132 181.488 8.41 218.321 0 256.478 0c46.292 0 89.702 11.556 129.787 34.553l.155.09c44.282 25.814 78.05 61.971 100.874 107.998l19.794 39.92-236.01-12.77c-22.108-.994-42.08 4.237-60.617 15.856ZM179 258.5c0 21.806 7.583 40.34 22.75 55.604C216.917 329.368 235.333 337 257 337s40.083-7.632 55.25-22.896C327.417 298.84 335 280.306 335 258.5c0-21.806-7.583-40.34-22.75-55.604C297.083 187.632 278.667 180 257 180s-40.083 7.632-55.25 22.896C186.583 218.16 179 236.694 179 258.5Zm-26 0c0-28.647 10.282-53.777 30.307-73.93C203.363 164.384 228.422 154 257 154c28.578 0 53.637 10.384 73.693 30.57C350.718 204.723 361 229.853 361 258.5c0 28.647-10.282 53.777-30.307 73.93C310.637 352.616 285.578 363 257 363c-28.578 0-53.637-10.384-73.693-30.57C163.282 312.277 153 287.147 153 258.5ZM474.853 175l-129.839 6.535c17.437 20.54 26.466 44.348 27.089 71.424.623 27.075-6.539 52.128-21.484 75.157L246 489.636c46.082 2.49 89.05-7.78 128.905-30.81 33.005-19.296 59.47-44.504 79.398-75.625 19.928-31.121 31.76-65.043 35.496-101.766 3.736-36.724-1.245-72.201-14.946-106.435Zm24.14-11.66c15.26 38.132 20.834 79.828 16.672 120.726-4.149 40.78-17.341 78.602-39.466 113.155-22.164 34.616-51.648 62.698-88.172 84.05l-.113.067c-44.226 25.555-92.201 37.021-143.317 34.26-10.485-.58-18.184-1.113-23.097-1.598-5.048-.498-12.29-1.44-21.725-2.824l24.403-35.675 104.63-161.538c12.111-18.661 17.804-38.576 17.302-60.406-.486-21.128-7.342-39.204-20.917-55.195l-34.08-40.146 200.98-10.117 6.9 15.24ZM151.164 304.41 63.363 132C38.454 170.73 26 213.207 26 259.433c0 38.105 8.562 73.555 25.687 106.35 17.124 32.796 40.632 60.125 70.522 81.989 29.89 21.863 63.205 35.606 99.945 41.228L281 371.874c-26.154 4.997-51.218 1.093-75.192-11.713-23.975-12.805-42.189-31.39-54.643-55.752Zm66.892 32.818c18.76 10.02 37.782 12.983 58.063 9.108l51.778-9.894L239.5 516.5l-21.279-1.8c-40.865-6.253-78.097-21.61-111.362-45.943-33.108-24.217-59.249-54.608-78.22-90.94C9.56 341.28 0 301.698 0 259.434c0-51.208 13.886-98.568 41.495-141.497L70.5 79.5l103.824 213.092c10.042 19.637 24.454 34.338 43.733 44.636Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_edge(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 525 558" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M497 307.629v-41.65c0-48.067-9.71-89.355-28.994-124.03-20.715-36.951-47.903-65.046-81.769-84.586C352.313 37.789 313.92 28 270.735 28c-27.687 0-53.461 4.008-77.347 11.997-23.875 7.985-44.493 18.83-61.927 32.516-17.691 13.889-33.28 30.279-46.797 49.224-13.609 19.073-24.359 39.365-32.28 60.953a305.816 305.816 0 0 0-4.46 13.06 364.39 364.39 0 0 1 4.737-4.744c15.816-15.551 33.904-30.004 54.198-43.326 20.62-13.536 43.788-24.38 69.535-32.575 25.713-8.184 52.578-12.79 80.513-13.833l.654-.025 7.071.398c5.187.242 11.367 1.19 18.85 2.82 6.96 1.517 14.71 3.643 23.394 6.386 9.551 3.004 18.805 7.712 27.712 14.046 8.795 6.217 16.698 13.684 23.665 22.315 7.485 9.273 12.965 21.122 16.57 35.368 3.61 14.107 4.5 29.576 2.745 46.363l-1.311 12.545H159.202l2.77-16.34c2.713-16.01 6.438-30.18 11.209-42.499-18.112 13.709-33.182 29.573-45.253 47.595-20.83 31.102-31.03 68.972-30.467 114.03.368 35.829 11.749 69.875 34.33 102.32 22.598 32.466 51.091 55.259 85.666 68.626 26.154 10.022 55.58 14.964 88.415 14.775 33.304-.192 62.95-3.809 88.891-10.783 22.584-6.071 41.765-13.376 57.52-21.856v-78.845c-10.085 5.146-21.05 9.69-32.9 13.65-20.78 6.944-42.2 11.745-64.296 14.401-22.462 2.7-44.713 2.385-66.783-.951-22.164-3.35-42.233-9.387-60.121-18.123-18.88-9.22-34.285-23.055-46.01-41.276-11.837-18.393-17.826-39.987-18.048-64.456l-.128-14.127H497ZM240.465 130.43l-17.076 21.39c-8.747 10.959-15.83 22.375-21.285 34.269-3.595 7.838-6.668 16.978-9.194 27.4h157.526c.055-8.663-.868-16.656-2.747-24.004-2.683-10.6-6.48-18.81-11.224-24.686-5.364-6.645-11.382-12.331-18.072-17.06-6.617-4.706-13.25-8.081-19.934-10.183-7.94-2.508-14.89-4.414-20.942-5.733-6.106-1.331-10.855-2.057-14.236-2.211l-.15-.008-5.826-.327c-5.667.224-11.28.609-16.84 1.153Zm-118.24 40.658c-18.799 12.34-35.456 25.649-49.932 39.883-14.5 14.258-27.455 29.568-38.797 45.887l-32.64 46.96 7.257-56.727c3.281-25.646 9.28-50.319 17.985-74.046 8.789-23.953 20.717-46.47 35.773-67.57 15.056-21.103 32.493-39.436 52.3-54.986 20.035-15.729 43.504-28.072 70.336-37.046C211.322 4.474 240.093 0 270.735 0c47.986 0 91.211 11.02 129.496 33.11 38.318 22.11 69.067 53.884 92.222 95.19C514.19 167.384 525 213.347 525 265.98v69.649H193.096c1.782 13.37 6 25.14 12.623 35.431 8.983 13.96 20.513 24.314 34.751 31.268 15.242 7.444 32.582 12.66 52.018 15.597 19.57 2.958 39.288 3.238 59.257.838 20.22-2.431 39.785-6.817 58.765-13.159 18.658-6.234 34.549-13.97 47.75-23.203l22.023-15.403v146.44l-6.805 4.076c-19.331 11.579-43.15 21.131-71.446 28.738-28.387 7.631-60.401 11.537-96 11.742-36.193.209-69.062-5.312-98.633-16.643-39.904-15.428-72.85-41.781-98.59-78.762-25.72-36.955-38.92-76.441-39.346-117.996-.63-50.466 11.065-93.895 35.2-129.93 19.657-29.348 46.136-53.555 79.252-72.566-22.982 7.401-43.513 17.058-61.69 28.99Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 525 558" width={ `${ width }px` } height={ `${ height }px` } ><path d="M497 307.629v-41.65c0-48.067-9.71-89.355-28.994-124.03-20.715-36.951-47.903-65.046-81.769-84.586C352.313 37.789 313.92 28 270.735 28c-27.687 0-53.461 4.008-77.347 11.997-23.875 7.985-44.493 18.83-61.927 32.516-17.691 13.889-33.28 30.279-46.797 49.224-13.609 19.073-24.359 39.365-32.28 60.953a305.816 305.816 0 0 0-4.46 13.06 364.39 364.39 0 0 1 4.737-4.744c15.816-15.551 33.904-30.004 54.198-43.326 20.62-13.536 43.788-24.38 69.535-32.575 25.713-8.184 52.578-12.79 80.513-13.833l.654-.025 7.071.398c5.187.242 11.367 1.19 18.85 2.82 6.96 1.517 14.71 3.643 23.394 6.386 9.551 3.004 18.805 7.712 27.712 14.046 8.795 6.217 16.698 13.684 23.665 22.315 7.485 9.273 12.965 21.122 16.57 35.368 3.61 14.107 4.5 29.576 2.745 46.363l-1.311 12.545H159.202l2.77-16.34c2.713-16.01 6.438-30.18 11.209-42.499-18.112 13.709-33.182 29.573-45.253 47.595-20.83 31.102-31.03 68.972-30.467 114.03.368 35.829 11.749 69.875 34.33 102.32 22.598 32.466 51.091 55.259 85.666 68.626 26.154 10.022 55.58 14.964 88.415 14.775 33.304-.192 62.95-3.809 88.891-10.783 22.584-6.071 41.765-13.376 57.52-21.856v-78.845c-10.085 5.146-21.05 9.69-32.9 13.65-20.78 6.944-42.2 11.745-64.296 14.401-22.462 2.7-44.713 2.385-66.783-.951-22.164-3.35-42.233-9.387-60.121-18.123-18.88-9.22-34.285-23.055-46.01-41.276-11.837-18.393-17.826-39.987-18.048-64.456l-.128-14.127H497ZM240.465 130.43l-17.076 21.39c-8.747 10.959-15.83 22.375-21.285 34.269-3.595 7.838-6.668 16.978-9.194 27.4h157.526c.055-8.663-.868-16.656-2.747-24.004-2.683-10.6-6.48-18.81-11.224-24.686-5.364-6.645-11.382-12.331-18.072-17.06-6.617-4.706-13.25-8.081-19.934-10.183-7.94-2.508-14.89-4.414-20.942-5.733-6.106-1.331-10.855-2.057-14.236-2.211l-.15-.008-5.826-.327c-5.667.224-11.28.609-16.84 1.153Zm-118.24 40.658c-18.799 12.34-35.456 25.649-49.932 39.883-14.5 14.258-27.455 29.568-38.797 45.887l-32.64 46.96 7.257-56.727c3.281-25.646 9.28-50.319 17.985-74.046 8.789-23.953 20.717-46.47 35.773-67.57 15.056-21.103 32.493-39.436 52.3-54.986 20.035-15.729 43.504-28.072 70.336-37.046C211.322 4.474 240.093 0 270.735 0c47.986 0 91.211 11.02 129.496 33.11 38.318 22.11 69.067 53.884 92.222 95.19C514.19 167.384 525 213.347 525 265.98v69.649H193.096c1.782 13.37 6 25.14 12.623 35.431 8.983 13.96 20.513 24.314 34.751 31.268 15.242 7.444 32.582 12.66 52.018 15.597 19.57 2.958 39.288 3.238 59.257.838 20.22-2.431 39.785-6.817 58.765-13.159 18.658-6.234 34.549-13.97 47.75-23.203l22.023-15.403v146.44l-6.805 4.076c-19.331 11.579-43.15 21.131-71.446 28.738-28.387 7.631-60.401 11.537-96 11.742-36.193.209-69.062-5.312-98.633-16.643-39.904-15.428-72.85-41.781-98.59-78.762-25.72-36.955-38.92-76.441-39.346-117.996-.63-50.466 11.065-93.895 35.2-129.93 19.657-29.348 46.136-53.555 79.252-72.566-22.982 7.401-43.513 17.058-61.69 28.99Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,14 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_electron(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 138 150" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M48.827 32.168c-19.505-3.553-34.926.165-41.072 10.81-4.586 7.945-3.275 18.477 3.18 29.735a2 2 0 1 0 3.47-1.99c-5.815-10.14-6.946-19.23-3.186-25.744 5.106-8.843 18.861-12.16 36.89-8.876a2 2 0 0 0 .718-3.935Zm-27.75 54.23c7.887 8.666 18.133 16.795 29.817 23.541 28.293 16.335 58.412 20.7 73.256 10.58a2 2 0 0 0-2.253-3.306c-13.285 9.06-41.897 4.912-69.003-10.738-11.335-6.545-21.256-14.416-28.858-22.77a2 2 0 1 0-2.959 2.693Z" />
|
||||
<path d="M119.415 83.965c12.77-15.087 17.23-30.261 11.096-40.885-4.513-7.816-14.054-11.944-26.733-12.108a2 2 0 0 0-.052 4c11.404.148 19.623 3.703 23.321 10.108 5.095 8.825 1.118 22.356-10.685 36.3a2 2 0 1 0 3.053 2.585Zm-32.82-51.131c-11.548 2.474-23.838 7.31-35.642 14.126C21.746 63.822 2.693 88.687 5.34 106.716a2 2 0 1 0 3.958-.581c-2.35-16.008 15.71-39.577 43.655-55.711 11.45-6.611 23.351-11.295 34.48-13.679a2 2 0 1 0-.839-3.911Z" />
|
||||
<path d="M39.278 119.215c6.677 18.645 17.601 30.125 29.885 30.125 8.958 0 17.247-6.107 23.71-16.859a2 2 0 1 0-3.428-2.06c-5.809 9.662-12.944 14.919-20.282 14.919-10.204 0-19.947-10.24-26.119-27.474a2 2 0 1 0-3.766 1.349Zm60.991-3.647c3.457-11.046 5.313-23.79 5.313-37.068 0-33.134-11.596-61.697-28.114-69.031a2 2 0 0 0-1.624 3.656c14.732 6.541 25.738 33.649 25.738 65.375 0 12.883-1.797 25.223-5.13 35.873a2 2 0 1 0 3.817 1.195ZM137.937 113.608a9.572 9.572 0 1 0-19.145 0 9.572 9.572 0 0 0 19.145 0Zm-4 0a5.572 5.572 0 1 1-11.145 0 5.572 5.572 0 0 1 11.145 0ZM9.823 123.18a9.572 9.572 0 1 0 0-19.144 9.572 9.572 0 0 0 0 19.145Zm0-4a5.572 5.572 0 1 1 0-11.144 5.572 5.572 0 0 1 0 11.145Z" />
|
||||
<path d="M69.163 19.233a9.572 9.572 0 1 0 0-19.145 9.572 9.572 0 0 0 0 19.145Zm0-4a5.572 5.572 0 1 1 0-11.145 5.572 5.572 0 0 1 0 11.145ZM70.625 85.27A6.926 6.926 0 1 1 67.7 71.73a6.926 6.926 0 0 1 2.924 13.54Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 138 150" width={ `${ width }px` } height={ `${ height }px` } ><path d="M48.827 32.168c-19.505-3.553-34.926.165-41.072 10.81-4.586 7.945-3.275 18.477 3.18 29.735a2 2 0 1 0 3.47-1.99c-5.815-10.14-6.946-19.23-3.186-25.744 5.106-8.843 18.861-12.16 36.89-8.876a2 2 0 0 0 .718-3.935Zm-27.75 54.23c7.887 8.666 18.133 16.795 29.817 23.541 28.293 16.335 58.412 20.7 73.256 10.58a2 2 0 0 0-2.253-3.306c-13.285 9.06-41.897 4.912-69.003-10.738-11.335-6.545-21.256-14.416-28.858-22.77a2 2 0 1 0-2.959 2.693Z"/><path d="M119.415 83.965c12.77-15.087 17.23-30.261 11.096-40.885-4.513-7.816-14.054-11.944-26.733-12.108a2 2 0 0 0-.052 4c11.404.148 19.623 3.703 23.321 10.108 5.095 8.825 1.118 22.356-10.685 36.3a2 2 0 1 0 3.053 2.585Zm-32.82-51.131c-11.548 2.474-23.838 7.31-35.642 14.126C21.746 63.822 2.693 88.687 5.34 106.716a2 2 0 1 0 3.958-.581c-2.35-16.008 15.71-39.577 43.655-55.711 11.45-6.611 23.351-11.295 34.48-13.679a2 2 0 1 0-.839-3.911Z"/><path d="M39.278 119.215c6.677 18.645 17.601 30.125 29.885 30.125 8.958 0 17.247-6.107 23.71-16.859a2 2 0 1 0-3.428-2.06c-5.809 9.662-12.944 14.919-20.282 14.919-10.204 0-19.947-10.24-26.119-27.474a2 2 0 1 0-3.766 1.349Zm60.991-3.647c3.457-11.046 5.313-23.79 5.313-37.068 0-33.134-11.596-61.697-28.114-69.031a2 2 0 0 0-1.624 3.656c14.732 6.541 25.738 33.649 25.738 65.375 0 12.883-1.797 25.223-5.13 35.873a2 2 0 1 0 3.817 1.195ZM137.937 113.608a9.572 9.572 0 1 0-19.145 0 9.572 9.572 0 0 0 19.145 0Zm-4 0a5.572 5.572 0 1 1-11.145 0 5.572 5.572 0 0 1 11.145 0ZM9.823 123.18a9.572 9.572 0 1 0 0-19.144 9.572 9.572 0 0 0 0 19.145Zm0-4a5.572 5.572 0 1 1 0-11.144 5.572 5.572 0 0 1 0 11.145Z"/><path d="M69.163 19.233a9.572 9.572 0 1 0 0-19.145 9.572 9.572 0 0 0 0 19.145Zm0-4a5.572 5.572 0 1 1 0-11.145 5.572 5.572 0 0 1 0 11.145ZM70.625 85.27A6.926 6.926 0 1 1 67.7 71.73a6.926 6.926 0 0 1 2.924 13.54Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_facebook(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M75 512h167V330h-60v-60h60v-75c0-41.355 33.645-75 75-75h75v60h-60c-16.543 0-30 13.457-30 30v60h87.293l-10 60H302v182h135c41.355 0 75-33.645 75-75V75c0-41.355-33.645-75-75-75H75C33.645 0 0 33.645 0 75v362c0 41.355 33.645 75 75 75ZM30 75c0-24.813 20.188-45 45-45h362c24.813 0 45 20.188 45 45v362c0 24.813-20.188 45-45 45H332V360h72.707l20-120H332v-30h90V90H317c-57.898 0-105 47.102-105 105v45h-60v120h60v122H75c-24.813 0-45-20.188-45-45V75Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M75 512h167V330h-60v-60h60v-75c0-41.355 33.645-75 75-75h75v60h-60c-16.543 0-30 13.457-30 30v60h87.293l-10 60H302v182h135c41.355 0 75-33.645 75-75V75c0-41.355-33.645-75-75-75H75C33.645 0 0 33.645 0 75v362c0 41.355 33.645 75 75 75ZM30 75c0-24.813 20.188-45 45-45h362c24.813 0 45 20.188 45 45v362c0 24.813-20.188 45-45 45H332V360h72.707l20-120H332v-30h90V90H317c-57.898 0-105 47.102-105 105v45h-60v120h60v122H75c-24.813 0-45-20.188-45-45V75Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_firefox(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M511.998 221.04c-11.932 14.102-30 20-30 20 23.864-61.831-4.713-162.554-22.068-178.082 3.068 23.082-.593 35.15-4.932 47.082-33.627-44.475-95.254-92.644-156-110 66.169 34.712 131.424 166.831 126 233 0 0-11-22-44-31 38 77-2.424 170-100.051 170-70.398 0-89.22-29.085-98.949-43v-1c6.007 1.471 14.478 2.123 19.531 2.123 18.922 0 32.018-9.131 45.792-18.542 4.974-3.384 9.462-4.602 13.576-4.602 10.56 0 18.656 8.022 26.214 8.022 6.727 0 19.207-12.207 13.368-25.245-1.052-2.348-2.698-4.723-5.078-7.058-6.391-6.27-4.606-5.696-21.792-5.697-.006 0-10.01-10-10.016-10-4.187.001-6.748.362-11.445 1.529-14.086 3.549-40.783 33.471-57.359 33.471-9.772 0-37.789-23.695-37.789-66 0-14.102 16.709-24.854 17-25a11.924 11.924 0 0 1 2.898-.337c12.06 0 29.102 15.337 29.102 15.337s-6.169-25.088-19-36c1.309-6.253 45.54-22.772 48.303-24.808 3.781-2.763 8.225-6.892 10.697-11.982 1.745-3.199 4.3-8.521 4.009-15.21-.27-4.455-4.862-7.047-37.04-7.047-2.488 0-5.141.016-7.969.047l-.211.001c-10.728 0-24.184-10.966-24.789-19.001 4.654-17.015 18.438-39.838 34-50 0 0-.379-.014-1.087-.014-6.757 0-46.465 1.268-68.913 28.014-9.906-2.153-16.763-3-25.914-3H118c-12.061.007-52.894 11.536-61 14-5.252-3.301 1-38.39 1-59 0 0-25 22.689-25 86v4c-6.253 8.58-33 51.325-33 138.105C0 387.54 79.228 511.958 248.407 511.958c172.474 0 247.895-117.682 257.593-143.917-18 13-48 13-48 13 16.998-20.002 53.998-76.476 53.998-160.001Zm-86 199.999h4.086c-19.235 14.548-60.673 46.166-83.782 54.557-29.895 10.856-62.833 16.36-97.897 16.36-34.973 0-76.704-16.053-104.311-27.989-24.631-10.65-46.004-25.98-63.523-45.563-16.42-18.354-35.166-50.027-43.884-74.415-8.301-23.221-12.689-48.756-12.689-73.845 0-78.89 24.292-113.126 25.326-114.545l7.674-10.53 24.169-20.45 17.465-5.31c1.747-.531 8.308-2.264 19.365-2.271l.086 10c7.176 0 14.046-9.298 20.417-7.913l5.234 1.138c5.004 12.262 14.548 32.595 25.849 39.791-3.741 3.922-6.772 8.215-8.943 13.092l-.604.151-3.928 1.964c-10.145 5.075-29.11 36.778-29.11 72.778 0 70 18.965 133.002 153.949 154 55.552 8.642 122.129-41.213 141.382-88.985C481.998 165 380.998 62.958 380.998 62.958 552.5 202.04 391.5 421.039 391.5 421.039h34.498Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M511.998 221.04c-11.932 14.102-30 20-30 20 23.864-61.831-4.713-162.554-22.068-178.082 3.068 23.082-.593 35.15-4.932 47.082-33.627-44.475-95.254-92.644-156-110 66.169 34.712 131.424 166.831 126 233 0 0-11-22-44-31 38 77-2.424 170-100.051 170-70.398 0-89.22-29.085-98.949-43v-1c6.007 1.471 14.478 2.123 19.531 2.123 18.922 0 32.018-9.131 45.792-18.542 4.974-3.384 9.462-4.602 13.576-4.602 10.56 0 18.656 8.022 26.214 8.022 6.727 0 19.207-12.207 13.368-25.245-1.052-2.348-2.698-4.723-5.078-7.058-6.391-6.27-4.606-5.696-21.792-5.697-.006 0-10.01-10-10.016-10-4.187.001-6.748.362-11.445 1.529-14.086 3.549-40.783 33.471-57.359 33.471-9.772 0-37.789-23.695-37.789-66 0-14.102 16.709-24.854 17-25a11.924 11.924 0 0 1 2.898-.337c12.06 0 29.102 15.337 29.102 15.337s-6.169-25.088-19-36c1.309-6.253 45.54-22.772 48.303-24.808 3.781-2.763 8.225-6.892 10.697-11.982 1.745-3.199 4.3-8.521 4.009-15.21-.27-4.455-4.862-7.047-37.04-7.047-2.488 0-5.141.016-7.969.047l-.211.001c-10.728 0-24.184-10.966-24.789-19.001 4.654-17.015 18.438-39.838 34-50 0 0-.379-.014-1.087-.014-6.757 0-46.465 1.268-68.913 28.014-9.906-2.153-16.763-3-25.914-3H118c-12.061.007-52.894 11.536-61 14-5.252-3.301 1-38.39 1-59 0 0-25 22.689-25 86v4c-6.253 8.58-33 51.325-33 138.105C0 387.54 79.228 511.958 248.407 511.958c172.474 0 247.895-117.682 257.593-143.917-18 13-48 13-48 13 16.998-20.002 53.998-76.476 53.998-160.001Zm-86 199.999h4.086c-19.235 14.548-60.673 46.166-83.782 54.557-29.895 10.856-62.833 16.36-97.897 16.36-34.973 0-76.704-16.053-104.311-27.989-24.631-10.65-46.004-25.98-63.523-45.563-16.42-18.354-35.166-50.027-43.884-74.415-8.301-23.221-12.689-48.756-12.689-73.845 0-78.89 24.292-113.126 25.326-114.545l7.674-10.53 24.169-20.45 17.465-5.31c1.747-.531 8.308-2.264 19.365-2.271l.086 10c7.176 0 14.046-9.298 20.417-7.913l5.234 1.138c5.004 12.262 14.548 32.595 25.849 39.791-3.741 3.922-6.772 8.215-8.943 13.092l-.604.151-3.928 1.964c-10.145 5.075-29.11 36.778-29.11 72.778 0 70 18.965 133.002 153.949 154 55.552 8.642 122.129-41.213 141.382-88.985C481.998 165 380.998 62.958 380.998 62.958 552.5 202.04 391.5 421.039 391.5 421.039h34.498Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_ie(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 559 541" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M558.5 284.183c0 10.304-.465 19.81-1.471 28.861l-1.236 11.12H216.92a93.66 93.66 0 0 0 10.263 32.11c16.24 29.935 47.612 49.015 82.275 49.015 34.663 0 66.032-19.079 82.274-49.015l3.547-6.54h155.265l-5.673 16.553c-34.858 101.71-130.577 171.287-239.8 171.287-38.32 0-75.434-8.515-109.226-24.673-75.068 35.404-137.89 37.825-174.437 1.316-26.6-26.583-27.395-84.959-4.911-153.688 12.917-39.486 32.653-79.981 58.094-118.797l-29.74 38.046 14.302-57.14C87.139 110.828 188.12 30.954 305.073 30.954c5.42 0 10.828.172 16.225.514 84.304-36.663 161.192-41.765 193.198-9.925 30.89 31.075 34.164 80.922 12.832 140.933 20.334 36.986 31.172 78.584 31.172 121.707ZM309.458 430.289c-43.926 0-83.68-24.178-104.29-62.167a118.865 118.865 0 0 1-14.027-56.064v-12.895h341.96c.27-4.772.399-9.748.399-14.98 0-40.697-10.693-79.838-30.705-114.308l-2.978-5.13 2.09-5.552c20.45-54.294 18.425-96.318-5.092-119.976-10.346-10.292-31.675-15.328-60.685-13.26-31.14 2.22-68.65 12.404-107.57 29.625l-2.87 1.27-3.13-.237c-5.815-.44-11.644-.66-17.486-.66-81.312 0-154.067 42.84-194.66 108.666 23.628-21.388 48.95-38.375 77.893-52.285l73.43-35.29-59.472 55.681c-3.46 3.24-26.017 25.563-35.082 34.627-59.916 59.848-104.458 132.268-126.925 200.948-19.84 60.649-19.165 110.256-1.18 128.23 27.938 27.91 82.324 25.013 151.345-8.761l5.603-2.742 5.56 2.83c31.78 16.17 67.002 24.715 103.484 24.715 92.412 0 174.09-55.246 209.753-137.84H409.884c-21.435 34.135-59.082 55.555-100.426 55.555Zm82.623-194.643c-8.463-40.359-44.415-70.576-87.01-70.576-42.597 0-78.55 30.217-87.013 70.576h174.023Zm-200.726 11.798c3.374-60.011 53.306-107.374 113.715-107.374 60.408 0 110.34 47.363 113.713 107.375l.742 13.201H190.613l.742-13.202ZM426.73 62.02a254.538 254.538 0 0 1 75.345 62.917c6.777-27.785 4.315-48.1-6.483-59.029-12.12-12.082-36.201-13.68-68.862-3.888Zm86.556-13.773.046.046c22.185 22.401 22.698 60.53 5.044 108.39l-8.576 23.252-13.601-20.718c-25.692-39.135-62.893-69.643-106.395-87.026l-28.041-11.206 27.756-11.892c55.018-23.572 99.17-25.423 123.767-.846Zm-359.02 439.622c-32.501-24.086-58.868-55.647-76.733-91.938-18.22 44.125-19.461 77.184-4.48 92.161 13.632 13.606 42.36 13.881 81.214-.223ZM55.389 505.78c-27.926-27.91-21.8-81.003 11.517-146.366l13.169-25.836 9.741 27.313c17.705 49.64 52.258 91.742 97.329 118.948l20.334 12.274-21.63 9.811c-58.114 26.36-104.856 29.417-130.46 3.856Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 559 541" width={ `${ width }px` } height={ `${ height }px` } ><path d="M558.5 284.183c0 10.304-.465 19.81-1.471 28.861l-1.236 11.12H216.92a93.66 93.66 0 0 0 10.263 32.11c16.24 29.935 47.612 49.015 82.275 49.015 34.663 0 66.032-19.079 82.274-49.015l3.547-6.54h155.265l-5.673 16.553c-34.858 101.71-130.577 171.287-239.8 171.287-38.32 0-75.434-8.515-109.226-24.673-75.068 35.404-137.89 37.825-174.437 1.316-26.6-26.583-27.395-84.959-4.911-153.688 12.917-39.486 32.653-79.981 58.094-118.797l-29.74 38.046 14.302-57.14C87.139 110.828 188.12 30.954 305.073 30.954c5.42 0 10.828.172 16.225.514 84.304-36.663 161.192-41.765 193.198-9.925 30.89 31.075 34.164 80.922 12.832 140.933 20.334 36.986 31.172 78.584 31.172 121.707ZM309.458 430.289c-43.926 0-83.68-24.178-104.29-62.167a118.865 118.865 0 0 1-14.027-56.064v-12.895h341.96c.27-4.772.399-9.748.399-14.98 0-40.697-10.693-79.838-30.705-114.308l-2.978-5.13 2.09-5.552c20.45-54.294 18.425-96.318-5.092-119.976-10.346-10.292-31.675-15.328-60.685-13.26-31.14 2.22-68.65 12.404-107.57 29.625l-2.87 1.27-3.13-.237c-5.815-.44-11.644-.66-17.486-.66-81.312 0-154.067 42.84-194.66 108.666 23.628-21.388 48.95-38.375 77.893-52.285l73.43-35.29-59.472 55.681c-3.46 3.24-26.017 25.563-35.082 34.627-59.916 59.848-104.458 132.268-126.925 200.948-19.84 60.649-19.165 110.256-1.18 128.23 27.938 27.91 82.324 25.013 151.345-8.761l5.603-2.742 5.56 2.83c31.78 16.17 67.002 24.715 103.484 24.715 92.412 0 174.09-55.246 209.753-137.84H409.884c-21.435 34.135-59.082 55.555-100.426 55.555Zm82.623-194.643c-8.463-40.359-44.415-70.576-87.01-70.576-42.597 0-78.55 30.217-87.013 70.576h174.023Zm-200.726 11.798c3.374-60.011 53.306-107.374 113.715-107.374 60.408 0 110.34 47.363 113.713 107.375l.742 13.201H190.613l.742-13.202ZM426.73 62.02a254.538 254.538 0 0 1 75.345 62.917c6.777-27.785 4.315-48.1-6.483-59.029-12.12-12.082-36.201-13.68-68.862-3.888Zm86.556-13.773.046.046c22.185 22.401 22.698 60.53 5.044 108.39l-8.576 23.252-13.601-20.718c-25.692-39.135-62.893-69.643-106.395-87.026l-28.041-11.206 27.756-11.892c55.018-23.572 99.17-25.423 123.767-.846Zm-359.02 439.622c-32.501-24.086-58.868-55.647-76.733-91.938-18.22 44.125-19.461 77.184-4.48 92.161 13.632 13.606 42.36 13.881 81.214-.223ZM55.389 505.78c-27.926-27.91-21.8-81.003 11.517-146.366l13.169-25.836 9.741 27.313c17.705 49.64 52.258 91.742 97.329 118.948l20.334 12.274-21.63 9.811c-58.114 26.36-104.856 29.417-130.46 3.856Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_opera(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 494 558" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M247.365 530c30.078 0 57.883-5.877 83.518-17.639 25.605-11.774 48.745-29.29 69.647-52.73 22.663-25.061 39.226-51.979 49.697-80.81C460.74 350.048 466 316.878 466 279.341c0-37.532-5.257-70.68-15.78-99.506-10.479-28.818-27.058-55.752-49.708-80.751l-.081-.09c-20.946-23.528-44.273-41.264-69.918-53.187C304.91 33.945 277.17 28 247.365 28c-29.8 0-57.516 5.94-83.164 17.804-25.624 11.9-48.91 29.61-69.97 53.204l-.073.083c-22.848 25.192-39.594 52.313-50.212 81.304C33.312 209.371 28 242.315 28 279.343c0 37.035 5.314 70.003 15.95 98.981 10.607 28.981 27.343 56.079 50.208 81.294l.084.093c20.746 23.293 43.949 40.845 69.567 52.649 25.607 11.757 53.46 17.64 83.556 17.64Zm229.163-359.75C488.231 202.308 494 238.683 494 279.341c0 40.665-5.772 77.064-17.464 109.064-11.732 32.302-30.205 62.325-55.173 89.934-23.336 26.169-49.573 46.03-78.793 59.466C313.2 551.281 281.41 558 247.365 558c-34.064 0-65.904-6.725-95.256-20.202-29.21-13.459-55.497-33.338-78.735-59.417-25.212-27.814-43.844-57.99-55.714-90.421C5.838 355.749 0 319.532 0 279.343c0-40.183 5.836-76.375 17.657-108.585 11.882-32.444 30.525-62.644 55.723-90.436C96.9 53.98 123.232 33.958 152.427 20.4 181.827 6.8 213.557 0 247.365 0c33.817 0 65.575 6.806 94.935 20.41 29.21 13.579 55.59 33.632 79.003 59.92 25.008 27.611 43.488 57.64 55.225 89.92ZM247.365 523.776c-40.734 0-69.174-16.27-84.898-48.577-15.536-31.935-23.207-97.182-23.207-195.858 0-98.647 7.67-163.872 23.205-195.799 15.718-32.337 44.155-48.613 84.9-48.613 40.526 0 68.768 16.141 84.33 48.227 15.423 31.768 23.071 97.227 23.071 196.185 0 99.011-7.646 164.444-23.064 196.144-15.557 32.137-43.796 48.291-84.337 48.291Zm0-28c30.214 0 48.458-10.436 59.146-32.514 12.961-26.65 20.255-89.065 20.255-183.921 0-94.813-7.296-157.253-20.262-183.96-10.68-22.02-28.932-32.452-59.14-32.452-30.423 0-48.882 10.565-59.719 32.859-13.072 26.866-20.385 89.052-20.385 183.553 0 94.53 7.314 156.74 20.384 183.606 10.837 22.266 29.302 32.83 59.72 32.83Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 494 558" width={ `${ width }px` } height={ `${ height }px` } ><path d="M247.365 530c30.078 0 57.883-5.877 83.518-17.639 25.605-11.774 48.745-29.29 69.647-52.73 22.663-25.061 39.226-51.979 49.697-80.81C460.74 350.048 466 316.878 466 279.341c0-37.532-5.257-70.68-15.78-99.506-10.479-28.818-27.058-55.752-49.708-80.751l-.081-.09c-20.946-23.528-44.273-41.264-69.918-53.187C304.91 33.945 277.17 28 247.365 28c-29.8 0-57.516 5.94-83.164 17.804-25.624 11.9-48.91 29.61-69.97 53.204l-.073.083c-22.848 25.192-39.594 52.313-50.212 81.304C33.312 209.371 28 242.315 28 279.343c0 37.035 5.314 70.003 15.95 98.981 10.607 28.981 27.343 56.079 50.208 81.294l.084.093c20.746 23.293 43.949 40.845 69.567 52.649 25.607 11.757 53.46 17.64 83.556 17.64Zm229.163-359.75C488.231 202.308 494 238.683 494 279.341c0 40.665-5.772 77.064-17.464 109.064-11.732 32.302-30.205 62.325-55.173 89.934-23.336 26.169-49.573 46.03-78.793 59.466C313.2 551.281 281.41 558 247.365 558c-34.064 0-65.904-6.725-95.256-20.202-29.21-13.459-55.497-33.338-78.735-59.417-25.212-27.814-43.844-57.99-55.714-90.421C5.838 355.749 0 319.532 0 279.343c0-40.183 5.836-76.375 17.657-108.585 11.882-32.444 30.525-62.644 55.723-90.436C96.9 53.98 123.232 33.958 152.427 20.4 181.827 6.8 213.557 0 247.365 0c33.817 0 65.575 6.806 94.935 20.41 29.21 13.579 55.59 33.632 79.003 59.92 25.008 27.611 43.488 57.64 55.225 89.92ZM247.365 523.776c-40.734 0-69.174-16.27-84.898-48.577-15.536-31.935-23.207-97.182-23.207-195.858 0-98.647 7.67-163.872 23.205-195.799 15.718-32.337 44.155-48.613 84.9-48.613 40.526 0 68.768 16.141 84.33 48.227 15.423 31.768 23.071 97.227 23.071 196.185 0 99.011-7.646 164.444-23.064 196.144-15.557 32.137-43.796 48.291-84.337 48.291Zm0-28c30.214 0 48.458-10.436 59.146-32.514 12.961-26.65 20.255-89.065 20.255-183.921 0-94.813-7.296-157.253-20.262-183.96-10.68-22.02-28.932-32.452-59.14-32.452-30.423 0-48.882 10.565-59.719 32.859-13.072 26.866-20.385 89.052-20.385 183.553 0 94.53 7.314 156.74 20.384 183.606 10.837 22.266 29.302 32.83 59.72 32.83Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Browser_safari(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 497 497" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M248.5 0C111.257 0 0 111.257 0 248.5S111.257 497 248.5 497 497 385.743 497 248.5 385.743 0 248.5 0Zm0 461.5c-117.646 0-213-95.352-213-213s95.354-213 213-213 213 95.352 213 213-95.354 213-213 213Zm-47.18-245.483c-1.136 1.563-2.377 2.983-3.371 4.686-7.064 12.212-8.59 26.058-5.574 38.802l-37.062 141.502 95.886-101.174c15.762-2.166 30.388-11.111 38.979-25.916 2.058-3.585 3.55-7.313 4.721-11.11l6.851 3.444L341.69 78.208 195.25 213.002l6.07 3.015Zm27.37 22.4c1.457-2.52 3.515-4.366 5.787-5.822l26.98 13.49c.249 3.444-.177 6.924-2.023 10.118-4.899 8.484-15.762 11.396-24.246 6.497-8.486-4.935-11.396-15.762-6.497-24.282Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 497 497" width={ `${ width }px` } height={ `${ height }px` } ><path d="M248.5 0C111.257 0 0 111.257 0 248.5S111.257 497 248.5 497 497 385.743 497 248.5 385.743 0 248.5 0Zm0 461.5c-117.646 0-213-95.352-213-213s95.354-213 213-213 213 95.352 213 213-95.354 213-213 213Zm-47.18-245.483c-1.136 1.563-2.377 2.983-3.371 4.686-7.064 12.212-8.59 26.058-5.574 38.802l-37.062 141.502 95.886-101.174c15.762-2.166 30.388-11.111 38.979-25.916 2.058-3.585 3.55-7.313 4.721-11.11l6.851 3.444L341.69 78.208 195.25 213.002l6.07 3.015Zm27.37 22.4c1.457-2.52 3.515-4.366 5.787-5.822l26.98 13.49c.249 3.444-.177 6.924-2.023 10.118-4.899 8.484-15.762 11.396-24.246 6.497-8.486-4.935-11.396-15.762-6.497-24.282Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Buildings(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M14.763.075A.5.5 0 0 1 15 .5v15a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V14h-1v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V10a.5.5 0 0 1 .342-.474L6 7.64V4.5a.5.5 0 0 1 .276-.447l8-4a.5.5 0 0 1 .487.022ZM6 8.694 1 10.36V15h5V8.694ZM7 15h2v-1.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5V15h2V1.309l-7 3.5V15Z" />
|
||||
<path d="M2 11h1v1H2v-1Zm2 0h1v1H4v-1Zm-2 2h1v1H2v-1Zm2 0h1v1H4v-1Zm4-4h1v1H8V9Zm2 0h1v1h-1V9Zm-2 2h1v1H8v-1Zm2 0h1v1h-1v-1Zm2-2h1v1h-1V9Zm0 2h1v1h-1v-1ZM8 7h1v1H8V7Zm2 0h1v1h-1V7Zm2 0h1v1h-1V7ZM8 5h1v1H8V5Zm2 0h1v1h-1V5Zm2 0h1v1h-1V5Zm0-2h1v1h-1V3Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M14.763.075A.5.5 0 0 1 15 .5v15a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V14h-1v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V10a.5.5 0 0 1 .342-.474L6 7.64V4.5a.5.5 0 0 1 .276-.447l8-4a.5.5 0 0 1 .487.022ZM6 8.694 1 10.36V15h5V8.694ZM7 15h2v-1.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5V15h2V1.309l-7 3.5V15Z"/><path d="M2 11h1v1H2v-1Zm2 0h1v1H4v-1Zm-2 2h1v1H2v-1Zm2 0h1v1H4v-1Zm4-4h1v1H8V9Zm2 0h1v1h-1V9Zm-2 2h1v1H8v-1Zm2 0h1v1h-1v-1Zm2-2h1v1h-1V9Zm0 2h1v1h-1v-1ZM8 7h1v1H8V7Zm2 0h1v1h-1V7Zm2 0h1v1h-1V7ZM8 5h1v1H8V5Zm2 0h1v1h-1V5Zm2 0h1v1h-1V5Zm0-2h1v1h-1V3Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Bullhorn(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0v-.214c-2.162-1.241-4.49-1.843-6.912-2.083l.405 2.712A1 1 0 0 1 5.51 15.1h-.548a1 1 0 0 1-.916-.599l-1.85-3.49a68.14 68.14 0 0 0-.202-.003A2.014 2.014 0 0 1 0 9V7a2.02 2.02 0 0 1 1.992-2.013 74.663 74.663 0 0 0 2.483-.075c3.043-.154 6.148-.849 8.525-2.199V2.5zm1 0v11a.5.5 0 0 0 1 0v-11a.5.5 0 0 0-1 0zm-1 1.35c-2.344 1.205-5.209 1.842-8 2.033v4.233c.18.01.359.022.537.036 2.568.189 5.093.744 7.463 1.993V3.85zm-9 6.215v-4.13a95.09 95.09 0 0 1-1.992.052A1.02 1.02 0 0 0 1 7v2c0 .55.448 1.002 1.006 1.009A60.49 60.49 0 0 1 4 10.065zm-.657.975 1.609 3.037.01.024h.548l-.002-.014-.443-2.966a68.019 68.019 0 0 0-1.722-.082z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0v-.214c-2.162-1.241-4.49-1.843-6.912-2.083l.405 2.712A1 1 0 0 1 5.51 15.1h-.548a1 1 0 0 1-.916-.599l-1.85-3.49a68.14 68.14 0 0 0-.202-.003A2.014 2.014 0 0 1 0 9V7a2.02 2.02 0 0 1 1.992-2.013 74.663 74.663 0 0 0 2.483-.075c3.043-.154 6.148-.849 8.525-2.199V2.5zm1 0v11a.5.5 0 0 0 1 0v-11a.5.5 0 0 0-1 0zm-1 1.35c-2.344 1.205-5.209 1.842-8 2.033v4.233c.18.01.359.022.537.036 2.568.189 5.093.744 7.463 1.993V3.85zm-9 6.215v-4.13a95.09 95.09 0 0 1-1.992.052A1.02 1.02 0 0 0 1 7v2c0 .55.448 1.002 1.006 1.009A60.49 60.49 0 0 1 4 10.065zm-.657.975 1.609 3.037.01.024h.548l-.002-.014-.443-2.966a68.019 68.019 0 0 0-1.722-.082z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Calendar(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M400 64h-48V12c0-6.627-5.373-12-12-12h-8c-6.627 0-12 5.373-12 12v52H128V12c0-6.627-5.373-12-12-12h-8c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zM48 96h352c8.822 0 16 7.178 16 16v48H32v-48c0-8.822 7.178-16 16-16zm352 384H48c-8.822 0-16-7.178-16-16V192h384v272c0 8.822-7.178 16-16 16z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 448 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M400 64h-48V12c0-6.627-5.373-12-12-12h-8c-6.627 0-12 5.373-12 12v52H128V12c0-6.627-5.373-12-12-12h-8c-6.627 0-12 5.373-12 12v52H48C21.49 64 0 85.49 0 112v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zM48 96h352c8.822 0 16 7.178 16 16v48H32v-48c0-8.822 7.178-16 16-16zm352 384H48c-8.822 0-16-7.178-16-16V192h384v272c0 8.822-7.178 16-16 16z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,13 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Call(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 62 77" width={`${width}px`} height={`${height}px`}>
|
||||
<g>
|
||||
<path d="M31 5.125A25.625 25.625 0 0 0 5.375 30.75v5.125H10.5A5.125 5.125 0 0 1 15.625 41v15.375A5.125 5.125 0 0 1 10.5 61.5H5.375A5.125 5.125 0 0 1 .25 56.375V30.75a30.75 30.75 0 1 1 61.5 0V61.5a12.812 12.812 0 0 1-12.813 12.813H38.002a5.125 5.125 0 0 1-4.438 2.562h-5.126a5.125 5.125 0 0 1 0-10.25h5.125a5.124 5.124 0 0 1 4.439 2.563h10.937a7.687 7.687 0 0 0 7.687-7.688H51.5a5.125 5.125 0 0 1-5.125-5.125V41a5.125 5.125 0 0 1 5.125-5.125h5.125V30.75A25.625 25.625 0 0 0 31 5.125Z" />
|
||||
</g>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 62 77" width={ `${ width }px` } height={ `${ height }px` } ><g><path d="M31 5.125A25.625 25.625 0 0 0 5.375 30.75v5.125H10.5A5.125 5.125 0 0 1 15.625 41v15.375A5.125 5.125 0 0 1 10.5 61.5H5.375A5.125 5.125 0 0 1 .25 56.375V30.75a30.75 30.75 0 1 1 61.5 0V61.5a12.812 12.812 0 0 1-12.813 12.813H38.002a5.125 5.125 0 0 1-4.438 2.562h-5.126a5.125 5.125 0 0 1 0-10.25h5.125a5.124 5.124 0 0 1 4.439 2.563h10.937a7.687 7.687 0 0 0 7.687-7.688H51.5a5.125 5.125 0 0 1-5.125-5.125V41a5.125 5.125 0 0 1 5.125-5.125h5.125V30.75A25.625 25.625 0 0 0 31 5.125Z"/></g></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Camera(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M324.3 64c3.3 0 6.3 2.1 7.5 5.2l22.1 58.8H464c8.8 0 16 7.2 16 16v288c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h110.2l20.1-53.6c2.3-6.2 8.3-10.4 15-10.4h131m0-32h-131c-20 0-37.9 12.4-44.9 31.1L136 96H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48h-88l-14.3-38c-5.8-15.7-20.7-26-37.4-26zM256 408c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M324.3 64c3.3 0 6.3 2.1 7.5 5.2l22.1 58.8H464c8.8 0 16 7.2 16 16v288c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h110.2l20.1-53.6c2.3-6.2 8.3-10.4 15-10.4h131m0-32h-131c-20 0-37.9 12.4-44.9 31.1L136 96H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48h-88l-14.3-38c-5.8-15.7-20.7-26-37.4-26zM256 408c-66.2 0-120-53.8-120-120s53.8-120 120-120 120 53.8 120 120-53.8 120-120 120zm0-208c-48.5 0-88 39.5-88 88s39.5 88 88 88 88-39.5 88-88-39.5-88-88-88z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Camera_video(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2V5zm11.5 5.175 3.5 1.556V4.269l-3.5 1.556v4.35zM2 4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h7.5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H2z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2V5zm11.5 5.175 3.5 1.556V4.269l-3.5 1.556v4.35zM2 4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h7.5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H2z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Camera_video_off(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M10.961 12.365a1.99 1.99 0 0 0 .522-1.103l3.11 1.382A1 1 0 0 0 16 11.731V4.269a1 1 0 0 0-1.406-.913l-3.111 1.382A2 2 0 0 0 9.5 3H4.272l.714 1H9.5a1 1 0 0 1 1 1v6a1 1 0 0 1-.144.518l.605.847zM1.428 4.18A.999.999 0 0 0 1 5v6a1 1 0 0 0 1 1h5.014l.714 1H2a2 2 0 0 1-2-2V5c0-.675.334-1.272.847-1.634l.58.814zM15 11.73l-3.5-1.555v-4.35L15 4.269v7.462zm-4.407 3.56-10-14 .814-.58 10 14-.814.58z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M10.961 12.365a1.99 1.99 0 0 0 .522-1.103l3.11 1.382A1 1 0 0 0 16 11.731V4.269a1 1 0 0 0-1.406-.913l-3.111 1.382A2 2 0 0 0 9.5 3H4.272l.714 1H9.5a1 1 0 0 1 1 1v6a1 1 0 0 1-.144.518l.605.847zM1.428 4.18A.999.999 0 0 0 1 5v6a1 1 0 0 0 1 1h5.014l.714 1H2a2 2 0 0 1-2-2V5c0-.675.334-1.272.847-1.634l.58.814zM15 11.73l-3.5-1.555v-4.35L15 4.269v7.462zm-4.407 3.56-10-14 .814-.58 10 14-.814.58z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Card_list(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z" />
|
||||
<path d="M5 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 8zm0-2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0 5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-1-5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zM4 8a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm0 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z"/><path d="M5 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 8zm0-2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0 5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-1-5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zM4 8a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm0 2.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Card_text(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z" />
|
||||
<path d="M3 5.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3 8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 8zm0 2.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z"/><path d="M3 5.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3 8a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 8zm0 2.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Caret_down_fill(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Caret_right_fill(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chat_dots(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" />
|
||||
<path d="m2.165 15.803.02-.004c1.83-.363 2.948-.842 3.468-1.105A9.06 9.06 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.437 10.437 0 0 1-.524 2.318l-.003.011a10.722 10.722 0 0 1-.244.637c-.079.186.074.394.273.362a21.673 21.673 0 0 0 .693-.125zm.8-3.108a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6c0 3.193-3.004 6-7 6a8.06 8.06 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a10.97 10.97 0 0 0 .398-2z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"/><path d="m2.165 15.803.02-.004c1.83-.363 2.948-.842 3.468-1.105A9.06 9.06 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.437 10.437 0 0 1-.524 2.318l-.003.011a10.722 10.722 0 0 1-.244.637c-.079.186.074.394.273.362a21.673 21.673 0 0 0 .693-.125zm.8-3.108a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6c0 3.193-3.004 6-7 6a8.06 8.06 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a10.97 10.97 0 0 0 .398-2z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chat_left_text(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z" />
|
||||
<path d="M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6zm0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"/><path d="M3 3.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3 6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9A.5.5 0 0 1 3 6zm0 2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chat_square_quote(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z" />
|
||||
<path d="M7.066 4.76A1.665 1.665 0 0 0 4 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"/><path d="M7.066 4.76A1.665 1.665 0 0 0 4 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Check(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Check_circle(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 464c-118.664 0-216-96.055-216-216 0-118.663 96.055-216 216-216 118.664 0 216 96.055 216 216 0 118.663-96.055 216-216 216zm141.63-274.961L217.15 376.071c-4.705 4.667-12.303 4.637-16.97-.068l-85.878-86.572c-4.667-4.705-4.637-12.303.068-16.97l8.52-8.451c4.705-4.667 12.303-4.637 16.97.068l68.976 69.533 163.441-162.13c4.705-4.667 12.303-4.637 16.97.068l8.451 8.52c4.668 4.705 4.637 12.303-.068 16.97z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 464c-118.664 0-216-96.055-216-216 0-118.663 96.055-216 216-216 118.664 0 216 96.055 216 216 0 118.663-96.055 216-216 216zm141.63-274.961L217.15 376.071c-4.705 4.667-12.303 4.637-16.97-.068l-85.878-86.572c-4.667-4.705-4.637-12.303.068-16.97l8.52-8.451c4.705-4.667 12.303-4.637 16.97.068l68.976 69.533 163.441-162.13c4.705-4.667 12.303-4.637 16.97.068l8.451 8.52c4.668 4.705 4.637 12.303-.068 16.97z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Check_circle_fill(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chevron_down(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chevron_left(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chevron_right(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Chevron_up(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Circle(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Circle_fill(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<circle cx="8" cy="8" r="8" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><circle cx="8" cy="8" r="8"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,23 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Click_hesitation(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 33 34" width={`${width}px`} height={`${height}px`}>
|
||||
<path fill="transparent" d="M1 1.5h32v32H1z" />
|
||||
<path fill="transparent" d="M.64 5.683h27.635v27.634H.64z" />
|
||||
<path
|
||||
d="M12.297 7.41a1.295 1.295 0 0 1 1.296 1.296V19.5a.863.863 0 1 0 1.727 0v-4.375l.148-.007c.548-.02 1.1-.014 1.41.047.231.046.507.166.773.314.133.073.26.254.26.543V19.5a.864.864 0 0 0 1.727 0v-2.703a8.64 8.64 0 0 1 .183-.017c.545-.042 1.008-.018 1.222.069.204.08.519.357.84.742.14.166.259.329.345.448v2.324a.863.863 0 1 0 1.727 0v-1.727h.591a1.727 1.727 0 0 1 1.718 1.9l-.468 4.69a4.318 4.318 0 0 1-.547 1.71l-2.41 4.218a.863.863 0 0 1-.749.436H11.063a.864.864 0 0 1-.719-.386L7.87 27.491a2.591 2.591 0 0 1-.42-1.15l-.595-5.363a.864.864 0 0 1 .689-.943l1.732-.345v1.537a.864.864 0 0 0 1.727 0V8.706a1.295 1.295 0 0 1 1.295-1.296Zm3.023 5.986v-4.69a3.022 3.022 0 1 0-6.045 0v9.222l-2.073.415a2.591 2.591 0 0 0-2.065 2.825l.596 5.365c.076.685.316 1.343.7 1.917l2.474 3.713a2.59 2.59 0 0 0 2.155 1.154H22.09a2.591 2.591 0 0 0 2.249-1.306l2.409-4.216a6.046 6.046 0 0 0 .767-2.399l.468-4.689a3.454 3.454 0 0 0-3.437-3.798h-1.003a8.85 8.85 0 0 0-.337-.428c-.33-.396-.881-.981-1.52-1.237-.629-.252-1.461-.228-2-.186l-.228.02a2.176 2.176 0 0 0-.967-1.108 4.55 4.55 0 0 0-1.275-.498c-.535-.107-1.276-.1-1.813-.08l-.083.004Z"
|
||||
fillOpacity=".54"
|
||||
/>
|
||||
<path fill="transparent" d="M15 .683h14v14H15z" />
|
||||
<path
|
||||
d="m23.717 6.894-.003.004-.524.535c-.218.22-.432.458-.583.777-.103.22-.17.461-.202.743h-.31c.036-.462.24-.881.551-1.197l.721-.733c.297-.291.473-.694.473-1.132 0-.883-.721-1.604-1.604-1.604-.732 0-1.352.495-1.544 1.166h-.302a1.896 1.896 0 0 1 3.741.438c0 .393-.16.75-.414 1.003ZM22.236 1.37a6.273 6.273 0 0 0-6.271 6.271c0 3.462 2.81 6.27 6.27 6.27 3.462 0 6.271-2.808 6.271-6.27 0-3.462-2.809-6.27-6.27-6.27Zm-.146 9.917v-.292h.291v.292h-.291Z"
|
||||
fillOpacity=".87"
|
||||
stroke="#fff"
|
||||
strokeWidth=".875"
|
||||
/>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 33 34" width={ `${ width }px` } height={ `${ height }px` } ><path fill="transparent" d="M1 1.5h32v32H1z"/><path fill="transparent" d="M.64 5.683h27.635v27.634H.64z"/><path d="M12.297 7.41a1.295 1.295 0 0 1 1.296 1.296V19.5a.863.863 0 1 0 1.727 0v-4.375l.148-.007c.548-.02 1.1-.014 1.41.047.231.046.507.166.773.314.133.073.26.254.26.543V19.5a.864.864 0 0 0 1.727 0v-2.703a8.64 8.64 0 0 1 .183-.017c.545-.042 1.008-.018 1.222.069.204.08.519.357.84.742.14.166.259.329.345.448v2.324a.863.863 0 1 0 1.727 0v-1.727h.591a1.727 1.727 0 0 1 1.718 1.9l-.468 4.69a4.318 4.318 0 0 1-.547 1.71l-2.41 4.218a.863.863 0 0 1-.749.436H11.063a.864.864 0 0 1-.719-.386L7.87 27.491a2.591 2.591 0 0 1-.42-1.15l-.595-5.363a.864.864 0 0 1 .689-.943l1.732-.345v1.537a.864.864 0 0 0 1.727 0V8.706a1.295 1.295 0 0 1 1.295-1.296Zm3.023 5.986v-4.69a3.022 3.022 0 1 0-6.045 0v9.222l-2.073.415a2.591 2.591 0 0 0-2.065 2.825l.596 5.365c.076.685.316 1.343.7 1.917l2.474 3.713a2.59 2.59 0 0 0 2.155 1.154H22.09a2.591 2.591 0 0 0 2.249-1.306l2.409-4.216a6.046 6.046 0 0 0 .767-2.399l.468-4.689a3.454 3.454 0 0 0-3.437-3.798h-1.003a8.85 8.85 0 0 0-.337-.428c-.33-.396-.881-.981-1.52-1.237-.629-.252-1.461-.228-2-.186l-.228.02a2.176 2.176 0 0 0-.967-1.108 4.55 4.55 0 0 0-1.275-.498c-.535-.107-1.276-.1-1.813-.08l-.083.004Z" fillOpacity=".54"/><path fill="transparent" d="M15 .683h14v14H15z"/><path d="m23.717 6.894-.003.004-.524.535c-.218.22-.432.458-.583.777-.103.22-.17.461-.202.743h-.31c.036-.462.24-.881.551-1.197l.721-.733c.297-.291.473-.694.473-1.132 0-.883-.721-1.604-1.604-1.604-.732 0-1.352.495-1.544 1.166h-.302a1.896 1.896 0 0 1 3.741.438c0 .393-.16.75-.414 1.003ZM22.236 1.37a6.273 6.273 0 0 0-6.271 6.271c0 3.462 2.81 6.27 6.27 6.27 3.462 0 6.271-2.808 6.271-6.27 0-3.462-2.809-6.27-6.27-6.27Zm-.146 9.917v-.292h.291v.292h-.291Z" fillOpacity=".87" stroke="#fff" strokeWidth=".875"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,24 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Click_rage(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 31 30"
|
||||
fill="none"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path fill="transparent" d="M1.75 1h27.999v28h-28z" />
|
||||
<path
|
||||
d="M6.734 24.016a12.749 12.749 0 1 0 18.03-18.03 12.749 12.749 0 0 0-18.03 18.03Zm18.56.53a13.5 13.5 0 1 1-19.09-19.09 13.5 13.5 0 0 1 19.09 19.09Z"
|
||||
stroke="#000"
|
||||
/>
|
||||
<path
|
||||
d="M9.246 22.757a.875.875 0 0 0 1.195-.32 6.123 6.123 0 0 1 5.306-3.062 6.123 6.123 0 0 1 5.306 3.062.875.875 0 0 0 1.516-.875 7.87 7.87 0 0 0-6.822-3.937 7.874 7.874 0 0 0-6.821 3.937.875.875 0 0 0 .32 1.195ZM21.48 8.092a.875.875 0 1 1 .784 1.565l-1.765.882c.308.472.498 1.12.498 1.836 0 1.449-.784 2.625-1.75 2.625s-1.75-1.176-1.75-2.625c0-.433.07-.84.193-1.2a.879.879 0 0 1 .29-1.333l3.5-1.75Zm-11.465 0a.875.875 0 0 0-.784 1.565l1.765.882a3.395 3.395 0 0 0-.498 1.836c0 1.449.784 2.625 1.75 2.625s1.75-1.176 1.75-2.625c0-.433-.07-.84-.193-1.2a.879.879 0 0 0-.29-1.333l-3.5-1.75Z"
|
||||
fill="#000"
|
||||
/>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 31 30" fill="none" width={ `${ width }px` } height={ `${ height }px` } ><path fill="transparent" d="M1.75 1h27.999v28h-28z"/><path d="M6.734 24.016a12.749 12.749 0 1 0 18.03-18.03 12.749 12.749 0 0 0-18.03 18.03Zm18.56.53a13.5 13.5 0 1 1-19.09-19.09 13.5 13.5 0 0 1 19.09 19.09Z" stroke="#000"/><path d="M9.246 22.757a.875.875 0 0 0 1.195-.32 6.123 6.123 0 0 1 5.306-3.062 6.123 6.123 0 0 1 5.306 3.062.875.875 0 0 0 1.516-.875 7.87 7.87 0 0 0-6.822-3.937 7.874 7.874 0 0 0-6.821 3.937.875.875 0 0 0 .32 1.195ZM21.48 8.092a.875.875 0 1 1 .784 1.565l-1.765.882c.308.472.498 1.12.498 1.836 0 1.449-.784 2.625-1.75 2.625s-1.75-1.176-1.75-2.625c0-.433.07-.84.193-1.2a.879.879 0 0 1 .29-1.333l3.5-1.75Zm-11.465 0a.875.875 0 0 0-.784 1.565l1.765.882a3.395 3.395 0 0 0-.498 1.836c0 1.449.784 2.625 1.75 2.625s1.75-1.176 1.75-2.625c0-.433-.07-.84-.193-1.2a.879.879 0 0 0-.29-1.333l-3.5-1.75Z" fill="#000"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,18 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Clipboard_check(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg
|
||||
fill="currentColor"
|
||||
viewBox="0 0 16 16"
|
||||
width={`${width}px`}
|
||||
height={`${height}px`}
|
||||
>
|
||||
<path d="M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z" />
|
||||
<path d="M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z" />
|
||||
<path d="M10.854 7.854a.5.5 0 0 0-.708-.708L7.5 9.793 6.354 8.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0l3-3Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg fill="currentColor" viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z"/><path d="M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z"/><path d="M10.854 7.854a.5.5 0 0 0-.708-.708L7.5 9.793 6.354 8.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0l3-3Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Clock(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216zm-148.9 88.3-81.2-59c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h14c6.6 0 12 5.4 12 12v146.3l70.5 51.3c5.4 3.9 6.5 11.4 2.6 16.8l-8.2 11.3c-3.9 5.3-11.4 6.5-16.8 2.6z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 512 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216zm-148.9 88.3-81.2-59c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h14c6.6 0 12 5.4 12 12v146.3l70.5 51.3c5.4 3.9 6.5 11.4 2.6 16.8l-8.2 11.3c-3.9 5.3-11.4 6.5-16.8 2.6z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,13 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Clock_history(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8.515 1.019A7 7 0 0 0 8 1V0a8 8 0 0 1 .589.022l-.074.997zm2.004.45a7.003 7.003 0 0 0-.985-.299l.219-.976c.383.086.76.2 1.126.342l-.36.933zm1.37.71a7.01 7.01 0 0 0-.439-.27l.493-.87a8.025 8.025 0 0 1 .979.654l-.615.789a6.996 6.996 0 0 0-.418-.302zm1.834 1.79a6.99 6.99 0 0 0-.653-.796l.724-.69c.27.285.52.59.747.91l-.818.576zm.744 1.352a7.08 7.08 0 0 0-.214-.468l.893-.45a7.976 7.976 0 0 1 .45 1.088l-.95.313a7.023 7.023 0 0 0-.179-.483zm.53 2.507a6.991 6.991 0 0 0-.1-1.025l.985-.17c.067.386.106.778.116 1.17l-1 .025zm-.131 1.538c.033-.17.06-.339.081-.51l.993.123a7.957 7.957 0 0 1-.23 1.155l-.964-.267c.046-.165.086-.332.12-.501zm-.952 2.379c.184-.29.346-.594.486-.908l.914.405c-.16.36-.345.706-.555 1.038l-.845-.535zm-.964 1.205c.122-.122.239-.248.35-.378l.758.653a8.073 8.073 0 0 1-.401.432l-.707-.707z" />
|
||||
<path d="M8 1a7 7 0 1 0 4.95 11.95l.707.707A8.001 8.001 0 1 1 8 0v1z" />
|
||||
<path d="M7.5 3a.5.5 0 0 1 .5.5v5.21l3.248 1.856a.5.5 0 0 1-.496.868l-3.5-2A.5.5 0 0 1 7 9V3.5a.5.5 0 0 1 .5-.5z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8.515 1.019A7 7 0 0 0 8 1V0a8 8 0 0 1 .589.022l-.074.997zm2.004.45a7.003 7.003 0 0 0-.985-.299l.219-.976c.383.086.76.2 1.126.342l-.36.933zm1.37.71a7.01 7.01 0 0 0-.439-.27l.493-.87a8.025 8.025 0 0 1 .979.654l-.615.789a6.996 6.996 0 0 0-.418-.302zm1.834 1.79a6.99 6.99 0 0 0-.653-.796l.724-.69c.27.285.52.59.747.91l-.818.576zm.744 1.352a7.08 7.08 0 0 0-.214-.468l.893-.45a7.976 7.976 0 0 1 .45 1.088l-.95.313a7.023 7.023 0 0 0-.179-.483zm.53 2.507a6.991 6.991 0 0 0-.1-1.025l.985-.17c.067.386.106.778.116 1.17l-1 .025zm-.131 1.538c.033-.17.06-.339.081-.51l.993.123a7.957 7.957 0 0 1-.23 1.155l-.964-.267c.046-.165.086-.332.12-.501zm-.952 2.379c.184-.29.346-.594.486-.908l.914.405c-.16.36-.345.706-.555 1.038l-.845-.535zm-.964 1.205c.122-.122.239-.248.35-.378l.758.653a8.073 8.073 0 0 1-.401.432l-.707-.707z"/><path d="M8 1a7 7 0 1 0 4.95 11.95l.707.707A8.001 8.001 0 1 1 8 0v1z"/><path d="M7.5 3a.5.5 0 0 1 .5.5v5.21l3.248 1.856a.5.5 0 0 1-.496.868l-3.5-2A.5.5 0 0 1 7 9V3.5a.5.5 0 0 1 .5-.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Close(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M13.854 2.146a.5.5 0 0 1 0 .708l-11 11a.5.5 0 0 1-.708-.708l11-11a.5.5 0 0 1 .708 0Z" />
|
||||
<path d="M2.146 2.146a.5.5 0 0 0 0 .708l11 11a.5.5 0 0 0 .708-.708l-11-11a.5.5 0 0 0-.708 0Z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M13.854 2.146a.5.5 0 0 1 0 .708l-11 11a.5.5 0 0 1-.708-.708l11-11a.5.5 0 0 1 .708 0Z"/><path d="M2.146 2.146a.5.5 0 0 0 0 .708l11 11a.5.5 0 0 0 .708-.708l-11-11a.5.5 0 0 0-.708 0Z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Code(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M.5 0a.5.5 0 0 1 .5.5v15a.5.5 0 0 1-1 0V.5A.5.5 0 0 1 .5 0zM2 1.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-1zm2 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-1zm2 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5v-1zm2 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-1z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M.5 0a.5.5 0 0 1 .5.5v15a.5.5 0 0 1-1 0V.5A.5.5 0 0 1 .5 0zM2 1.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-1zm2 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-1zm2 4a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5v-1zm2 4a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-1z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Cog(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z" />
|
||||
<path d="M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z"/><path d="M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Cogs(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 640 512" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="m538.6 196.4-2.5-3.9c-4.1.3-8.1.3-12.2 0l-2.5 4c-5.8 9.2-17.1 13.4-27.5 10.1-13.8-4.3-23-8.8-34.3-18.1-9-7.4-11.2-20.3-5.4-30.4l2.5-4.3c-2.3-3.4-4.3-6.9-6.1-10.6h-9.1c-11.6 0-21.4-8.2-23.6-19.6-2.6-13.7-2.7-24.2.1-38.5 2.1-11.3 12.1-19.5 23.6-19.5h9c1.8-3.7 3.8-7.2 6.1-10.6l-2.6-4.5c-5.8-10-3.6-22.7 5.2-30.3 10.6-9.1 19.7-14.3 33.5-19 10.8-3.7 22.7.7 28.5 10.6l2.6 4.4c4.1-.3 8.1-.3 12.2 0l2.6-4.4c5.8-9.9 17.7-14.3 28.6-10.5 13.3 4.5 22.3 9.6 33.5 19.1 8.8 7.5 10.9 20.2 5.1 30.2l-2.6 4.4c2.3 3.4 4.3 6.9 6.1 10.6h5.1c11.6 0 21.4 8.2 23.6 19.6 2.6 13.7 2.7 24.2-.1 38.5-2.1 11.3-12.1 19.5-23.6 19.5h-5c-1.8 3.7-3.8 7.2-6.1 10.6l2.5 4.3c5.9 10.2 3.5 23.1-5.5 30.5-10.7 8.8-19.9 13.4-34 17.9-10.5 3.3-21.9-.8-27.7-10.1zm12.2-34.5 10.6 18.3c6.7-2.8 12.9-6.4 18.7-10.8l-10.6-18.3 6.4-7.5c4.8-5.7 8.6-12.1 11-19.1l3.3-9.3h21.1c.9-7.1.9-14.4 0-21.5h-21.1l-3.3-9.3c-2.5-7-6.2-13.4-11-19.1l-6.4-7.5L580 39.4c-5.7-4.4-12-8-18.7-10.8l-10.6 18.3-9.7-1.8c-7.3-1.4-14.8-1.4-22.1 0l-9.7 1.8-10.6-18.3C492 31.3 485.7 35 480 39.4l10.6 18.3-6.4 7.5c-4.8 5.7-8.6 12.1-11 19.1l-3.3 9.3h-21.1c-.9 7.1-.9 14.4 0 21.5h21.1l3.3 9.3c2.5 7 6.2 13.4 11 19.1l6.4 7.5-10.6 18.4c5.7 4.4 12 8 18.7 10.8l10.6-18.3 9.7 1.8c7.3 1.4 14.8 1.4 22.1 0l9.7-1.8zM145.3 454.4v-31.6c-12.9-5.5-25.1-12.6-36.4-21.1l-27.5 15.9c-9.8 5.6-22.1 3.7-29.7-4.6-24.2-26.3-38.5-49.5-50.6-88.1-3.4-10.7 1.1-22.3 10.8-28L39.2 281c-1.7-14-1.7-28.1 0-42.1l-27.3-15.8c-9.7-5.6-14.2-17.3-10.8-28 12.1-38.4 26.2-61.6 50.6-88.1 7.6-8.3 20-10.2 29.7-4.6l27.4 15.9c11.3-8.5 23.5-15.5 36.4-21.1V65.6c0-11.3 7.8-21 18.8-23.4 34.7-7.8 62-8.7 101.7 0 11 2.4 18.9 12.2 18.9 23.4v31.6c12.9 5.5 25.1 12.6 36.4 21l27.4-15.8c9.8-5.6 22.2-3.7 29.8 4.6 26.9 29.6 41.5 55.9 52.1 88.5 3.4 10.5-.8 21.9-10.2 27.7l-25 15.8c1.7 14 1.7 28.1 0 42.1l28.1 17.5c8.6 5.4 13 15.6 10.8 25.5-6.9 31.3-33 64.6-55.9 89.2-7.6 8.2-19.9 10-29.6 4.4L321 401.8c-11.3 8.5-23.5 15.5-36.4 21.1v31.6c0 11.2-7.8 21-18.8 23.4-37.5 8.3-64.9 8.2-101.9 0-10.8-2.5-18.6-12.3-18.6-23.5zm32-6.2c24.8 5 50.5 5 75.3 0v-47.7l10.7-3.8c16.8-5.9 32.3-14.9 45.9-26.5l8.6-7.4 41.4 23.9c16.8-19.1 34-41.3 42.1-65.2l-41.4-23.9 2.1-11.1c3.2-17.6 3.2-35.5 0-53.1l-2.1-11.1 41.4-23.9c-8.1-23.9-25.3-46.2-42.1-65.2l-41.4 23.9-8.6-7.4c-13.6-11.7-29-20.6-45.9-26.5l-10.7-3.8V71.8c-24.8-5-50.5-5-75.3 0v47.7l-10.7 3.8c-16.8 5.9-32.3 14.9-45.9 26.5l-8.6 7.4-41.4-23.9A192.19 192.19 0 0 0 33 198.5l41.4 23.9-2.1 11.1c-3.2 17.6-3.2 35.5 0 53.1l2.1 11.1L33 321.6c8.1 23.9 20.9 46.2 37.7 65.2l41.4-23.9 8.6 7.4c13.6 11.7 29 20.6 45.9 26.5l10.7 3.8v47.6zm38.4-105.3c-45.7 0-82.9-37.2-82.9-82.9s37.2-82.9 82.9-82.9 82.9 37.2 82.9 82.9-37.2 82.9-82.9 82.9zm0-133.8c-28 0-50.9 22.8-50.9 50.9s22.8 50.9 50.9 50.9c28 0 50.9-22.8 50.9-50.9s-22.8-50.9-50.9-50.9zm322.9 291.7-2.5-3.9c-4.1.3-8.1.3-12.2 0l-2.5 4c-5.8 9.2-17.1 13.4-27.5 10.1-13.8-4.3-23-8.8-34.3-18.1-9-7.4-11.2-20.3-5.4-30.4l2.5-4.3c-2.3-3.4-4.3-6.9-6.1-10.6h-9.1c-11.6 0-21.4-8.2-23.6-19.6-2.6-13.7-2.7-24.2.1-38.5 2.1-11.3 12.1-19.5 23.6-19.5h9c1.8-3.7 3.8-7.2 6.1-10.6l-2.6-4.5c-5.8-10-3.6-22.7 5.2-30.3 10.6-9.1 19.7-14.3 33.5-19 10.8-3.7 22.7.7 28.5 10.6l2.6 4.4c4.1-.3 8.1-.3 12.2 0l2.6-4.4c5.8-9.9 17.7-14.3 28.6-10.5 13.3 4.5 22.3 9.6 33.5 19.1 8.8 7.5 10.9 20.2 5.1 30.2l-2.6 4.4c2.3 3.4 4.3 6.9 6.1 10.6h5.1c11.6 0 21.4 8.2 23.6 19.6 2.6 13.7 2.7 24.2-.1 38.5-2.1 11.3-12.1 19.5-23.6 19.5h-5c-1.8 3.7-3.8 7.2-6.1 10.6l2.5 4.3c5.9 10.2 3.5 23.1-5.5 30.5-10.7 8.8-19.9 13.4-34 17.9-10.5 3.2-21.9-.9-27.7-10.1zm12.2-34.6 10.6 18.3c6.7-2.8 12.9-6.4 18.7-10.8l-10.6-18.3 6.4-7.5c4.8-5.7 8.6-12.1 11-19.1l3.3-9.3h21.1c.9-7.1.9-14.4 0-21.5h-21.1l-3.3-9.3c-2.5-7-6.2-13.4-11-19.1l-6.4-7.5 10.6-18.3c-5.7-4.4-12-8-18.7-10.8l-10.6 18.3-9.7-1.8c-7.3-1.4-14.8-1.4-22.1 0l-9.7 1.8-10.6-18.3c-6.7 2.8-12.9 6.4-18.7 10.8l10.6 18.3-6.4 7.5c-4.8 5.7-8.6 12.1-11 19.1l-3.3 9.3h-21.1c-.9 7.1-.9 14.4 0 21.5h21.1l3.3 9.3c2.5 7 6.2 13.4 11 19.1l6.4 7.5-10.6 18.3c5.7 4.4 12 8 18.7 10.8l10.6-18.3 9.7 1.8c7.3 1.4 14.8 1.4 22.1 0l9.7-1.8zM560 408c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm0-304.3c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.4 32-32z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 640 512" width={ `${ width }px` } height={ `${ height }px` } ><path d="m538.6 196.4-2.5-3.9c-4.1.3-8.1.3-12.2 0l-2.5 4c-5.8 9.2-17.1 13.4-27.5 10.1-13.8-4.3-23-8.8-34.3-18.1-9-7.4-11.2-20.3-5.4-30.4l2.5-4.3c-2.3-3.4-4.3-6.9-6.1-10.6h-9.1c-11.6 0-21.4-8.2-23.6-19.6-2.6-13.7-2.7-24.2.1-38.5 2.1-11.3 12.1-19.5 23.6-19.5h9c1.8-3.7 3.8-7.2 6.1-10.6l-2.6-4.5c-5.8-10-3.6-22.7 5.2-30.3 10.6-9.1 19.7-14.3 33.5-19 10.8-3.7 22.7.7 28.5 10.6l2.6 4.4c4.1-.3 8.1-.3 12.2 0l2.6-4.4c5.8-9.9 17.7-14.3 28.6-10.5 13.3 4.5 22.3 9.6 33.5 19.1 8.8 7.5 10.9 20.2 5.1 30.2l-2.6 4.4c2.3 3.4 4.3 6.9 6.1 10.6h5.1c11.6 0 21.4 8.2 23.6 19.6 2.6 13.7 2.7 24.2-.1 38.5-2.1 11.3-12.1 19.5-23.6 19.5h-5c-1.8 3.7-3.8 7.2-6.1 10.6l2.5 4.3c5.9 10.2 3.5 23.1-5.5 30.5-10.7 8.8-19.9 13.4-34 17.9-10.5 3.3-21.9-.8-27.7-10.1zm12.2-34.5 10.6 18.3c6.7-2.8 12.9-6.4 18.7-10.8l-10.6-18.3 6.4-7.5c4.8-5.7 8.6-12.1 11-19.1l3.3-9.3h21.1c.9-7.1.9-14.4 0-21.5h-21.1l-3.3-9.3c-2.5-7-6.2-13.4-11-19.1l-6.4-7.5L580 39.4c-5.7-4.4-12-8-18.7-10.8l-10.6 18.3-9.7-1.8c-7.3-1.4-14.8-1.4-22.1 0l-9.7 1.8-10.6-18.3C492 31.3 485.7 35 480 39.4l10.6 18.3-6.4 7.5c-4.8 5.7-8.6 12.1-11 19.1l-3.3 9.3h-21.1c-.9 7.1-.9 14.4 0 21.5h21.1l3.3 9.3c2.5 7 6.2 13.4 11 19.1l6.4 7.5-10.6 18.4c5.7 4.4 12 8 18.7 10.8l10.6-18.3 9.7 1.8c7.3 1.4 14.8 1.4 22.1 0l9.7-1.8zM145.3 454.4v-31.6c-12.9-5.5-25.1-12.6-36.4-21.1l-27.5 15.9c-9.8 5.6-22.1 3.7-29.7-4.6-24.2-26.3-38.5-49.5-50.6-88.1-3.4-10.7 1.1-22.3 10.8-28L39.2 281c-1.7-14-1.7-28.1 0-42.1l-27.3-15.8c-9.7-5.6-14.2-17.3-10.8-28 12.1-38.4 26.2-61.6 50.6-88.1 7.6-8.3 20-10.2 29.7-4.6l27.4 15.9c11.3-8.5 23.5-15.5 36.4-21.1V65.6c0-11.3 7.8-21 18.8-23.4 34.7-7.8 62-8.7 101.7 0 11 2.4 18.9 12.2 18.9 23.4v31.6c12.9 5.5 25.1 12.6 36.4 21l27.4-15.8c9.8-5.6 22.2-3.7 29.8 4.6 26.9 29.6 41.5 55.9 52.1 88.5 3.4 10.5-.8 21.9-10.2 27.7l-25 15.8c1.7 14 1.7 28.1 0 42.1l28.1 17.5c8.6 5.4 13 15.6 10.8 25.5-6.9 31.3-33 64.6-55.9 89.2-7.6 8.2-19.9 10-29.6 4.4L321 401.8c-11.3 8.5-23.5 15.5-36.4 21.1v31.6c0 11.2-7.8 21-18.8 23.4-37.5 8.3-64.9 8.2-101.9 0-10.8-2.5-18.6-12.3-18.6-23.5zm32-6.2c24.8 5 50.5 5 75.3 0v-47.7l10.7-3.8c16.8-5.9 32.3-14.9 45.9-26.5l8.6-7.4 41.4 23.9c16.8-19.1 34-41.3 42.1-65.2l-41.4-23.9 2.1-11.1c3.2-17.6 3.2-35.5 0-53.1l-2.1-11.1 41.4-23.9c-8.1-23.9-25.3-46.2-42.1-65.2l-41.4 23.9-8.6-7.4c-13.6-11.7-29-20.6-45.9-26.5l-10.7-3.8V71.8c-24.8-5-50.5-5-75.3 0v47.7l-10.7 3.8c-16.8 5.9-32.3 14.9-45.9 26.5l-8.6 7.4-41.4-23.9A192.19 192.19 0 0 0 33 198.5l41.4 23.9-2.1 11.1c-3.2 17.6-3.2 35.5 0 53.1l2.1 11.1L33 321.6c8.1 23.9 20.9 46.2 37.7 65.2l41.4-23.9 8.6 7.4c13.6 11.7 29 20.6 45.9 26.5l10.7 3.8v47.6zm38.4-105.3c-45.7 0-82.9-37.2-82.9-82.9s37.2-82.9 82.9-82.9 82.9 37.2 82.9 82.9-37.2 82.9-82.9 82.9zm0-133.8c-28 0-50.9 22.8-50.9 50.9s22.8 50.9 50.9 50.9c28 0 50.9-22.8 50.9-50.9s-22.8-50.9-50.9-50.9zm322.9 291.7-2.5-3.9c-4.1.3-8.1.3-12.2 0l-2.5 4c-5.8 9.2-17.1 13.4-27.5 10.1-13.8-4.3-23-8.8-34.3-18.1-9-7.4-11.2-20.3-5.4-30.4l2.5-4.3c-2.3-3.4-4.3-6.9-6.1-10.6h-9.1c-11.6 0-21.4-8.2-23.6-19.6-2.6-13.7-2.7-24.2.1-38.5 2.1-11.3 12.1-19.5 23.6-19.5h9c1.8-3.7 3.8-7.2 6.1-10.6l-2.6-4.5c-5.8-10-3.6-22.7 5.2-30.3 10.6-9.1 19.7-14.3 33.5-19 10.8-3.7 22.7.7 28.5 10.6l2.6 4.4c4.1-.3 8.1-.3 12.2 0l2.6-4.4c5.8-9.9 17.7-14.3 28.6-10.5 13.3 4.5 22.3 9.6 33.5 19.1 8.8 7.5 10.9 20.2 5.1 30.2l-2.6 4.4c2.3 3.4 4.3 6.9 6.1 10.6h5.1c11.6 0 21.4 8.2 23.6 19.6 2.6 13.7 2.7 24.2-.1 38.5-2.1 11.3-12.1 19.5-23.6 19.5h-5c-1.8 3.7-3.8 7.2-6.1 10.6l2.5 4.3c5.9 10.2 3.5 23.1-5.5 30.5-10.7 8.8-19.9 13.4-34 17.9-10.5 3.2-21.9-.9-27.7-10.1zm12.2-34.6 10.6 18.3c6.7-2.8 12.9-6.4 18.7-10.8l-10.6-18.3 6.4-7.5c4.8-5.7 8.6-12.1 11-19.1l3.3-9.3h21.1c.9-7.1.9-14.4 0-21.5h-21.1l-3.3-9.3c-2.5-7-6.2-13.4-11-19.1l-6.4-7.5 10.6-18.3c-5.7-4.4-12-8-18.7-10.8l-10.6 18.3-9.7-1.8c-7.3-1.4-14.8-1.4-22.1 0l-9.7 1.8-10.6-18.3c-6.7 2.8-12.9 6.4-18.7 10.8l10.6 18.3-6.4 7.5c-4.8 5.7-8.6 12.1-11 19.1l-3.3 9.3h-21.1c-.9 7.1-.9 14.4 0 21.5h21.1l3.3 9.3c2.5 7 6.2 13.4 11 19.1l6.4 7.5-10.6 18.3c5.7 4.4 12 8 18.7 10.8l10.6-18.3 9.7 1.8c7.3 1.4 14.8 1.4 22.1 0l9.7-1.8zM560 408c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.3 32-32zm0-304.3c0-17.7-14.3-32-32-32s-32 14.3-32 32 14.3 32 32 32 32-14.4 32-32z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Collection(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zm1.5.5A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-13z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zm1.5.5A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-13z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,12 +9,9 @@ interface Props {
|
|||
}
|
||||
|
||||
function Collection_play(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}>
|
||||
<path d="M2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1zm2.765 5.576A.5.5 0 0 0 6 7v5a.5.5 0 0 0 .765.424l4-2.5a.5.5 0 0 0 0-.848l-4-2.5z" />
|
||||
<path d="M1.5 14.5A1.5 1.5 0 0 1 0 13V6a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 6v7a1.5 1.5 0 0 1-1.5 1.5h-13zm13-1a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5h-13A.5.5 0 0 0 1 6v7a.5.5 0 0 0 .5.5h13z" />
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1zm2.765 5.576A.5.5 0 0 0 6 7v5a.5.5 0 0 0 .765.424l4-2.5a.5.5 0 0 0 0-.848l-4-2.5z"/><path d="M1.5 14.5A1.5 1.5 0 0 1 0 13V6a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 6v7a1.5 1.5 0 0 1-1.5 1.5h-13zm13-1a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5h-13A.5.5 0 0 0 1 6v7a.5.5 0 0 0 .5.5h13z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,18 +9,13 @@ interface Props {
|
|||
}
|
||||
|
||||
function Color_apple(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M22.5 12C22.5 17.796 17.8012 22.5 12 22.5C6.19875 22.5 1.5 17.796 1.5 12C1.5 6.19875 6.19875 1.5 12 1.5C17.8012 1.5 22.5 6.19875 22.5 12Z"
|
||||
fill="#283544"
|
||||
/>
|
||||
<path
|
||||
d="M16.9216 9.34304C16.8643 9.37646 15.5003 10.0819 15.5003 11.6459C15.5646 13.4296 17.2216 14.0551 17.25 14.0551C17.2216 14.0885 16.9998 14.9072 16.343 15.7654C15.8217 16.5047 15.2432 17.25 14.3646 17.25C13.5289 17.25 13.2289 16.7573 12.2646 16.7573C11.229 16.7573 10.936 17.25 10.1431 17.25C9.26458 17.25 8.64315 16.4647 8.09345 15.7324C7.37932 14.7739 6.77233 13.2698 6.7509 11.8256C6.73646 11.0603 6.89392 10.308 7.29361 9.66904C7.85774 8.77699 8.86489 8.17143 9.96473 8.15146C10.8074 8.12498 11.5574 8.6906 12.0717 8.6906C12.5646 8.6906 13.486 8.15146 14.5286 8.15146C14.9786 8.1519 16.1786 8.27822 16.9216 9.34304ZM12.0005 7.99866C11.8505 7.29978 12.2646 6.60089 12.6503 6.15508C13.1432 5.61594 13.9216 5.25 14.5929 5.25C14.6357 5.94889 14.3641 6.63432 13.8787 7.13352C13.4432 7.67266 12.6932 8.07853 12.0005 7.99866Z"
|
||||
fill="white"
|
||||
/>
|
||||
</svg>
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12C22.5 17.796 17.8012 22.5 12 22.5C6.19875 22.5 1.5 17.796 1.5 12C1.5 6.19875 6.19875 1.5 12 1.5C17.8012 1.5 22.5 6.19875 22.5 12Z" fill="#283544"/>
|
||||
<path d="M16.9216 9.34304C16.8643 9.37646 15.5003 10.0819 15.5003 11.6459C15.5646 13.4296 17.2216 14.0551 17.25 14.0551C17.2216 14.0885 16.9998 14.9072 16.343 15.7654C15.8217 16.5047 15.2432 17.25 14.3646 17.25C13.5289 17.25 13.2289 16.7573 12.2646 16.7573C11.229 16.7573 10.936 17.25 10.1431 17.25C9.26458 17.25 8.64315 16.4647 8.09345 15.7324C7.37932 14.7739 6.77233 13.2698 6.7509 11.8256C6.73646 11.0603 6.89392 10.308 7.29361 9.66904C7.85774 8.77699 8.86489 8.17143 9.96473 8.15146C10.8074 8.12498 11.5574 8.6906 12.0717 8.6906C12.5646 8.6906 13.486 8.15146 14.5286 8.15146C14.9786 8.1519 16.1786 8.27822 16.9216 9.34304ZM12.0005 7.99866C11.8505 7.29978 12.2646 6.60089 12.6503 6.15508C13.1432 5.61594 13.9216 5.25 14.5929 5.25C14.6357 5.94889 14.3641 6.63432 13.8787 7.13352C13.4432 7.67266 12.6932 8.07853 12.0005 7.99866Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue