+
+ {list.length - maxLength}{' '}
+ {t(`More ${list.length - maxLength === 1 ? "attribute" : "attributes"}`)}
+
{list.slice(maxLength).map(({ label, value }, index) => (
))}
@@ -26,8 +30,8 @@ export default function MetaMoreButton(props: Props) {
placement="bottom"
>
-
diff --git a/frontend/app/components/shared/SessionItem/SessionItem.tsx b/frontend/app/components/shared/SessionItem/SessionItem.tsx
index 11151161a..da83876e5 100644
--- a/frontend/app/components/shared/SessionItem/SessionItem.tsx
+++ b/frontend/app/components/shared/SessionItem/SessionItem.tsx
@@ -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 (
e.stopPropagation()}
onMouseEnter={handleHover}
>
-
-
+
+
{!compact && (
@@ -288,13 +295,15 @@ function SessionItem(props: RouteComponentProps & Props) {
{_metaList.length > 0 && (
-
+
)}
)}
-
+
{!isAssist && (
<>
-
+
{eventsCount}
{eventsCount === 0 || eventsCount > 1
- ? t('Events')
- : t('Event')}
+ ? 'Events'
+ : 'Event'}
>
)}
- {live ? (
-
- ) : (
- formattedDuration
- )}
+ {live ? : formattedDuration}
-
+
{userBrowser && (
)}
{isSessions && (
-
+
{isLastPlayed && (
-
@@ -451,4 +453,4 @@ function SessionItem(props: RouteComponentProps & Props) {
);
}
-export default withRouter(observer(SessionItem));
+export default withRouter(observer(SessionItem));
\ No newline at end of file
diff --git a/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx b/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx
index 5bed299bf..4ceb4f3fe 100644
--- a/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx
+++ b/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx
@@ -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 (
-
+
{metaList.slice(0, maxLength).map(({ label, value }, index) => (
diff --git a/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx b/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx
index 35a93422f..c7e733e3e 100644
--- a/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx
+++ b/frontend/app/components/shared/SessionsTabOverview/components/SessionTags/SessionTags.tsx
@@ -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(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 (
-
- 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 ? (
+
+
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"
+ >
+
+ {activeOption.icon && (
+ {activeOption.icon}
+ )}
+ {activeOption.label}
+
+
+
+
+ {isDropdownOpen && (
+
+ {filteredOptions.map((option) => (
+
handleSelectOption(option.value)}
+ >
+ {option.icon && {option.icon}}
+ {option.label}
+
+ ))}
+
+ )}
+
+ ) : (
+ searchStore.toggleTag(value as any)}
+ size={'small'}
+ />
+ )}
);
}
diff --git a/frontend/app/components/ui/Icons/activity.tsx b/frontend/app/components/ui/Icons/activity.tsx
index 2da5eecbb..b4f142b06 100644
--- a/frontend/app/components/ui/Icons/activity.tsx
+++ b/frontend/app/components/ui/Icons/activity.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Activity(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/analytics.tsx b/frontend/app/components/ui/Icons/analytics.tsx
index 6cbe0d303..e68ea123b 100644
--- a/frontend/app/components/ui/Icons/analytics.tsx
+++ b/frontend/app/components/ui/Icons/analytics.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Analytics(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/anchor.tsx b/frontend/app/components/ui/Icons/anchor.tsx
index 5d01581d8..69260026c 100644
--- a/frontend/app/components/ui/Icons/anchor.tsx
+++ b/frontend/app/components/ui/Icons/anchor.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Anchor(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_bar_left.tsx b/frontend/app/components/ui/Icons/arrow_bar_left.tsx
index 83d2ee9e5..b7c3a9907 100644
--- a/frontend/app/components/ui/Icons/arrow_bar_left.tsx
+++ b/frontend/app/components/ui/Icons/arrow_bar_left.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_bar_left(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_clockwise.tsx b/frontend/app/components/ui/Icons/arrow_clockwise.tsx
index 7d00c3a8b..57667952f 100644
--- a/frontend/app/components/ui/Icons/arrow_clockwise.tsx
+++ b/frontend/app/components/ui/Icons/arrow_clockwise.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Arrow_clockwise(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx b/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx
index 0aa129989..8bb25356d 100644
--- a/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx
+++ b/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Arrow_counterclockwise(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_down.tsx b/frontend/app/components/ui/Icons/arrow_down.tsx
index a6b50dd13..4df730fad 100644
--- a/frontend/app/components/ui/Icons/arrow_down.tsx
+++ b/frontend/app/components/ui/Icons/arrow_down.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_down(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_down_short.tsx b/frontend/app/components/ui/Icons/arrow_down_short.tsx
index 926130bf4..a74f70e28 100644
--- a/frontend/app/components/ui/Icons/arrow_down_short.tsx
+++ b/frontend/app/components/ui/Icons/arrow_down_short.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_down_short(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_down_up.tsx b/frontend/app/components/ui/Icons/arrow_down_up.tsx
index 7e244a00f..2331f400f 100644
--- a/frontend/app/components/ui/Icons/arrow_down_up.tsx
+++ b/frontend/app/components/ui/Icons/arrow_down_up.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_down_up(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_repeat.tsx b/frontend/app/components/ui/Icons/arrow_repeat.tsx
index c5b7efbdb..e81839fc5 100644
--- a/frontend/app/components/ui/Icons/arrow_repeat.tsx
+++ b/frontend/app/components/ui/Icons/arrow_repeat.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Arrow_repeat(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_right_short.tsx b/frontend/app/components/ui/Icons/arrow_right_short.tsx
index c013800f6..508d6813d 100644
--- a/frontend/app/components/ui/Icons/arrow_right_short.tsx
+++ b/frontend/app/components/ui/Icons/arrow_right_short.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_right_short(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_up.tsx b/frontend/app/components/ui/Icons/arrow_up.tsx
index 4a3e1dda5..8dcef9441 100644
--- a/frontend/app/components/ui/Icons/arrow_up.tsx
+++ b/frontend/app/components/ui/Icons/arrow_up.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_up(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/arrow_up_short.tsx b/frontend/app/components/ui/Icons/arrow_up_short.tsx
index 72fb6a98e..0123f87a0 100644
--- a/frontend/app/components/ui/Icons/arrow_up_short.tsx
+++ b/frontend/app/components/ui/Icons/arrow_up_short.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Arrow_up_short(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx
index d24743ec9..3a519bf79 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx
@@ -9,25 +9,9 @@ interface Props {
}
function Avatar_icn_avatar1(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx
index 3df636247..097d5e03c 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx
@@ -9,19 +9,9 @@ interface Props {
}
function Avatar_icn_avatar10(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx
index 985111fd0..0b3138f17 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx
@@ -9,25 +9,9 @@ interface Props {
}
function Avatar_icn_avatar11(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx
index 4a4d5e1b6..3a8d199a4 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx
@@ -9,27 +9,9 @@ interface Props {
}
function Avatar_icn_avatar12(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx
index 6f9702e30..985d430ac 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Avatar_icn_avatar13(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx
index 4aa91646d..083fd0d41 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Avatar_icn_avatar14(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx
index ccc0c3e0f..c1f731b99 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Avatar_icn_avatar15(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx
index 4136964af..f57f24741 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Avatar_icn_avatar16(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx
index fd5b466c9..178552857 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Avatar_icn_avatar17(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx
index 158569f1e..7de77fc92 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx
@@ -9,41 +9,9 @@ interface Props {
}
function Avatar_icn_avatar18(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx
index b70369afb..288a1f142 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Avatar_icn_avatar19(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx
index edb2c112e..765eb99f1 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Avatar_icn_avatar2(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx
index dcdb9d1f2..428e3dd9f 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Avatar_icn_avatar20(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx
index 328885116..ac3b80d7b 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Avatar_icn_avatar21(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx
index c76019b86..3a3d7ca28 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Avatar_icn_avatar22(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx
index a5c5101f2..4a5e6b15b 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Avatar_icn_avatar23(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx
index 7bde8428c..ea8a34297 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Avatar_icn_avatar3(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx
index 9a08fddc7..1cda7c4d5 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Avatar_icn_avatar4(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx
index 3f845fb12..ebd9d80c9 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Avatar_icn_avatar5(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx
index efb4951f6..7973611e3 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx
@@ -9,18 +9,9 @@ interface Props {
}
function Avatar_icn_avatar6(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx
index 93bfee64b..b1127a384 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx
@@ -9,45 +9,9 @@ interface Props {
}
function Avatar_icn_avatar7(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx
index 9e9074746..0e1ffd7c2 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Avatar_icn_avatar8(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx
index 564551914..17e4edcfc 100644
--- a/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx
+++ b/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Avatar_icn_avatar9(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/ban.tsx b/frontend/app/components/ui/Icons/ban.tsx
index 3ffb85674..50d308aef 100644
--- a/frontend/app/components/ui/Icons/ban.tsx
+++ b/frontend/app/components/ui/Icons/ban.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Ban(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bar_chart_line.tsx b/frontend/app/components/ui/Icons/bar_chart_line.tsx
index 7d46fa9ef..521225942 100644
--- a/frontend/app/components/ui/Icons/bar_chart_line.tsx
+++ b/frontend/app/components/ui/Icons/bar_chart_line.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Bar_chart_line(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bar_pencil.tsx b/frontend/app/components/ui/Icons/bar_pencil.tsx
index 35bff3c4d..db4024f65 100644
--- a/frontend/app/components/ui/Icons/bar_pencil.tsx
+++ b/frontend/app/components/ui/Icons/bar_pencil.tsx
@@ -9,32 +9,9 @@ interface Props {
}
function Bar_pencil(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/battery.tsx b/frontend/app/components/ui/Icons/battery.tsx
index 2fed9f00c..466df8c15 100644
--- a/frontend/app/components/ui/Icons/battery.tsx
+++ b/frontend/app/components/ui/Icons/battery.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Battery(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/battery_charging.tsx b/frontend/app/components/ui/Icons/battery_charging.tsx
index faa8c8859..01e82b5fc 100644
--- a/frontend/app/components/ui/Icons/battery_charging.tsx
+++ b/frontend/app/components/ui/Icons/battery_charging.tsx
@@ -9,14 +9,9 @@ interface Props {
}
function Battery_charging(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bell.tsx b/frontend/app/components/ui/Icons/bell.tsx
index 2eb2f9dcf..1a5c84971 100644
--- a/frontend/app/components/ui/Icons/bell.tsx
+++ b/frontend/app/components/ui/Icons/bell.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Bell(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bell_plus.tsx b/frontend/app/components/ui/Icons/bell_plus.tsx
index f1f5c8d20..7bfaa2aaf 100644
--- a/frontend/app/components/ui/Icons/bell_plus.tsx
+++ b/frontend/app/components/ui/Icons/bell_plus.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Bell_plus(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bell_slash.tsx b/frontend/app/components/ui/Icons/bell_slash.tsx
index 85655ebbb..783e43d04 100644
--- a/frontend/app/components/ui/Icons/bell_slash.tsx
+++ b/frontend/app/components/ui/Icons/bell_slash.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Bell_slash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/binoculars.tsx b/frontend/app/components/ui/Icons/binoculars.tsx
index 5f4adb833..ea75ff0c0 100644
--- a/frontend/app/components/ui/Icons/binoculars.tsx
+++ b/frontend/app/components/ui/Icons/binoculars.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Binoculars(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/book.tsx b/frontend/app/components/ui/Icons/book.tsx
index c9bf4ecb3..90ca14734 100644
--- a/frontend/app/components/ui/Icons/book.tsx
+++ b/frontend/app/components/ui/Icons/book.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Book(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bookmark.tsx b/frontend/app/components/ui/Icons/bookmark.tsx
index 5e5e02e50..743c235a1 100644
--- a/frontend/app/components/ui/Icons/bookmark.tsx
+++ b/frontend/app/components/ui/Icons/bookmark.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Bookmark(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/broadcast.tsx b/frontend/app/components/ui/Icons/broadcast.tsx
index a0f41eb7d..634dbc7b7 100644
--- a/frontend/app/components/ui/Icons/broadcast.tsx
+++ b/frontend/app/components/ui/Icons/broadcast.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Broadcast(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_browser.tsx b/frontend/app/components/ui/Icons/browser_browser.tsx
index 52186fc00..d3c2b11e9 100644
--- a/frontend/app/components/ui/Icons/browser_browser.tsx
+++ b/frontend/app/components/ui/Icons/browser_browser.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_browser(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_chrome.tsx b/frontend/app/components/ui/Icons/browser_chrome.tsx
index 0d0e33013..fb2c10f9d 100644
--- a/frontend/app/components/ui/Icons/browser_chrome.tsx
+++ b/frontend/app/components/ui/Icons/browser_chrome.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_chrome(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_edge.tsx b/frontend/app/components/ui/Icons/browser_edge.tsx
index 8f83e8c95..091295fff 100644
--- a/frontend/app/components/ui/Icons/browser_edge.tsx
+++ b/frontend/app/components/ui/Icons/browser_edge.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_edge(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_electron.tsx b/frontend/app/components/ui/Icons/browser_electron.tsx
index 9fd287a65..4ec60d3e4 100644
--- a/frontend/app/components/ui/Icons/browser_electron.tsx
+++ b/frontend/app/components/ui/Icons/browser_electron.tsx
@@ -9,14 +9,9 @@ interface Props {
}
function Browser_electron(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_facebook.tsx b/frontend/app/components/ui/Icons/browser_facebook.tsx
index 3302e8b8d..4b43a49a5 100644
--- a/frontend/app/components/ui/Icons/browser_facebook.tsx
+++ b/frontend/app/components/ui/Icons/browser_facebook.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_facebook(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_firefox.tsx b/frontend/app/components/ui/Icons/browser_firefox.tsx
index 22b047a27..8707cb44a 100644
--- a/frontend/app/components/ui/Icons/browser_firefox.tsx
+++ b/frontend/app/components/ui/Icons/browser_firefox.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_firefox(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_ie.tsx b/frontend/app/components/ui/Icons/browser_ie.tsx
index 0019d1d2a..ca94cedae 100644
--- a/frontend/app/components/ui/Icons/browser_ie.tsx
+++ b/frontend/app/components/ui/Icons/browser_ie.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_ie(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_opera.tsx b/frontend/app/components/ui/Icons/browser_opera.tsx
index 3e13451df..f2a146cba 100644
--- a/frontend/app/components/ui/Icons/browser_opera.tsx
+++ b/frontend/app/components/ui/Icons/browser_opera.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_opera(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/browser_safari.tsx b/frontend/app/components/ui/Icons/browser_safari.tsx
index e8a652375..3d5faee2b 100644
--- a/frontend/app/components/ui/Icons/browser_safari.tsx
+++ b/frontend/app/components/ui/Icons/browser_safari.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Browser_safari(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/buildings.tsx b/frontend/app/components/ui/Icons/buildings.tsx
index 57c999d87..e209a0e8d 100644
--- a/frontend/app/components/ui/Icons/buildings.tsx
+++ b/frontend/app/components/ui/Icons/buildings.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Buildings(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/bullhorn.tsx b/frontend/app/components/ui/Icons/bullhorn.tsx
index 2f19afa1e..662dffec3 100644
--- a/frontend/app/components/ui/Icons/bullhorn.tsx
+++ b/frontend/app/components/ui/Icons/bullhorn.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Bullhorn(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/calendar.tsx b/frontend/app/components/ui/Icons/calendar.tsx
index 4811faa45..a9f762a84 100644
--- a/frontend/app/components/ui/Icons/calendar.tsx
+++ b/frontend/app/components/ui/Icons/calendar.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Calendar(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/call.tsx b/frontend/app/components/ui/Icons/call.tsx
index e59bb8d78..f5866a6ab 100644
--- a/frontend/app/components/ui/Icons/call.tsx
+++ b/frontend/app/components/ui/Icons/call.tsx
@@ -9,13 +9,9 @@ interface Props {
}
function Call(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/camera.tsx b/frontend/app/components/ui/Icons/camera.tsx
index 5e99de110..6a8a1e8a8 100644
--- a/frontend/app/components/ui/Icons/camera.tsx
+++ b/frontend/app/components/ui/Icons/camera.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Camera(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/camera_video.tsx b/frontend/app/components/ui/Icons/camera_video.tsx
index b14240516..81a21b65b 100644
--- a/frontend/app/components/ui/Icons/camera_video.tsx
+++ b/frontend/app/components/ui/Icons/camera_video.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Camera_video(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/camera_video_off.tsx b/frontend/app/components/ui/Icons/camera_video_off.tsx
index db89f4ed3..347c562a8 100644
--- a/frontend/app/components/ui/Icons/camera_video_off.tsx
+++ b/frontend/app/components/ui/Icons/camera_video_off.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Camera_video_off(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/card_list.tsx b/frontend/app/components/ui/Icons/card_list.tsx
index 56077d416..7fb8dceab 100644
--- a/frontend/app/components/ui/Icons/card_list.tsx
+++ b/frontend/app/components/ui/Icons/card_list.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Card_list(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/card_text.tsx b/frontend/app/components/ui/Icons/card_text.tsx
index dc623292d..6d490127e 100644
--- a/frontend/app/components/ui/Icons/card_text.tsx
+++ b/frontend/app/components/ui/Icons/card_text.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Card_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/caret_down_fill.tsx b/frontend/app/components/ui/Icons/caret_down_fill.tsx
index 6af342c6e..0af863c88 100644
--- a/frontend/app/components/ui/Icons/caret_down_fill.tsx
+++ b/frontend/app/components/ui/Icons/caret_down_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Caret_down_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/caret_right_fill.tsx b/frontend/app/components/ui/Icons/caret_right_fill.tsx
index 75e0a0f51..2ebbf0eac 100644
--- a/frontend/app/components/ui/Icons/caret_right_fill.tsx
+++ b/frontend/app/components/ui/Icons/caret_right_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Caret_right_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chat_dots.tsx b/frontend/app/components/ui/Icons/chat_dots.tsx
index 17f8ae59b..ef18ef07e 100644
--- a/frontend/app/components/ui/Icons/chat_dots.tsx
+++ b/frontend/app/components/ui/Icons/chat_dots.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Chat_dots(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chat_left_text.tsx b/frontend/app/components/ui/Icons/chat_left_text.tsx
index 3c840bc71..783e445c6 100644
--- a/frontend/app/components/ui/Icons/chat_left_text.tsx
+++ b/frontend/app/components/ui/Icons/chat_left_text.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Chat_left_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chat_square_quote.tsx b/frontend/app/components/ui/Icons/chat_square_quote.tsx
index b9089e414..8317f90f4 100644
--- a/frontend/app/components/ui/Icons/chat_square_quote.tsx
+++ b/frontend/app/components/ui/Icons/chat_square_quote.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Chat_square_quote(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/check.tsx b/frontend/app/components/ui/Icons/check.tsx
index af4dfc1ba..ed2c3f503 100644
--- a/frontend/app/components/ui/Icons/check.tsx
+++ b/frontend/app/components/ui/Icons/check.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Check(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/check_circle.tsx b/frontend/app/components/ui/Icons/check_circle.tsx
index 877aab216..96da8b8d7 100644
--- a/frontend/app/components/ui/Icons/check_circle.tsx
+++ b/frontend/app/components/ui/Icons/check_circle.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Check_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/check_circle_fill.tsx b/frontend/app/components/ui/Icons/check_circle_fill.tsx
index ac79a4bb9..68b8201fd 100644
--- a/frontend/app/components/ui/Icons/check_circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/check_circle_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Check_circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chevron_down.tsx b/frontend/app/components/ui/Icons/chevron_down.tsx
index e5a3fc620..c3667d5e5 100644
--- a/frontend/app/components/ui/Icons/chevron_down.tsx
+++ b/frontend/app/components/ui/Icons/chevron_down.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Chevron_down(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chevron_left.tsx b/frontend/app/components/ui/Icons/chevron_left.tsx
index a0bc6af3c..1c36a2fda 100644
--- a/frontend/app/components/ui/Icons/chevron_left.tsx
+++ b/frontend/app/components/ui/Icons/chevron_left.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Chevron_left(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chevron_right.tsx b/frontend/app/components/ui/Icons/chevron_right.tsx
index 60feda6f6..399ea3f47 100644
--- a/frontend/app/components/ui/Icons/chevron_right.tsx
+++ b/frontend/app/components/ui/Icons/chevron_right.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Chevron_right(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/chevron_up.tsx b/frontend/app/components/ui/Icons/chevron_up.tsx
index 3fb49148a..a82f07e42 100644
--- a/frontend/app/components/ui/Icons/chevron_up.tsx
+++ b/frontend/app/components/ui/Icons/chevron_up.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Chevron_up(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/circle.tsx b/frontend/app/components/ui/Icons/circle.tsx
index 36f900469..b309f7888 100644
--- a/frontend/app/components/ui/Icons/circle.tsx
+++ b/frontend/app/components/ui/Icons/circle.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/circle_fill.tsx b/frontend/app/components/ui/Icons/circle_fill.tsx
index 60fcdfe69..2897ce3bf 100644
--- a/frontend/app/components/ui/Icons/circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/circle_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/click_hesitation.tsx b/frontend/app/components/ui/Icons/click_hesitation.tsx
index 57c399cc4..aa6df332d 100644
--- a/frontend/app/components/ui/Icons/click_hesitation.tsx
+++ b/frontend/app/components/ui/Icons/click_hesitation.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Click_hesitation(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/click_rage.tsx b/frontend/app/components/ui/Icons/click_rage.tsx
index 9c075be60..cf70a0916 100644
--- a/frontend/app/components/ui/Icons/click_rage.tsx
+++ b/frontend/app/components/ui/Icons/click_rage.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Click_rage(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/clipboard_check.tsx b/frontend/app/components/ui/Icons/clipboard_check.tsx
index d31520292..6381a9e33 100644
--- a/frontend/app/components/ui/Icons/clipboard_check.tsx
+++ b/frontend/app/components/ui/Icons/clipboard_check.tsx
@@ -9,18 +9,9 @@ interface Props {
}
function Clipboard_check(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/clock.tsx b/frontend/app/components/ui/Icons/clock.tsx
index 059452e18..b3c40eae8 100644
--- a/frontend/app/components/ui/Icons/clock.tsx
+++ b/frontend/app/components/ui/Icons/clock.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Clock(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/clock_history.tsx b/frontend/app/components/ui/Icons/clock_history.tsx
index d02f4f385..02997206b 100644
--- a/frontend/app/components/ui/Icons/clock_history.tsx
+++ b/frontend/app/components/ui/Icons/clock_history.tsx
@@ -9,13 +9,9 @@ interface Props {
}
function Clock_history(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/close.tsx b/frontend/app/components/ui/Icons/close.tsx
index fb8479e1e..48a4b5434 100644
--- a/frontend/app/components/ui/Icons/close.tsx
+++ b/frontend/app/components/ui/Icons/close.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Close(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/code.tsx b/frontend/app/components/ui/Icons/code.tsx
index b90888bb1..a5a727c93 100644
--- a/frontend/app/components/ui/Icons/code.tsx
+++ b/frontend/app/components/ui/Icons/code.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Code(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cog.tsx b/frontend/app/components/ui/Icons/cog.tsx
index 24478d34f..e2f570ac0 100644
--- a/frontend/app/components/ui/Icons/cog.tsx
+++ b/frontend/app/components/ui/Icons/cog.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Cog(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cogs.tsx b/frontend/app/components/ui/Icons/cogs.tsx
index 6a3339670..71c396610 100644
--- a/frontend/app/components/ui/Icons/cogs.tsx
+++ b/frontend/app/components/ui/Icons/cogs.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Cogs(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/collection.tsx b/frontend/app/components/ui/Icons/collection.tsx
index a5ee51f11..98136281a 100644
--- a/frontend/app/components/ui/Icons/collection.tsx
+++ b/frontend/app/components/ui/Icons/collection.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Collection(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/collection_play.tsx b/frontend/app/components/ui/Icons/collection_play.tsx
index 5770e273c..39e3861ad 100644
--- a/frontend/app/components/ui/Icons/collection_play.tsx
+++ b/frontend/app/components/ui/Icons/collection_play.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Collection_play(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_apple.tsx b/frontend/app/components/ui/Icons/color_apple.tsx
index d13612887..6dcbe6b01 100644
--- a/frontend/app/components/ui/Icons/color_apple.tsx
+++ b/frontend/app/components/ui/Icons/color_apple.tsx
@@ -9,18 +9,13 @@ interface Props {
}
function Color_apple(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_chrome.tsx b/frontend/app/components/ui/Icons/color_browser_chrome.tsx
index dce2b0077..a08bc0d51 100644
--- a/frontend/app/components/ui/Icons/color_browser_chrome.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_chrome.tsx
@@ -9,55 +9,24 @@ interface Props {
}
function Color_browser_chrome(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_edge.tsx b/frontend/app/components/ui/Icons/color_browser_edge.tsx
index 7029f16b8..27cf00c3a 100644
--- a/frontend/app/components/ui/Icons/color_browser_edge.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_edge.tsx
@@ -9,80 +9,37 @@ interface Props {
}
function Color_browser_edge(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_facebook.tsx b/frontend/app/components/ui/Icons/color_browser_facebook.tsx
index 848f8397e..92e6879f0 100644
--- a/frontend/app/components/ui/Icons/color_browser_facebook.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_facebook.tsx
@@ -9,28 +9,18 @@ interface Props {
}
function Color_browser_facebook(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_firefox.tsx b/frontend/app/components/ui/Icons/color_browser_firefox.tsx
index f57aea9b0..37b0f388e 100644
--- a/frontend/app/components/ui/Icons/color_browser_firefox.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_firefox.tsx
@@ -9,234 +9,114 @@ interface Props {
}
function Color_browser_firefox(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_google.tsx b/frontend/app/components/ui/Icons/color_browser_google.tsx
index 5e9c06ee5..8da57fab5 100644
--- a/frontend/app/components/ui/Icons/color_browser_google.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_google.tsx
@@ -9,26 +9,14 @@ interface Props {
}
function Color_browser_google(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_opera.tsx b/frontend/app/components/ui/Icons/color_browser_opera.tsx
index 51f7a10a0..ec328ec01 100644
--- a/frontend/app/components/ui/Icons/color_browser_opera.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_opera.tsx
@@ -9,46 +9,26 @@ interface Props {
}
function Color_browser_opera(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_safari.tsx b/frontend/app/components/ui/Icons/color_browser_safari.tsx
index 10c1ec8d2..1f4996376 100644
--- a/frontend/app/components/ui/Icons/color_browser_safari.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_safari.tsx
@@ -9,592 +9,161 @@ interface Props {
}
function Color_browser_safari(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_unknown.tsx b/frontend/app/components/ui/Icons/color_browser_unknown.tsx
index 9c8dfd407..ef9918adf 100644
--- a/frontend/app/components/ui/Icons/color_browser_unknown.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_unknown.tsx
@@ -9,35 +9,13 @@ interface Props {
}
function Color_browser_unknown(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_browser_whale.tsx b/frontend/app/components/ui/Icons/color_browser_whale.tsx
index 906c60632..1eb89f19e 100644
--- a/frontend/app/components/ui/Icons/color_browser_whale.tsx
+++ b/frontend/app/components/ui/Icons/color_browser_whale.tsx
@@ -9,89 +9,33 @@ interface Props {
}
function Color_browser_whale(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_chrome.tsx b/frontend/app/components/ui/Icons/color_chrome.tsx
index 9231b9903..350ad7c54 100644
--- a/frontend/app/components/ui/Icons/color_chrome.tsx
+++ b/frontend/app/components/ui/Icons/color_chrome.tsx
@@ -9,55 +9,25 @@ interface Props {
}
function Color_chrome(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_country_de.tsx b/frontend/app/components/ui/Icons/color_country_de.tsx
index ac23cf513..813d9b049 100644
--- a/frontend/app/components/ui/Icons/color_country_de.tsx
+++ b/frontend/app/components/ui/Icons/color_country_de.tsx
@@ -9,36 +9,22 @@ interface Props {
}
function Color_country_de(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_country_fr.tsx b/frontend/app/components/ui/Icons/color_country_fr.tsx
index 5cdb73290..5ae4cf4ee 100644
--- a/frontend/app/components/ui/Icons/color_country_fr.tsx
+++ b/frontend/app/components/ui/Icons/color_country_fr.tsx
@@ -9,36 +9,22 @@ interface Props {
}
function Color_country_fr(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_country_gb.tsx b/frontend/app/components/ui/Icons/color_country_gb.tsx
index 995493cba..db100285c 100644
--- a/frontend/app/components/ui/Icons/color_country_gb.tsx
+++ b/frontend/app/components/ui/Icons/color_country_gb.tsx
@@ -9,75 +9,34 @@ interface Props {
}
function Color_country_gb(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_country_in.tsx b/frontend/app/components/ui/Icons/color_country_in.tsx
index 0197519e9..f569d6977 100644
--- a/frontend/app/components/ui/Icons/color_country_in.tsx
+++ b/frontend/app/components/ui/Icons/color_country_in.tsx
@@ -9,65 +9,29 @@ interface Props {
}
function Color_country_in(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_country_us.tsx b/frontend/app/components/ui/Icons/color_country_us.tsx
index 87ff4751e..86d98a2fe 100644
--- a/frontend/app/components/ui/Icons/color_country_us.tsx
+++ b/frontend/app/components/ui/Icons/color_country_us.tsx
@@ -9,73 +9,29 @@ interface Props {
}
function Color_country_us(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_de.tsx b/frontend/app/components/ui/Icons/color_de.tsx
index d4e18135d..cba7f7789 100644
--- a/frontend/app/components/ui/Icons/color_de.tsx
+++ b/frontend/app/components/ui/Icons/color_de.tsx
@@ -9,36 +9,22 @@ interface Props {
}
function Color_de(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_device_desktop.tsx b/frontend/app/components/ui/Icons/color_device_desktop.tsx
index 4c704a0dc..13a074d37 100644
--- a/frontend/app/components/ui/Icons/color_device_desktop.tsx
+++ b/frontend/app/components/ui/Icons/color_device_desktop.tsx
@@ -9,25 +9,13 @@ interface Props {
}
function Color_device_desktop(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_device_mobile.tsx b/frontend/app/components/ui/Icons/color_device_mobile.tsx
index e070cb014..cb973b24f 100644
--- a/frontend/app/components/ui/Icons/color_device_mobile.tsx
+++ b/frontend/app/components/ui/Icons/color_device_mobile.tsx
@@ -9,54 +9,25 @@ interface Props {
}
function Color_device_mobile(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_device_tablet.tsx b/frontend/app/components/ui/Icons/color_device_tablet.tsx
index c75d15438..0572ca318 100644
--- a/frontend/app/components/ui/Icons/color_device_tablet.tsx
+++ b/frontend/app/components/ui/Icons/color_device_tablet.tsx
@@ -9,25 +9,13 @@ interface Props {
}
function Color_device_tablet(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_device_unkown.tsx b/frontend/app/components/ui/Icons/color_device_unkown.tsx
index 42ca6fdc3..fb95e2804 100644
--- a/frontend/app/components/ui/Icons/color_device_unkown.tsx
+++ b/frontend/app/components/ui/Icons/color_device_unkown.tsx
@@ -9,39 +9,15 @@ interface Props {
}
function Color_device_unkown(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_edge.tsx b/frontend/app/components/ui/Icons/color_edge.tsx
index 05a83f7c6..f10d29ee1 100644
--- a/frontend/app/components/ui/Icons/color_edge.tsx
+++ b/frontend/app/components/ui/Icons/color_edge.tsx
@@ -9,80 +9,38 @@ interface Props {
}
function Color_edge(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_fedora.tsx b/frontend/app/components/ui/Icons/color_fedora.tsx
index bf41daa03..97d4f9a00 100644
--- a/frontend/app/components/ui/Icons/color_fedora.tsx
+++ b/frontend/app/components/ui/Icons/color_fedora.tsx
@@ -9,22 +9,14 @@ interface Props {
}
function Color_fedora(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_firefox.tsx b/frontend/app/components/ui/Icons/color_firefox.tsx
index 7c0d8d658..651994a42 100644
--- a/frontend/app/components/ui/Icons/color_firefox.tsx
+++ b/frontend/app/components/ui/Icons/color_firefox.tsx
@@ -9,234 +9,115 @@ interface Props {
}
function Color_firefox(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_fr.tsx b/frontend/app/components/ui/Icons/color_fr.tsx
index 902c97eeb..ef8ab49a4 100644
--- a/frontend/app/components/ui/Icons/color_fr.tsx
+++ b/frontend/app/components/ui/Icons/color_fr.tsx
@@ -9,36 +9,22 @@ interface Props {
}
function Color_fr(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_gb.tsx b/frontend/app/components/ui/Icons/color_gb.tsx
index 85447ad7b..655df9c9f 100644
--- a/frontend/app/components/ui/Icons/color_gb.tsx
+++ b/frontend/app/components/ui/Icons/color_gb.tsx
@@ -9,75 +9,34 @@ interface Props {
}
function Color_gb(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_in.tsx b/frontend/app/components/ui/Icons/color_in.tsx
index bd39f5e46..c69825442 100644
--- a/frontend/app/components/ui/Icons/color_in.tsx
+++ b/frontend/app/components/ui/Icons/color_in.tsx
@@ -9,65 +9,29 @@ interface Props {
}
function Color_in(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_bad_request.tsx b/frontend/app/components/ui/Icons/color_issues_bad_request.tsx
index 29a89fc9b..2d68d36f1 100644
--- a/frontend/app/components/ui/Icons/color_issues_bad_request.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_bad_request.tsx
@@ -9,60 +9,18 @@ interface Props {
}
function Color_issues_bad_request(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_click_rage.tsx b/frontend/app/components/ui/Icons/color_issues_click_rage.tsx
index a4461d625..ab28dc1ed 100644
--- a/frontend/app/components/ui/Icons/color_issues_click_rage.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_click_rage.tsx
@@ -9,39 +9,15 @@ interface Props {
}
function Color_issues_click_rage(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_cpu.tsx b/frontend/app/components/ui/Icons/color_issues_cpu.tsx
index b48b4af0f..36d57cdf2 100644
--- a/frontend/app/components/ui/Icons/color_issues_cpu.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_cpu.tsx
@@ -9,81 +9,21 @@ interface Props {
}
function Color_issues_cpu(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_crash.tsx b/frontend/app/components/ui/Icons/color_issues_crash.tsx
index 3f42d2637..ce89cb0e3 100644
--- a/frontend/app/components/ui/Icons/color_issues_crash.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_crash.tsx
@@ -9,46 +9,16 @@ interface Props {
}
function Color_issues_crash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_custom.tsx b/frontend/app/components/ui/Icons/color_issues_custom.tsx
index 0598bc234..ee45b9ac2 100644
--- a/frontend/app/components/ui/Icons/color_issues_custom.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_custom.tsx
@@ -9,39 +9,15 @@ interface Props {
}
function Color_issues_custom(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_dead_click.tsx b/frontend/app/components/ui/Icons/color_issues_dead_click.tsx
index d03f5217b..e9e484ea5 100644
--- a/frontend/app/components/ui/Icons/color_issues_dead_click.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_dead_click.tsx
@@ -9,81 +9,21 @@ interface Props {
}
function Color_issues_dead_click(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_errors.tsx b/frontend/app/components/ui/Icons/color_issues_errors.tsx
index 7f42042b1..eb3d4f282 100644
--- a/frontend/app/components/ui/Icons/color_issues_errors.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_errors.tsx
@@ -9,32 +9,14 @@ interface Props {
}
function Color_issues_errors(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_excessive_scrolling.tsx b/frontend/app/components/ui/Icons/color_issues_excessive_scrolling.tsx
index 6f9d2dbb6..fc18db055 100644
--- a/frontend/app/components/ui/Icons/color_issues_excessive_scrolling.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_excessive_scrolling.tsx
@@ -9,32 +9,14 @@ interface Props {
}
function Color_issues_excessive_scrolling(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_js_exception.tsx b/frontend/app/components/ui/Icons/color_issues_js_exception.tsx
index 5aa4494ca..9e15c438d 100644
--- a/frontend/app/components/ui/Icons/color_issues_js_exception.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_js_exception.tsx
@@ -9,32 +9,14 @@ interface Props {
}
function Color_issues_js_exception(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_memory.tsx b/frontend/app/components/ui/Icons/color_issues_memory.tsx
index 31a6c2e8f..2ca3854ce 100644
--- a/frontend/app/components/ui/Icons/color_issues_memory.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_memory.tsx
@@ -9,74 +9,20 @@ interface Props {
}
function Color_issues_memory(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_missing_resource.tsx b/frontend/app/components/ui/Icons/color_issues_missing_resource.tsx
index ce8dd89cc..3c278e4df 100644
--- a/frontend/app/components/ui/Icons/color_issues_missing_resource.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_missing_resource.tsx
@@ -9,53 +9,17 @@ interface Props {
}
function Color_issues_missing_resource(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_mouse_thrashing.tsx b/frontend/app/components/ui/Icons/color_issues_mouse_thrashing.tsx
index ec8f12c11..d31303626 100644
--- a/frontend/app/components/ui/Icons/color_issues_mouse_thrashing.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_mouse_thrashing.tsx
@@ -9,25 +9,13 @@ interface Props {
}
function Color_issues_mouse_thrashing(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_issues_slow_page_load.tsx b/frontend/app/components/ui/Icons/color_issues_slow_page_load.tsx
index 32cf7e3e3..cbfeb159d 100644
--- a/frontend/app/components/ui/Icons/color_issues_slow_page_load.tsx
+++ b/frontend/app/components/ui/Icons/color_issues_slow_page_load.tsx
@@ -9,93 +9,28 @@ interface Props {
}
function Color_issues_slow_page_load(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_microsoft.tsx b/frontend/app/components/ui/Icons/color_microsoft.tsx
index 5cc9963fd..105f90c1b 100644
--- a/frontend/app/components/ui/Icons/color_microsoft.tsx
+++ b/frontend/app/components/ui/Icons/color_microsoft.tsx
@@ -9,14 +9,15 @@ interface Props {
}
function Color_microsoft(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_opera.tsx b/frontend/app/components/ui/Icons/color_opera.tsx
index b1a9d979d..82a1a6218 100644
--- a/frontend/app/components/ui/Icons/color_opera.tsx
+++ b/frontend/app/components/ui/Icons/color_opera.tsx
@@ -9,46 +9,27 @@ interface Props {
}
function Color_opera(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_android.tsx b/frontend/app/components/ui/Icons/color_os_android.tsx
index 1712a7ccc..4e1d96be2 100644
--- a/frontend/app/components/ui/Icons/color_os_android.tsx
+++ b/frontend/app/components/ui/Icons/color_os_android.tsx
@@ -9,28 +9,14 @@ interface Props {
}
function Color_os_android(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_apple.tsx b/frontend/app/components/ui/Icons/color_os_apple.tsx
index 0050bbd74..23b17a755 100644
--- a/frontend/app/components/ui/Icons/color_os_apple.tsx
+++ b/frontend/app/components/ui/Icons/color_os_apple.tsx
@@ -9,18 +9,12 @@ interface Props {
}
function Color_os_apple(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_elementary.tsx b/frontend/app/components/ui/Icons/color_os_elementary.tsx
index d62edfd76..3283dff2a 100644
--- a/frontend/app/components/ui/Icons/color_os_elementary.tsx
+++ b/frontend/app/components/ui/Icons/color_os_elementary.tsx
@@ -9,14 +9,11 @@ interface Props {
}
function Color_os_elementary(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_fedora.tsx b/frontend/app/components/ui/Icons/color_os_fedora.tsx
index 88dfc4f34..b0f44be63 100644
--- a/frontend/app/components/ui/Icons/color_os_fedora.tsx
+++ b/frontend/app/components/ui/Icons/color_os_fedora.tsx
@@ -9,22 +9,13 @@ interface Props {
}
function Color_os_fedora(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_ios.tsx b/frontend/app/components/ui/Icons/color_os_ios.tsx
index bf8ac2a7f..facd839ad 100644
--- a/frontend/app/components/ui/Icons/color_os_ios.tsx
+++ b/frontend/app/components/ui/Icons/color_os_ios.tsx
@@ -9,26 +9,14 @@ interface Props {
}
function Color_os_ios(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_linux.tsx b/frontend/app/components/ui/Icons/color_os_linux.tsx
index 01d29ed18..c8ddf900a 100644
--- a/frontend/app/components/ui/Icons/color_os_linux.tsx
+++ b/frontend/app/components/ui/Icons/color_os_linux.tsx
@@ -9,292 +9,99 @@ interface Props {
}
function Color_os_linux(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_macos.tsx b/frontend/app/components/ui/Icons/color_os_macos.tsx
index 25f941845..62b7b1cd9 100644
--- a/frontend/app/components/ui/Icons/color_os_macos.tsx
+++ b/frontend/app/components/ui/Icons/color_os_macos.tsx
@@ -9,33 +9,20 @@ interface Props {
}
function Color_os_macos(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_microsoft.tsx b/frontend/app/components/ui/Icons/color_os_microsoft.tsx
index c972cfcd9..e872384de 100644
--- a/frontend/app/components/ui/Icons/color_os_microsoft.tsx
+++ b/frontend/app/components/ui/Icons/color_os_microsoft.tsx
@@ -9,14 +9,14 @@ interface Props {
}
function Color_os_microsoft(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_ubuntu.tsx b/frontend/app/components/ui/Icons/color_os_ubuntu.tsx
index ce663cd32..7ded747fb 100644
--- a/frontend/app/components/ui/Icons/color_os_ubuntu.tsx
+++ b/frontend/app/components/ui/Icons/color_os_ubuntu.tsx
@@ -9,18 +9,12 @@ interface Props {
}
function Color_os_ubuntu(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_os_unkown.tsx b/frontend/app/components/ui/Icons/color_os_unkown.tsx
index f2faa0b14..c27ebd533 100644
--- a/frontend/app/components/ui/Icons/color_os_unkown.tsx
+++ b/frontend/app/components/ui/Icons/color_os_unkown.tsx
@@ -9,39 +9,15 @@ interface Props {
}
function Color_os_unkown(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_safari.tsx b/frontend/app/components/ui/Icons/color_safari.tsx
index 10f737f1e..1b6172cac 100644
--- a/frontend/app/components/ui/Icons/color_safari.tsx
+++ b/frontend/app/components/ui/Icons/color_safari.tsx
@@ -9,592 +9,162 @@ interface Props {
}
function Color_safari(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_ubuntu.tsx b/frontend/app/components/ui/Icons/color_ubuntu.tsx
index 398e29cb8..b43993527 100644
--- a/frontend/app/components/ui/Icons/color_ubuntu.tsx
+++ b/frontend/app/components/ui/Icons/color_ubuntu.tsx
@@ -9,18 +9,13 @@ interface Props {
}
function Color_ubuntu(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/color_us.tsx b/frontend/app/components/ui/Icons/color_us.tsx
index 965e9a08a..d539e5413 100644
--- a/frontend/app/components/ui/Icons/color_us.tsx
+++ b/frontend/app/components/ui/Icons/color_us.tsx
@@ -9,73 +9,29 @@ interface Props {
}
function Color_us(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+
);
}
diff --git a/frontend/app/components/ui/Icons/columns_gap.tsx b/frontend/app/components/ui/Icons/columns_gap.tsx
index edac7e499..16ead70b6 100644
--- a/frontend/app/components/ui/Icons/columns_gap.tsx
+++ b/frontend/app/components/ui/Icons/columns_gap.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Columns_gap(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/console.tsx b/frontend/app/components/ui/Icons/console.tsx
index a347ffaa8..fc68f4d9c 100644
--- a/frontend/app/components/ui/Icons/console.tsx
+++ b/frontend/app/components/ui/Icons/console.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Console(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/console_error.tsx b/frontend/app/components/ui/Icons/console_error.tsx
index 7c7661a26..9f67a5fd7 100644
--- a/frontend/app/components/ui/Icons/console_error.tsx
+++ b/frontend/app/components/ui/Icons/console_error.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Console_error(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/console_exception.tsx b/frontend/app/components/ui/Icons/console_exception.tsx
index 061c3532e..763dc0e07 100644
--- a/frontend/app/components/ui/Icons/console_exception.tsx
+++ b/frontend/app/components/ui/Icons/console_exception.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Console_exception(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/console_info.tsx b/frontend/app/components/ui/Icons/console_info.tsx
index 668e1f64d..99009e973 100644
--- a/frontend/app/components/ui/Icons/console_info.tsx
+++ b/frontend/app/components/ui/Icons/console_info.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Console_info(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/console_warning.tsx b/frontend/app/components/ui/Icons/console_warning.tsx
index 7ac9c38c5..df7f0b10a 100644
--- a/frontend/app/components/ui/Icons/console_warning.tsx
+++ b/frontend/app/components/ui/Icons/console_warning.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Console_warning(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/controller.tsx b/frontend/app/components/ui/Icons/controller.tsx
index d443af757..c9ae051d4 100644
--- a/frontend/app/components/ui/Icons/controller.tsx
+++ b/frontend/app/components/ui/Icons/controller.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Controller(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cookies.tsx b/frontend/app/components/ui/Icons/cookies.tsx
index 37cf01101..dc99ba48b 100644
--- a/frontend/app/components/ui/Icons/cookies.tsx
+++ b/frontend/app/components/ui/Icons/cookies.tsx
@@ -9,17 +9,9 @@ interface Props {
}
function Cookies(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/copy.tsx b/frontend/app/components/ui/Icons/copy.tsx
index 35ea1e4ad..417925766 100644
--- a/frontend/app/components/ui/Icons/copy.tsx
+++ b/frontend/app/components/ui/Icons/copy.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Copy(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/credit_card_2_back.tsx b/frontend/app/components/ui/Icons/credit_card_2_back.tsx
index d5cada84c..7e786e394 100644
--- a/frontend/app/components/ui/Icons/credit_card_2_back.tsx
+++ b/frontend/app/components/ui/Icons/credit_card_2_back.tsx
@@ -9,17 +9,9 @@ interface Props {
}
function Credit_card_2_back(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cross.tsx b/frontend/app/components/ui/Icons/cross.tsx
index 032c869b8..00318f975 100644
--- a/frontend/app/components/ui/Icons/cross.tsx
+++ b/frontend/app/components/ui/Icons/cross.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Cross(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cubes.tsx b/frontend/app/components/ui/Icons/cubes.tsx
index 8d798be6d..7b0d9fe0b 100644
--- a/frontend/app/components/ui/Icons/cubes.tsx
+++ b/frontend/app/components/ui/Icons/cubes.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Cubes(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cursor_trash.tsx b/frontend/app/components/ui/Icons/cursor_trash.tsx
index bdf75337c..c449353e3 100644
--- a/frontend/app/components/ui/Icons/cursor_trash.tsx
+++ b/frontend/app/components/ui/Icons/cursor_trash.tsx
@@ -9,37 +9,9 @@ interface Props {
}
function Cursor_trash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/cypress.tsx b/frontend/app/components/ui/Icons/cypress.tsx
index dc0248922..2a1b4f2e2 100644
--- a/frontend/app/components/ui/Icons/cypress.tsx
+++ b/frontend/app/components/ui/Icons/cypress.tsx
@@ -1,12 +1,11 @@
-
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
- size?: number | string;
- width?: number | string;
- height?: number | string;
- fill?: string;
+ size?: number | string;
+ width?: number | string;
+ height?: number | string;
+ fill?: string;
}
function Cypress(props: Props) {
diff --git a/frontend/app/components/ui/Icons/dash.tsx b/frontend/app/components/ui/Icons/dash.tsx
index 902dc3337..544dab3e1 100644
--- a/frontend/app/components/ui/Icons/dash.tsx
+++ b/frontend/app/components/ui/Icons/dash.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Dash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/dashboard_icn.tsx b/frontend/app/components/ui/Icons/dashboard_icn.tsx
index 658a9a508..3142277d3 100644
--- a/frontend/app/components/ui/Icons/dashboard_icn.tsx
+++ b/frontend/app/components/ui/Icons/dashboard_icn.tsx
@@ -9,236 +9,9 @@ interface Props {
}
function Dashboard_icn(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/dashboards_circle_alert.tsx b/frontend/app/components/ui/Icons/dashboards_circle_alert.tsx
index fd38dcc52..7b0fb1bc8 100644
--- a/frontend/app/components/ui/Icons/dashboards_circle_alert.tsx
+++ b/frontend/app/components/ui/Icons/dashboards_circle_alert.tsx
@@ -9,30 +9,9 @@ interface Props {
}
function Dashboards_circle_alert(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/dashboards_cohort_chart.tsx b/frontend/app/components/ui/Icons/dashboards_cohort_chart.tsx
index e52ff4d73..966864ad7 100644
--- a/frontend/app/components/ui/Icons/dashboards_cohort_chart.tsx
+++ b/frontend/app/components/ui/Icons/dashboards_cohort_chart.tsx
@@ -9,35 +9,9 @@ interface Props {
}
function Dashboards_cohort_chart(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/dashboards_heatmap_2.tsx b/frontend/app/components/ui/Icons/dashboards_heatmap_2.tsx
index 6e99227c2..90827d214 100644
--- a/frontend/app/components/ui/Icons/dashboards_heatmap_2.tsx
+++ b/frontend/app/components/ui/Icons/dashboards_heatmap_2.tsx
@@ -9,27 +9,9 @@ interface Props {
}
function Dashboards_heatmap_2(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/dashboards_user_journey.tsx b/frontend/app/components/ui/Icons/dashboards_user_journey.tsx
index 658d5b121..5a137beaf 100644
--- a/frontend/app/components/ui/Icons/dashboards_user_journey.tsx
+++ b/frontend/app/components/ui/Icons/dashboards_user_journey.tsx
@@ -9,27 +9,9 @@ interface Props {
}
function Dashboards_user_journey(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_clickMap.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_clickMap.tsx
index 5e8d39ab5..68f3d89e4 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_clickMap.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_clickMap.tsx
@@ -9,139 +9,9 @@ interface Props {
}
function Db_icons_icn_card_clickmap(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_errors.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_errors.tsx
index aab33feff..399b6f1b6 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_errors.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_errors.tsx
@@ -9,55 +9,9 @@ interface Props {
}
function Db_icons_icn_card_errors(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_funnel.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_funnel.tsx
index e5120c4c9..b03ea762f 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_funnel.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_funnel.tsx
@@ -9,165 +9,9 @@ interface Props {
}
function Db_icons_icn_card_funnel(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_funnels.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_funnels.tsx
index 28e7936c5..55932de8b 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_funnels.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_funnels.tsx
@@ -9,215 +9,9 @@ interface Props {
}
function Db_icons_icn_card_funnels(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_insights.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_insights.tsx
index c18e46f37..43e3aee9f 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_insights.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_insights.tsx
@@ -9,98 +9,9 @@ interface Props {
}
function Db_icons_icn_card_insights(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_library.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_library.tsx
index 7090587a1..eb3e0dbf7 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_library.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_library.tsx
@@ -9,127 +9,9 @@ interface Props {
}
function Db_icons_icn_card_library(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_mapchart.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_mapchart.tsx
index 0d1062eab..065ceda94 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_mapchart.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_mapchart.tsx
@@ -9,87 +9,9 @@ interface Props {
}
function Db_icons_icn_card_mapchart(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_pathAnalysis.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_pathAnalysis.tsx
index e366ed1b1..c86965596 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_pathAnalysis.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_pathAnalysis.tsx
@@ -9,124 +9,9 @@ interface Props {
}
function Db_icons_icn_card_pathanalysis(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_performance.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_performance.tsx
index 0793d5df9..8f716f7b8 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_performance.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_performance.tsx
@@ -9,76 +9,9 @@ interface Props {
}
function Db_icons_icn_card_performance(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_resources.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_resources.tsx
index b01174507..4a1a20412 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_resources.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_resources.tsx
@@ -9,120 +9,9 @@ interface Props {
}
function Db_icons_icn_card_resources(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_table.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_table.tsx
index 6c2bf1041..29e8f081c 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_table.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_table.tsx
@@ -9,220 +9,9 @@ interface Props {
}
function Db_icons_icn_card_table(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_timeseries.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_timeseries.tsx
index 306de70e7..81ea9d191 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_timeseries.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_timeseries.tsx
@@ -9,71 +9,9 @@ interface Props {
}
function Db_icons_icn_card_timeseries(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/db_icons_icn_card_webVitals.tsx b/frontend/app/components/ui/Icons/db_icons_icn_card_webVitals.tsx
index 2008a53d5..af3393413 100644
--- a/frontend/app/components/ui/Icons/db_icons_icn_card_webVitals.tsx
+++ b/frontend/app/components/ui/Icons/db_icons_icn_card_webVitals.tsx
@@ -9,287 +9,9 @@ interface Props {
}
function Db_icons_icn_card_webvitals(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/desktop.tsx b/frontend/app/components/ui/Icons/desktop.tsx
index 84e6e0672..0f068ef80 100644
--- a/frontend/app/components/ui/Icons/desktop.tsx
+++ b/frontend/app/components/ui/Icons/desktop.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Desktop(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/device.tsx b/frontend/app/components/ui/Icons/device.tsx
index 1d4f325f9..b8aba6632 100644
--- a/frontend/app/components/ui/Icons/device.tsx
+++ b/frontend/app/components/ui/Icons/device.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Device(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/diagram_3.tsx b/frontend/app/components/ui/Icons/diagram_3.tsx
index a2fcd1dcf..74154f259 100644
--- a/frontend/app/components/ui/Icons/diagram_3.tsx
+++ b/frontend/app/components/ui/Icons/diagram_3.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Diagram_3(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/dizzy.tsx b/frontend/app/components/ui/Icons/dizzy.tsx
index a242f9a46..b2f765bda 100644
--- a/frontend/app/components/ui/Icons/dizzy.tsx
+++ b/frontend/app/components/ui/Icons/dizzy.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Dizzy(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/door_closed.tsx b/frontend/app/components/ui/Icons/door_closed.tsx
index 702ecb6e8..25fc45ea4 100644
--- a/frontend/app/components/ui/Icons/door_closed.tsx
+++ b/frontend/app/components/ui/Icons/door_closed.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Door_closed(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/download.tsx b/frontend/app/components/ui/Icons/download.tsx
index db594ca5d..ba2cbae03 100644
--- a/frontend/app/components/ui/Icons/download.tsx
+++ b/frontend/app/components/ui/Icons/download.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Download(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/drag.tsx b/frontend/app/components/ui/Icons/drag.tsx
index e6aff0ea5..1fe43a762 100644
--- a/frontend/app/components/ui/Icons/drag.tsx
+++ b/frontend/app/components/ui/Icons/drag.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Drag(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/edit.tsx b/frontend/app/components/ui/Icons/edit.tsx
index aac25fd69..c01458b53 100644
--- a/frontend/app/components/ui/Icons/edit.tsx
+++ b/frontend/app/components/ui/Icons/edit.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Edit(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/ellipsis_v.tsx b/frontend/app/components/ui/Icons/ellipsis_v.tsx
index 55f4223dd..b0fb27315 100644
--- a/frontend/app/components/ui/Icons/ellipsis_v.tsx
+++ b/frontend/app/components/ui/Icons/ellipsis_v.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Ellipsis_v(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/emoji_dizzy.tsx b/frontend/app/components/ui/Icons/emoji_dizzy.tsx
index ebdca6bf2..6a8adf313 100644
--- a/frontend/app/components/ui/Icons/emoji_dizzy.tsx
+++ b/frontend/app/components/ui/Icons/emoji_dizzy.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Emoji_dizzy(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/enter.tsx b/frontend/app/components/ui/Icons/enter.tsx
index 7c75569a2..a0b1f24f4 100644
--- a/frontend/app/components/ui/Icons/enter.tsx
+++ b/frontend/app/components/ui/Icons/enter.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Enter(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/envelope.tsx b/frontend/app/components/ui/Icons/envelope.tsx
index 60a494f4b..2beb3de21 100644
--- a/frontend/app/components/ui/Icons/envelope.tsx
+++ b/frontend/app/components/ui/Icons/envelope.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Envelope(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/envelope_check.tsx b/frontend/app/components/ui/Icons/envelope_check.tsx
index c3eb3eae1..da9ec153e 100644
--- a/frontend/app/components/ui/Icons/envelope_check.tsx
+++ b/frontend/app/components/ui/Icons/envelope_check.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Envelope_check(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/envelope_paper.tsx b/frontend/app/components/ui/Icons/envelope_paper.tsx
index b2bfbeeae..1d15bb107 100644
--- a/frontend/app/components/ui/Icons/envelope_paper.tsx
+++ b/frontend/app/components/ui/Icons/envelope_paper.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Envelope_paper(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/envelope_x.tsx b/frontend/app/components/ui/Icons/envelope_x.tsx
index a9f1e37b2..8e301deca 100644
--- a/frontend/app/components/ui/Icons/envelope_x.tsx
+++ b/frontend/app/components/ui/Icons/envelope_x.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Envelope_x(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/errors_icon.tsx b/frontend/app/components/ui/Icons/errors_icon.tsx
index cc2475d6c..7873dfdf5 100644
--- a/frontend/app/components/ui/Icons/errors_icon.tsx
+++ b/frontend/app/components/ui/Icons/errors_icon.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Errors_icon(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_click.tsx b/frontend/app/components/ui/Icons/event_click.tsx
index 81ed566a4..afa413b6a 100644
--- a/frontend/app/components/ui/Icons/event_click.tsx
+++ b/frontend/app/components/ui/Icons/event_click.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Event_click(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_click_hesitation.tsx b/frontend/app/components/ui/Icons/event_click_hesitation.tsx
index fd21172ee..5c0b69a9f 100644
--- a/frontend/app/components/ui/Icons/event_click_hesitation.tsx
+++ b/frontend/app/components/ui/Icons/event_click_hesitation.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Event_click_hesitation(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_clickrage.tsx b/frontend/app/components/ui/Icons/event_clickrage.tsx
index 588c18c96..867e768c2 100644
--- a/frontend/app/components/ui/Icons/event_clickrage.tsx
+++ b/frontend/app/components/ui/Icons/event_clickrage.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Event_clickrage(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_code.tsx b/frontend/app/components/ui/Icons/event_code.tsx
index e4a621d30..31a8f869d 100644
--- a/frontend/app/components/ui/Icons/event_code.tsx
+++ b/frontend/app/components/ui/Icons/event_code.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Event_code(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_i_cursor.tsx b/frontend/app/components/ui/Icons/event_i_cursor.tsx
index 1bc251109..f76bb0351 100644
--- a/frontend/app/components/ui/Icons/event_i_cursor.tsx
+++ b/frontend/app/components/ui/Icons/event_i_cursor.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Event_i_cursor(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_input.tsx b/frontend/app/components/ui/Icons/event_input.tsx
index 322da2f54..1cf92821c 100644
--- a/frontend/app/components/ui/Icons/event_input.tsx
+++ b/frontend/app/components/ui/Icons/event_input.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Event_input(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_input_hesitation.tsx b/frontend/app/components/ui/Icons/event_input_hesitation.tsx
index a54d935e9..2c3c0814a 100644
--- a/frontend/app/components/ui/Icons/event_input_hesitation.tsx
+++ b/frontend/app/components/ui/Icons/event_input_hesitation.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Event_input_hesitation(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_link.tsx b/frontend/app/components/ui/Icons/event_link.tsx
index b5e620c7e..ffdb7355d 100644
--- a/frontend/app/components/ui/Icons/event_link.tsx
+++ b/frontend/app/components/ui/Icons/event_link.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Event_link(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_location.tsx b/frontend/app/components/ui/Icons/event_location.tsx
index a7c3490c7..23ed75944 100644
--- a/frontend/app/components/ui/Icons/event_location.tsx
+++ b/frontend/app/components/ui/Icons/event_location.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Event_location(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx b/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx
index 823d6036a..afd23c973 100644
--- a/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx
+++ b/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx
@@ -9,37 +9,9 @@ interface Props {
}
function Event_mouse_thrashing(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_resize.tsx b/frontend/app/components/ui/Icons/event_resize.tsx
index 1e4ba55c5..e2b01f169 100644
--- a/frontend/app/components/ui/Icons/event_resize.tsx
+++ b/frontend/app/components/ui/Icons/event_resize.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Event_resize(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/event_view.tsx b/frontend/app/components/ui/Icons/event_view.tsx
index cedf43246..fddc790e8 100644
--- a/frontend/app/components/ui/Icons/event_view.tsx
+++ b/frontend/app/components/ui/Icons/event_view.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Event_view(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/exclamation_circle.tsx b/frontend/app/components/ui/Icons/exclamation_circle.tsx
index 3eb06fbb9..d479b4cd6 100644
--- a/frontend/app/components/ui/Icons/exclamation_circle.tsx
+++ b/frontend/app/components/ui/Icons/exclamation_circle.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Exclamation_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx b/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx
index 6a6c0c6db..3ec860935 100644
--- a/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx
@@ -9,25 +9,9 @@ interface Props {
}
function Exclamation_circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/exclamation_triangle.tsx b/frontend/app/components/ui/Icons/exclamation_triangle.tsx
index 2008ce496..577966056 100644
--- a/frontend/app/components/ui/Icons/exclamation_triangle.tsx
+++ b/frontend/app/components/ui/Icons/exclamation_triangle.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Exclamation_triangle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/explosion.tsx b/frontend/app/components/ui/Icons/explosion.tsx
index 15efc0f75..d24e195ef 100644
--- a/frontend/app/components/ui/Icons/explosion.tsx
+++ b/frontend/app/components/ui/Icons/explosion.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Explosion(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/external_link_alt.tsx b/frontend/app/components/ui/Icons/external_link_alt.tsx
index 055f83e75..6c773f8c8 100644
--- a/frontend/app/components/ui/Icons/external_link_alt.tsx
+++ b/frontend/app/components/ui/Icons/external_link_alt.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function External_link_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/eye.tsx b/frontend/app/components/ui/Icons/eye.tsx
index e397ae839..543bfef6b 100644
--- a/frontend/app/components/ui/Icons/eye.tsx
+++ b/frontend/app/components/ui/Icons/eye.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Eye(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/eye_slash.tsx b/frontend/app/components/ui/Icons/eye_slash.tsx
index 9a97b7d93..778eb3b7c 100644
--- a/frontend/app/components/ui/Icons/eye_slash.tsx
+++ b/frontend/app/components/ui/Icons/eye_slash.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Eye_slash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/eye_slash_fill.tsx b/frontend/app/components/ui/Icons/eye_slash_fill.tsx
index 9f1b69887..d509afe68 100644
--- a/frontend/app/components/ui/Icons/eye_slash_fill.tsx
+++ b/frontend/app/components/ui/Icons/eye_slash_fill.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Eye_slash_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/fetch.tsx b/frontend/app/components/ui/Icons/fetch.tsx
index cae4b9aea..6a4def547 100644
--- a/frontend/app/components/ui/Icons/fetch.tsx
+++ b/frontend/app/components/ui/Icons/fetch.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Fetch(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/fetch_request.tsx b/frontend/app/components/ui/Icons/fetch_request.tsx
index 3a53e2ca0..f47dd1847 100644
--- a/frontend/app/components/ui/Icons/fetch_request.tsx
+++ b/frontend/app/components/ui/Icons/fetch_request.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Fetch_request(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/fflag_multi.tsx b/frontend/app/components/ui/Icons/fflag_multi.tsx
index 8ed806eb0..dd4233604 100644
--- a/frontend/app/components/ui/Icons/fflag_multi.tsx
+++ b/frontend/app/components/ui/Icons/fflag_multi.tsx
@@ -9,17 +9,9 @@ interface Props {
}
function Fflag_multi(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/fflag_single.tsx b/frontend/app/components/ui/Icons/fflag_single.tsx
index 198f6cbd4..6ef188550 100644
--- a/frontend/app/components/ui/Icons/fflag_single.tsx
+++ b/frontend/app/components/ui/Icons/fflag_single.tsx
@@ -9,15 +9,9 @@ interface Props {
}
function Fflag_single(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/file.tsx b/frontend/app/components/ui/Icons/file.tsx
index a54914e98..571c4aecc 100644
--- a/frontend/app/components/ui/Icons/file.tsx
+++ b/frontend/app/components/ui/Icons/file.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function File(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/file_bar_graph.tsx b/frontend/app/components/ui/Icons/file_bar_graph.tsx
index 48799eaef..8066f7d08 100644
--- a/frontend/app/components/ui/Icons/file_bar_graph.tsx
+++ b/frontend/app/components/ui/Icons/file_bar_graph.tsx
@@ -9,19 +9,9 @@ interface Props {
}
function File_bar_graph(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/file_code.tsx b/frontend/app/components/ui/Icons/file_code.tsx
index 1c697d805..5caa2c323 100644
--- a/frontend/app/components/ui/Icons/file_code.tsx
+++ b/frontend/app/components/ui/Icons/file_code.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function File_code(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/file_medical_alt.tsx b/frontend/app/components/ui/Icons/file_medical_alt.tsx
index 2dedc072c..97a9d274e 100644
--- a/frontend/app/components/ui/Icons/file_medical_alt.tsx
+++ b/frontend/app/components/ui/Icons/file_medical_alt.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function File_medical_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/file_pdf.tsx b/frontend/app/components/ui/Icons/file_pdf.tsx
index 2b60bfde9..4a8e9f8de 100644
--- a/frontend/app/components/ui/Icons/file_pdf.tsx
+++ b/frontend/app/components/ui/Icons/file_pdf.tsx
@@ -9,26 +9,9 @@ interface Props {
}
function File_pdf(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/files.tsx b/frontend/app/components/ui/Icons/files.tsx
index 71a078852..1b10b7a14 100644
--- a/frontend/app/components/ui/Icons/files.tsx
+++ b/frontend/app/components/ui/Icons/files.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Files(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filetype_js.tsx b/frontend/app/components/ui/Icons/filetype_js.tsx
index c74413d61..842201cc4 100644
--- a/frontend/app/components/ui/Icons/filetype_js.tsx
+++ b/frontend/app/components/ui/Icons/filetype_js.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filetype_js(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filetype_pdf.tsx b/frontend/app/components/ui/Icons/filetype_pdf.tsx
index fbfa72ba0..64b6e2912 100644
--- a/frontend/app/components/ui/Icons/filetype_pdf.tsx
+++ b/frontend/app/components/ui/Icons/filetype_pdf.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filetype_pdf(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filter.tsx b/frontend/app/components/ui/Icons/filter.tsx
index 41f7949e4..771a19852 100644
--- a/frontend/app/components/ui/Icons/filter.tsx
+++ b/frontend/app/components/ui/Icons/filter.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Filter(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx b/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx
index 9a34da952..ff05557f1 100644
--- a/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx
+++ b/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_arrow_return_right(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_browser.tsx b/frontend/app/components/ui/Icons/filters_browser.tsx
index 3016588e5..743fefc03 100644
--- a/frontend/app/components/ui/Icons/filters_browser.tsx
+++ b/frontend/app/components/ui/Icons/filters_browser.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_browser(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_chevrons_up_down.tsx b/frontend/app/components/ui/Icons/filters_chevrons_up_down.tsx
index 314308043..e8c664564 100644
--- a/frontend/app/components/ui/Icons/filters_chevrons_up_down.tsx
+++ b/frontend/app/components/ui/Icons/filters_chevrons_up_down.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Filters_chevrons_up_down(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_click.tsx b/frontend/app/components/ui/Icons/filters_click.tsx
index 80340073a..5529ff918 100644
--- a/frontend/app/components/ui/Icons/filters_click.tsx
+++ b/frontend/app/components/ui/Icons/filters_click.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_click(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_clickrage.tsx b/frontend/app/components/ui/Icons/filters_clickrage.tsx
index 3d7a6fb42..4c81e6aa6 100644
--- a/frontend/app/components/ui/Icons/filters_clickrage.tsx
+++ b/frontend/app/components/ui/Icons/filters_clickrage.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_clickrage(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_code.tsx b/frontend/app/components/ui/Icons/filters_code.tsx
index a0a3ae45d..428417a57 100644
--- a/frontend/app/components/ui/Icons/filters_code.tsx
+++ b/frontend/app/components/ui/Icons/filters_code.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_code(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_console.tsx b/frontend/app/components/ui/Icons/filters_console.tsx
index af637dea8..b2487293d 100644
--- a/frontend/app/components/ui/Icons/filters_console.tsx
+++ b/frontend/app/components/ui/Icons/filters_console.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_console(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_country.tsx b/frontend/app/components/ui/Icons/filters_country.tsx
index 9c6b0771b..63d91acb0 100644
--- a/frontend/app/components/ui/Icons/filters_country.tsx
+++ b/frontend/app/components/ui/Icons/filters_country.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_country(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_cpu_load.tsx b/frontend/app/components/ui/Icons/filters_cpu_load.tsx
index b0189cb21..2392df457 100644
--- a/frontend/app/components/ui/Icons/filters_cpu_load.tsx
+++ b/frontend/app/components/ui/Icons/filters_cpu_load.tsx
@@ -9,27 +9,9 @@ interface Props {
}
function Filters_cpu_load(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_custom.tsx b/frontend/app/components/ui/Icons/filters_custom.tsx
index e62bc6dc9..f5fc069a4 100644
--- a/frontend/app/components/ui/Icons/filters_custom.tsx
+++ b/frontend/app/components/ui/Icons/filters_custom.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_custom(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_device.tsx b/frontend/app/components/ui/Icons/filters_device.tsx
index d74ed7c41..2d05fc4ca 100644
--- a/frontend/app/components/ui/Icons/filters_device.tsx
+++ b/frontend/app/components/ui/Icons/filters_device.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_device(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_dom_complete.tsx b/frontend/app/components/ui/Icons/filters_dom_complete.tsx
index ea2ac67d1..164332eba 100644
--- a/frontend/app/components/ui/Icons/filters_dom_complete.tsx
+++ b/frontend/app/components/ui/Icons/filters_dom_complete.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Filters_dom_complete(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_duration.tsx b/frontend/app/components/ui/Icons/filters_duration.tsx
index b2a522347..0b7eed5df 100644
--- a/frontend/app/components/ui/Icons/filters_duration.tsx
+++ b/frontend/app/components/ui/Icons/filters_duration.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_duration(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_error.tsx b/frontend/app/components/ui/Icons/filters_error.tsx
index 303c974a9..cacabde71 100644
--- a/frontend/app/components/ui/Icons/filters_error.tsx
+++ b/frontend/app/components/ui/Icons/filters_error.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Filters_error(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_fetch.tsx b/frontend/app/components/ui/Icons/filters_fetch.tsx
index 06f9e2cea..b465f24be 100644
--- a/frontend/app/components/ui/Icons/filters_fetch.tsx
+++ b/frontend/app/components/ui/Icons/filters_fetch.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_fetch(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_fetch_failed.tsx b/frontend/app/components/ui/Icons/filters_fetch_failed.tsx
index 7ff2887c8..2b321b6be 100644
--- a/frontend/app/components/ui/Icons/filters_fetch_failed.tsx
+++ b/frontend/app/components/ui/Icons/filters_fetch_failed.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Filters_fetch_failed(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_file_code.tsx b/frontend/app/components/ui/Icons/filters_file_code.tsx
index 40154e4e6..692dd042e 100644
--- a/frontend/app/components/ui/Icons/filters_file_code.tsx
+++ b/frontend/app/components/ui/Icons/filters_file_code.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_file_code(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_graphql.tsx b/frontend/app/components/ui/Icons/filters_graphql.tsx
index e0a08601b..be420f900 100644
--- a/frontend/app/components/ui/Icons/filters_graphql.tsx
+++ b/frontend/app/components/ui/Icons/filters_graphql.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_graphql(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_i_cursor.tsx b/frontend/app/components/ui/Icons/filters_i_cursor.tsx
index 4e2c58f6a..a6d331715 100644
--- a/frontend/app/components/ui/Icons/filters_i_cursor.tsx
+++ b/frontend/app/components/ui/Icons/filters_i_cursor.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_i_cursor(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_input.tsx b/frontend/app/components/ui/Icons/filters_input.tsx
index 97878e3c4..13ef10456 100644
--- a/frontend/app/components/ui/Icons/filters_input.tsx
+++ b/frontend/app/components/ui/Icons/filters_input.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_input(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_lcpt.tsx b/frontend/app/components/ui/Icons/filters_lcpt.tsx
index 369a6f1be..a657bd08b 100644
--- a/frontend/app/components/ui/Icons/filters_lcpt.tsx
+++ b/frontend/app/components/ui/Icons/filters_lcpt.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Filters_lcpt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_link.tsx b/frontend/app/components/ui/Icons/filters_link.tsx
index a81db2efa..7fb9c39b2 100644
--- a/frontend/app/components/ui/Icons/filters_link.tsx
+++ b/frontend/app/components/ui/Icons/filters_link.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_link(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_location.tsx b/frontend/app/components/ui/Icons/filters_location.tsx
index 9831ccafc..6240154fe 100644
--- a/frontend/app/components/ui/Icons/filters_location.tsx
+++ b/frontend/app/components/ui/Icons/filters_location.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_location(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_memory_load.tsx b/frontend/app/components/ui/Icons/filters_memory_load.tsx
index 2ac3740fb..250026d47 100644
--- a/frontend/app/components/ui/Icons/filters_memory_load.tsx
+++ b/frontend/app/components/ui/Icons/filters_memory_load.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Filters_memory_load(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_metadata.tsx b/frontend/app/components/ui/Icons/filters_metadata.tsx
index 31a1c4a26..205fe74fd 100644
--- a/frontend/app/components/ui/Icons/filters_metadata.tsx
+++ b/frontend/app/components/ui/Icons/filters_metadata.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_metadata(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_os.tsx b/frontend/app/components/ui/Icons/filters_os.tsx
index 6314c4e4c..e10606f21 100644
--- a/frontend/app/components/ui/Icons/filters_os.tsx
+++ b/frontend/app/components/ui/Icons/filters_os.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_os(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx b/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx
index 393534ebc..27648b9a8 100644
--- a/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx
+++ b/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx
@@ -9,29 +9,9 @@ interface Props {
}
function Filters_perfromance_network_request(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_platform.tsx b/frontend/app/components/ui/Icons/filters_platform.tsx
index e51c30043..bb0aa1c42 100644
--- a/frontend/app/components/ui/Icons/filters_platform.tsx
+++ b/frontend/app/components/ui/Icons/filters_platform.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_platform(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_referrer.tsx b/frontend/app/components/ui/Icons/filters_referrer.tsx
index 2aa323d99..c5c01e612 100644
--- a/frontend/app/components/ui/Icons/filters_referrer.tsx
+++ b/frontend/app/components/ui/Icons/filters_referrer.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_referrer(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_resize.tsx b/frontend/app/components/ui/Icons/filters_resize.tsx
index 7c318866d..bf4e03b95 100644
--- a/frontend/app/components/ui/Icons/filters_resize.tsx
+++ b/frontend/app/components/ui/Icons/filters_resize.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_resize(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_rev_id.tsx b/frontend/app/components/ui/Icons/filters_rev_id.tsx
index 2dacdedd4..9e413b370 100644
--- a/frontend/app/components/ui/Icons/filters_rev_id.tsx
+++ b/frontend/app/components/ui/Icons/filters_rev_id.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_rev_id(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_screen.tsx b/frontend/app/components/ui/Icons/filters_screen.tsx
index c0c373aca..28bb7387e 100644
--- a/frontend/app/components/ui/Icons/filters_screen.tsx
+++ b/frontend/app/components/ui/Icons/filters_screen.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Filters_screen(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_state_action.tsx b/frontend/app/components/ui/Icons/filters_state_action.tsx
index 796c6e4c3..f307301c8 100644
--- a/frontend/app/components/ui/Icons/filters_state_action.tsx
+++ b/frontend/app/components/ui/Icons/filters_state_action.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_state_action(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_tag_element.tsx b/frontend/app/components/ui/Icons/filters_tag_element.tsx
index 41ae6efe0..bd5c1fc50 100644
--- a/frontend/app/components/ui/Icons/filters_tag_element.tsx
+++ b/frontend/app/components/ui/Icons/filters_tag_element.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Filters_tag_element(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_ttfb.tsx b/frontend/app/components/ui/Icons/filters_ttfb.tsx
index 8106f2dc4..fd0fb49ee 100644
--- a/frontend/app/components/ui/Icons/filters_ttfb.tsx
+++ b/frontend/app/components/ui/Icons/filters_ttfb.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Filters_ttfb(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_user_alt.tsx b/frontend/app/components/ui/Icons/filters_user_alt.tsx
index 1a9b69c9d..e6e4a4529 100644
--- a/frontend/app/components/ui/Icons/filters_user_alt.tsx
+++ b/frontend/app/components/ui/Icons/filters_user_alt.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_user_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_userid.tsx b/frontend/app/components/ui/Icons/filters_userid.tsx
index 588e57e29..cb322f76b 100644
--- a/frontend/app/components/ui/Icons/filters_userid.tsx
+++ b/frontend/app/components/ui/Icons/filters_userid.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Filters_userid(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/filters_view.tsx b/frontend/app/components/ui/Icons/filters_view.tsx
index 2a656e24e..c9c5e70fe 100644
--- a/frontend/app/components/ui/Icons/filters_view.tsx
+++ b/frontend/app/components/ui/Icons/filters_view.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Filters_view(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/flag_na.tsx b/frontend/app/components/ui/Icons/flag_na.tsx
index fc466e431..84fc5c16c 100644
--- a/frontend/app/components/ui/Icons/flag_na.tsx
+++ b/frontend/app/components/ui/Icons/flag_na.tsx
@@ -9,15 +9,9 @@ interface Props {
}
function Flag_na(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/folder2.tsx b/frontend/app/components/ui/Icons/folder2.tsx
index beb6aed9e..612a035fd 100644
--- a/frontend/app/components/ui/Icons/folder2.tsx
+++ b/frontend/app/components/ui/Icons/folder2.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Folder2(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/folder_plus.tsx b/frontend/app/components/ui/Icons/folder_plus.tsx
index bc1827806..351aa0b23 100644
--- a/frontend/app/components/ui/Icons/folder_plus.tsx
+++ b/frontend/app/components/ui/Icons/folder_plus.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Folder_plus(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/fullscreen.tsx b/frontend/app/components/ui/Icons/fullscreen.tsx
index 5e3b68180..ba095f6df 100644
--- a/frontend/app/components/ui/Icons/fullscreen.tsx
+++ b/frontend/app/components/ui/Icons/fullscreen.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Fullscreen(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel.tsx b/frontend/app/components/ui/Icons/funnel.tsx
index ef5ed38a7..bf7f13db9 100644
--- a/frontend/app/components/ui/Icons/funnel.tsx
+++ b/frontend/app/components/ui/Icons/funnel.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Funnel(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_cpu.tsx b/frontend/app/components/ui/Icons/funnel_cpu.tsx
index 36e9294e5..ebc54ec2d 100644
--- a/frontend/app/components/ui/Icons/funnel_cpu.tsx
+++ b/frontend/app/components/ui/Icons/funnel_cpu.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_cpu(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx b/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx
index f14c4003e..bd65c0de1 100644
--- a/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_cpu_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_dizzy.tsx b/frontend/app/components/ui/Icons/funnel_dizzy.tsx
index 64b12c90e..ca990315a 100644
--- a/frontend/app/components/ui/Icons/funnel_dizzy.tsx
+++ b/frontend/app/components/ui/Icons/funnel_dizzy.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_dizzy(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx b/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx
index 84f9ae481..fb2e99884 100644
--- a/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx
+++ b/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_emoji_angry(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx b/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx
index 459956d5a..f3f905aa4 100644
--- a/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_emoji_angry_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx b/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx
index c5adbeb8a..d1b2a1e65 100644
--- a/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_emoji_dizzy_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx b/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx
index f0d6e9596..a7896e05d 100644
--- a/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx
+++ b/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Funnel_exclamation_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx b/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx
index 6fb70d35f..d2efad22e 100644
--- a/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_exclamation_circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx b/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx
index 10e4ae915..45123aad8 100644
--- a/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx
+++ b/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_file_earmark_break(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_file_earmark_break_fill.tsx b/frontend/app/components/ui/Icons/funnel_file_earmark_break_fill.tsx
index c840a4e7f..189145195 100644
--- a/frontend/app/components/ui/Icons/funnel_file_earmark_break_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_file_earmark_break_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_file_earmark_break_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx b/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx
index d54ef8d2c..7ec659e7c 100644
--- a/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx
+++ b/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_file_earmark_minus(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_file_earmark_minus_fill.tsx b/frontend/app/components/ui/Icons/funnel_file_earmark_minus_fill.tsx
index fad4d1039..433aa6074 100644
--- a/frontend/app/components/ui/Icons/funnel_file_earmark_minus_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_file_earmark_minus_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_file_earmark_minus_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx b/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx
index e8bc31b03..0997491d9 100644
--- a/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx
+++ b/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_file_medical_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_file_x.tsx b/frontend/app/components/ui/Icons/funnel_file_x.tsx
index 8668d62eb..8ad8d8dc5 100644
--- a/frontend/app/components/ui/Icons/funnel_file_x.tsx
+++ b/frontend/app/components/ui/Icons/funnel_file_x.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_file_x(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_fill.tsx b/frontend/app/components/ui/Icons/funnel_fill.tsx
index d067d250b..a246fbf2d 100644
--- a/frontend/app/components/ui/Icons/funnel_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx b/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx
index 1f51c4068..5184e8719 100644
--- a/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_hdd_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx b/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx
index 817af7fe2..b33810c43 100644
--- a/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx
+++ b/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_hourglass_top(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_image.tsx b/frontend/app/components/ui/Icons/funnel_image.tsx
index 2f2cd862e..993b747dc 100644
--- a/frontend/app/components/ui/Icons/funnel_image.tsx
+++ b/frontend/app/components/ui/Icons/funnel_image.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_image(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_image_fill.tsx b/frontend/app/components/ui/Icons/funnel_image_fill.tsx
index c18130cd8..b8acb9acd 100644
--- a/frontend/app/components/ui/Icons/funnel_image_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_image_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_image_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_microchip.tsx b/frontend/app/components/ui/Icons/funnel_microchip.tsx
index d53315b96..6f6996d3e 100644
--- a/frontend/app/components/ui/Icons/funnel_microchip.tsx
+++ b/frontend/app/components/ui/Icons/funnel_microchip.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_microchip(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_mouse.tsx b/frontend/app/components/ui/Icons/funnel_mouse.tsx
index 9b73f3315..89daa5686 100644
--- a/frontend/app/components/ui/Icons/funnel_mouse.tsx
+++ b/frontend/app/components/ui/Icons/funnel_mouse.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_mouse(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx b/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx
index c1ec77aa7..2b6ddb195 100644
--- a/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx
+++ b/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Funnel_patch_exclamation_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/funnel_sd_card.tsx b/frontend/app/components/ui/Icons/funnel_sd_card.tsx
index 09847f9e3..305ce03e8 100644
--- a/frontend/app/components/ui/Icons/funnel_sd_card.tsx
+++ b/frontend/app/components/ui/Icons/funnel_sd_card.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Funnel_sd_card(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/gear.tsx b/frontend/app/components/ui/Icons/gear.tsx
index 6eff1e876..5bc71c8b7 100644
--- a/frontend/app/components/ui/Icons/gear.tsx
+++ b/frontend/app/components/ui/Icons/gear.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Gear(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/github.tsx b/frontend/app/components/ui/Icons/github.tsx
index 115376a16..a34f268c7 100644
--- a/frontend/app/components/ui/Icons/github.tsx
+++ b/frontend/app/components/ui/Icons/github.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Github(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/graph_up.tsx b/frontend/app/components/ui/Icons/graph_up.tsx
index db4679360..9bd6aa820 100644
--- a/frontend/app/components/ui/Icons/graph_up.tsx
+++ b/frontend/app/components/ui/Icons/graph_up.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Graph_up(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/grid.tsx b/frontend/app/components/ui/Icons/grid.tsx
index 747250c2c..ce5dfd1cf 100644
--- a/frontend/app/components/ui/Icons/grid.tsx
+++ b/frontend/app/components/ui/Icons/grid.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Grid(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/grid_3x3.tsx b/frontend/app/components/ui/Icons/grid_3x3.tsx
index 7bb7dcf8b..399ef8d12 100644
--- a/frontend/app/components/ui/Icons/grid_3x3.tsx
+++ b/frontend/app/components/ui/Icons/grid_3x3.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Grid_3x3(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/grid_check.tsx b/frontend/app/components/ui/Icons/grid_check.tsx
index f077128ff..1d7993221 100644
--- a/frontend/app/components/ui/Icons/grid_check.tsx
+++ b/frontend/app/components/ui/Icons/grid_check.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Grid_check(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/hash.tsx b/frontend/app/components/ui/Icons/hash.tsx
index 85102e1af..d2fdafc8c 100644
--- a/frontend/app/components/ui/Icons/hash.tsx
+++ b/frontend/app/components/ui/Icons/hash.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Hash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/headset.tsx b/frontend/app/components/ui/Icons/headset.tsx
index b94ce74ac..e077f2c1f 100644
--- a/frontend/app/components/ui/Icons/headset.tsx
+++ b/frontend/app/components/ui/Icons/headset.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Headset(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/history.tsx b/frontend/app/components/ui/Icons/history.tsx
index 618a69719..835841f95 100644
--- a/frontend/app/components/ui/Icons/history.tsx
+++ b/frontend/app/components/ui/Icons/history.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function History(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/ic_errors.tsx b/frontend/app/components/ui/Icons/ic_errors.tsx
index ef022c4d2..ced63a193 100644
--- a/frontend/app/components/ui/Icons/ic_errors.tsx
+++ b/frontend/app/components/ui/Icons/ic_errors.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Ic_errors(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/ic_network.tsx b/frontend/app/components/ui/Icons/ic_network.tsx
index e8b7be4de..fec4201d9 100644
--- a/frontend/app/components/ui/Icons/ic_network.tsx
+++ b/frontend/app/components/ui/Icons/ic_network.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Ic_network(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/ic_rage.tsx b/frontend/app/components/ui/Icons/ic_rage.tsx
index ee7d1c985..e2fe2a7a7 100644
--- a/frontend/app/components/ui/Icons/ic_rage.tsx
+++ b/frontend/app/components/ui/Icons/ic_rage.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Ic_rage(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/ic_resources.tsx b/frontend/app/components/ui/Icons/ic_resources.tsx
index 2afb99336..e78e94163 100644
--- a/frontend/app/components/ui/Icons/ic_resources.tsx
+++ b/frontend/app/components/ui/Icons/ic_resources.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Ic_resources(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/icn_fetch_request.tsx b/frontend/app/components/ui/Icons/icn_fetch_request.tsx
index 6e4a19e82..f9afbbd7d 100644
--- a/frontend/app/components/ui/Icons/icn_fetch_request.tsx
+++ b/frontend/app/components/ui/Icons/icn_fetch_request.tsx
@@ -9,32 +9,9 @@ interface Props {
}
function Icn_fetch_request(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/icn_referrer.tsx b/frontend/app/components/ui/Icons/icn_referrer.tsx
index 10eae743c..0cc476310 100644
--- a/frontend/app/components/ui/Icons/icn_referrer.tsx
+++ b/frontend/app/components/ui/Icons/icn_referrer.tsx
@@ -9,33 +9,9 @@ interface Props {
}
function Icn_referrer(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/icn_url.tsx b/frontend/app/components/ui/Icons/icn_url.tsx
index 0d6b836d1..fff72f7df 100644
--- a/frontend/app/components/ui/Icons/icn_url.tsx
+++ b/frontend/app/components/ui/Icons/icn_url.tsx
@@ -9,33 +9,9 @@ interface Props {
}
function Icn_url(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/id_card.tsx b/frontend/app/components/ui/Icons/id_card.tsx
index 6a371cc23..ed3b32d0f 100644
--- a/frontend/app/components/ui/Icons/id_card.tsx
+++ b/frontend/app/components/ui/Icons/id_card.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Id_card(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/image.tsx b/frontend/app/components/ui/Icons/image.tsx
index 224edc34a..3b5ad8fc4 100644
--- a/frontend/app/components/ui/Icons/image.tsx
+++ b/frontend/app/components/ui/Icons/image.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Image(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/index.ts b/frontend/app/components/ui/Icons/index.ts
index e51c9c181..9dd08d7b6 100644
--- a/frontend/app/components/ui/Icons/index.ts
+++ b/frontend/app/components/ui/Icons/index.ts
@@ -1,3 +1,4 @@
+
/* Auto-generated, do not edit */
export { default as Activity } from './activity';
export { default as Analytics } from './analytics';
@@ -366,6 +367,7 @@ export { default as Magic } from './magic';
export { default as Map_marker_alt } from './map_marker_alt';
export { default as Memory_ios } from './memory_ios';
export { default as Memory } from './memory';
+export { default as Metadata_more } from './metadata_more';
export { default as Mic_mute } from './mic_mute';
export { default as Mic } from './mic';
export { default as Minus } from './minus';
diff --git a/frontend/app/components/ui/Icons/info.tsx b/frontend/app/components/ui/Icons/info.tsx
index f049ed351..c0de9be92 100644
--- a/frontend/app/components/ui/Icons/info.tsx
+++ b/frontend/app/components/ui/Icons/info.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Info(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/info_circle.tsx b/frontend/app/components/ui/Icons/info_circle.tsx
index f4ca1704b..ded6a0f0f 100644
--- a/frontend/app/components/ui/Icons/info_circle.tsx
+++ b/frontend/app/components/ui/Icons/info_circle.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Info_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/info_circle_fill.tsx b/frontend/app/components/ui/Icons/info_circle_fill.tsx
index 96755808d..4d1e719d2 100644
--- a/frontend/app/components/ui/Icons/info_circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/info_circle_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Info_circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/info_square.tsx b/frontend/app/components/ui/Icons/info_square.tsx
index a8f85ba65..d1d08b079 100644
--- a/frontend/app/components/ui/Icons/info_square.tsx
+++ b/frontend/app/components/ui/Icons/info_square.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Info_square(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/input_hesitation.tsx b/frontend/app/components/ui/Icons/input_hesitation.tsx
index ec9b86267..e23bea74e 100644
--- a/frontend/app/components/ui/Icons/input_hesitation.tsx
+++ b/frontend/app/components/ui/Icons/input_hesitation.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Input_hesitation(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/inspect.tsx b/frontend/app/components/ui/Icons/inspect.tsx
index 262a1583c..dfe1ba8c8 100644
--- a/frontend/app/components/ui/Icons/inspect.tsx
+++ b/frontend/app/components/ui/Icons/inspect.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Inspect(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_assist.tsx b/frontend/app/components/ui/Icons/integrations_assist.tsx
index 2cb0ce1f3..b876c162e 100644
--- a/frontend/app/components/ui/Icons/integrations_assist.tsx
+++ b/frontend/app/components/ui/Icons/integrations_assist.tsx
@@ -9,25 +9,9 @@ interface Props {
}
function Integrations_assist(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_bugsnag.tsx b/frontend/app/components/ui/Icons/integrations_bugsnag.tsx
index 4ef25a0de..3c74dfc15 100644
--- a/frontend/app/components/ui/Icons/integrations_bugsnag.tsx
+++ b/frontend/app/components/ui/Icons/integrations_bugsnag.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Integrations_bugsnag(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx b/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx
index 8c76eb28e..76ab79ad5 100644
--- a/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Integrations_bugsnag_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx b/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx
index a7b930b9a..fba94962e 100644
--- a/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx
+++ b/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx
@@ -9,34 +9,9 @@ interface Props {
}
function Integrations_cloudwatch(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx b/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx
index 135bdea99..2ce134574 100644
--- a/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx
@@ -9,38 +9,9 @@ interface Props {
}
function Integrations_cloudwatch_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_datadog.tsx b/frontend/app/components/ui/Icons/integrations_datadog.tsx
index 68dab7c47..4d2449ecc 100644
--- a/frontend/app/components/ui/Icons/integrations_datadog.tsx
+++ b/frontend/app/components/ui/Icons/integrations_datadog.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Integrations_datadog(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_dynatrace.tsx b/frontend/app/components/ui/Icons/integrations_dynatrace.tsx
index 38d44763f..8e8abf79c 100644
--- a/frontend/app/components/ui/Icons/integrations_dynatrace.tsx
+++ b/frontend/app/components/ui/Icons/integrations_dynatrace.tsx
@@ -9,46 +9,9 @@ interface Props {
}
function Integrations_dynatrace(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx b/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx
index 53a0df575..52d5abe2a 100644
--- a/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx
+++ b/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx
@@ -9,44 +9,9 @@ interface Props {
}
function Integrations_elasticsearch(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx b/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx
index 1743f9e28..88d17f78f 100644
--- a/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx
@@ -9,39 +9,9 @@ interface Props {
}
function Integrations_elasticsearch_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_github.tsx b/frontend/app/components/ui/Icons/integrations_github.tsx
index 86a829c0c..2c31985f1 100644
--- a/frontend/app/components/ui/Icons/integrations_github.tsx
+++ b/frontend/app/components/ui/Icons/integrations_github.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Integrations_github(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_graphql.tsx b/frontend/app/components/ui/Icons/integrations_graphql.tsx
index 416d7a3a6..074c9b9d1 100644
--- a/frontend/app/components/ui/Icons/integrations_graphql.tsx
+++ b/frontend/app/components/ui/Icons/integrations_graphql.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Integrations_graphql(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_jira.tsx b/frontend/app/components/ui/Icons/integrations_jira.tsx
index e3259c55b..2ab8e442e 100644
--- a/frontend/app/components/ui/Icons/integrations_jira.tsx
+++ b/frontend/app/components/ui/Icons/integrations_jira.tsx
@@ -9,51 +9,9 @@ interface Props {
}
function Integrations_jira(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_jira_text.tsx b/frontend/app/components/ui/Icons/integrations_jira_text.tsx
index 475e84510..63ed40b07 100644
--- a/frontend/app/components/ui/Icons/integrations_jira_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_jira_text.tsx
@@ -9,40 +9,9 @@ interface Props {
}
function Integrations_jira_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_mobx.tsx b/frontend/app/components/ui/Icons/integrations_mobx.tsx
index f7a25133e..453b41341 100644
--- a/frontend/app/components/ui/Icons/integrations_mobx.tsx
+++ b/frontend/app/components/ui/Icons/integrations_mobx.tsx
@@ -9,36 +9,9 @@ interface Props {
}
function Integrations_mobx(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_newrelic.tsx b/frontend/app/components/ui/Icons/integrations_newrelic.tsx
index 3f82e4768..af22fdc2c 100644
--- a/frontend/app/components/ui/Icons/integrations_newrelic.tsx
+++ b/frontend/app/components/ui/Icons/integrations_newrelic.tsx
@@ -9,36 +9,9 @@ interface Props {
}
function Integrations_newrelic(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx b/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx
index 2a06d4943..7c7329d2f 100644
--- a/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Integrations_newrelic_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_ngrx.tsx b/frontend/app/components/ui/Icons/integrations_ngrx.tsx
index cfdf071dd..56397b2e6 100644
--- a/frontend/app/components/ui/Icons/integrations_ngrx.tsx
+++ b/frontend/app/components/ui/Icons/integrations_ngrx.tsx
@@ -9,30 +9,9 @@ interface Props {
}
function Integrations_ngrx(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_openreplay.tsx b/frontend/app/components/ui/Icons/integrations_openreplay.tsx
index c2f0af47a..41537dcbb 100644
--- a/frontend/app/components/ui/Icons/integrations_openreplay.tsx
+++ b/frontend/app/components/ui/Icons/integrations_openreplay.tsx
@@ -9,25 +9,9 @@ interface Props {
}
function Integrations_openreplay(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx b/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx
index 64594f415..01e3b9711 100644
--- a/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx
@@ -9,29 +9,9 @@ interface Props {
}
function Integrations_openreplay_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_redux.tsx b/frontend/app/components/ui/Icons/integrations_redux.tsx
index c9f42ca4c..cd140a5a3 100644
--- a/frontend/app/components/ui/Icons/integrations_redux.tsx
+++ b/frontend/app/components/ui/Icons/integrations_redux.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Integrations_redux(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_rollbar.tsx b/frontend/app/components/ui/Icons/integrations_rollbar.tsx
index 9181df100..b17a9ab8e 100644
--- a/frontend/app/components/ui/Icons/integrations_rollbar.tsx
+++ b/frontend/app/components/ui/Icons/integrations_rollbar.tsx
@@ -9,28 +9,9 @@ interface Props {
}
function Integrations_rollbar(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx b/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx
index 1a9275a30..89b26d3e3 100644
--- a/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx
@@ -9,31 +9,9 @@ interface Props {
}
function Integrations_rollbar_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_segment.tsx b/frontend/app/components/ui/Icons/integrations_segment.tsx
index 5549eab10..be27a064a 100644
--- a/frontend/app/components/ui/Icons/integrations_segment.tsx
+++ b/frontend/app/components/ui/Icons/integrations_segment.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function Integrations_segment(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_sentry.tsx b/frontend/app/components/ui/Icons/integrations_sentry.tsx
index 10ae3827c..626a9f225 100644
--- a/frontend/app/components/ui/Icons/integrations_sentry.tsx
+++ b/frontend/app/components/ui/Icons/integrations_sentry.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Integrations_sentry(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_sentry_text.tsx b/frontend/app/components/ui/Icons/integrations_sentry_text.tsx
index af1ed391b..d1017a6cb 100644
--- a/frontend/app/components/ui/Icons/integrations_sentry_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_sentry_text.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Integrations_sentry_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_slack.tsx b/frontend/app/components/ui/Icons/integrations_slack.tsx
index 31b4c7cad..fd20c1bfe 100644
--- a/frontend/app/components/ui/Icons/integrations_slack.tsx
+++ b/frontend/app/components/ui/Icons/integrations_slack.tsx
@@ -9,33 +9,9 @@ interface Props {
}
function Integrations_slack(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_slack_bw.tsx b/frontend/app/components/ui/Icons/integrations_slack_bw.tsx
index f2cf20184..b829fb1bd 100644
--- a/frontend/app/components/ui/Icons/integrations_slack_bw.tsx
+++ b/frontend/app/components/ui/Icons/integrations_slack_bw.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Integrations_slack_bw(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_stackdriver.tsx b/frontend/app/components/ui/Icons/integrations_stackdriver.tsx
index 1cdad6661..1c541c9dc 100644
--- a/frontend/app/components/ui/Icons/integrations_stackdriver.tsx
+++ b/frontend/app/components/ui/Icons/integrations_stackdriver.tsx
@@ -9,34 +9,9 @@ interface Props {
}
function Integrations_stackdriver(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_sumologic.tsx b/frontend/app/components/ui/Icons/integrations_sumologic.tsx
index ffd161f83..3dffe076e 100644
--- a/frontend/app/components/ui/Icons/integrations_sumologic.tsx
+++ b/frontend/app/components/ui/Icons/integrations_sumologic.tsx
@@ -9,17 +9,9 @@ interface Props {
}
function Integrations_sumologic(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx b/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx
index ad0ffda8c..cb30d1649 100644
--- a/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx
+++ b/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Integrations_sumologic_text(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_teams.tsx b/frontend/app/components/ui/Icons/integrations_teams.tsx
index 86b364d79..30c3781f6 100644
--- a/frontend/app/components/ui/Icons/integrations_teams.tsx
+++ b/frontend/app/components/ui/Icons/integrations_teams.tsx
@@ -9,78 +9,9 @@ interface Props {
}
function Integrations_teams(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_teams_white.tsx b/frontend/app/components/ui/Icons/integrations_teams_white.tsx
index 7e69e7b58..deb1724f2 100644
--- a/frontend/app/components/ui/Icons/integrations_teams_white.tsx
+++ b/frontend/app/components/ui/Icons/integrations_teams_white.tsx
@@ -9,17 +9,9 @@ interface Props {
}
function Integrations_teams_white(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_vuejs.tsx b/frontend/app/components/ui/Icons/integrations_vuejs.tsx
index 99e4e4c6d..4dd130bc3 100644
--- a/frontend/app/components/ui/Icons/integrations_vuejs.tsx
+++ b/frontend/app/components/ui/Icons/integrations_vuejs.tsx
@@ -9,28 +9,9 @@ interface Props {
}
function Integrations_vuejs(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/integrations_zustand.tsx b/frontend/app/components/ui/Icons/integrations_zustand.tsx
index c77e2e923..337593261 100644
--- a/frontend/app/components/ui/Icons/integrations_zustand.tsx
+++ b/frontend/app/components/ui/Icons/integrations_zustand.tsx
@@ -9,80 +9,9 @@ interface Props {
}
function Integrations_zustand(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/journal_code.tsx b/frontend/app/components/ui/Icons/journal_code.tsx
index 4b35c2c48..1f137dd7e 100644
--- a/frontend/app/components/ui/Icons/journal_code.tsx
+++ b/frontend/app/components/ui/Icons/journal_code.tsx
@@ -9,13 +9,9 @@ interface Props {
}
function Journal_code(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/key.tsx b/frontend/app/components/ui/Icons/key.tsx
index 208428984..0fc5b8505 100644
--- a/frontend/app/components/ui/Icons/key.tsx
+++ b/frontend/app/components/ui/Icons/key.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Key(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/keyboard.tsx b/frontend/app/components/ui/Icons/keyboard.tsx
index cb0467ea6..f2432f6f1 100644
--- a/frontend/app/components/ui/Icons/keyboard.tsx
+++ b/frontend/app/components/ui/Icons/keyboard.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Keyboard(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/layers_half.tsx b/frontend/app/components/ui/Icons/layers_half.tsx
index 3e47dafbb..c354702ca 100644
--- a/frontend/app/components/ui/Icons/layers_half.tsx
+++ b/frontend/app/components/ui/Icons/layers_half.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Layers_half(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/lightbulb.tsx b/frontend/app/components/ui/Icons/lightbulb.tsx
index 7d7f3a9fa..571a09c5d 100644
--- a/frontend/app/components/ui/Icons/lightbulb.tsx
+++ b/frontend/app/components/ui/Icons/lightbulb.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Lightbulb(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/lightbulb_on.tsx b/frontend/app/components/ui/Icons/lightbulb_on.tsx
index cd86fc67d..4dc28a971 100644
--- a/frontend/app/components/ui/Icons/lightbulb_on.tsx
+++ b/frontend/app/components/ui/Icons/lightbulb_on.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Lightbulb_on(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/link_45deg.tsx b/frontend/app/components/ui/Icons/link_45deg.tsx
index e9cb5e122..feb300d27 100644
--- a/frontend/app/components/ui/Icons/link_45deg.tsx
+++ b/frontend/app/components/ui/Icons/link_45deg.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Link_45deg(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/list.tsx b/frontend/app/components/ui/Icons/list.tsx
index 9876018ba..c97195b19 100644
--- a/frontend/app/components/ui/Icons/list.tsx
+++ b/frontend/app/components/ui/Icons/list.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function List(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/list_alt.tsx b/frontend/app/components/ui/Icons/list_alt.tsx
index dc3e8ac53..cfb62dade 100644
--- a/frontend/app/components/ui/Icons/list_alt.tsx
+++ b/frontend/app/components/ui/Icons/list_alt.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function List_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/list_ul.tsx b/frontend/app/components/ui/Icons/list_ul.tsx
index b0a2a678d..32c4c5b00 100644
--- a/frontend/app/components/ui/Icons/list_ul.tsx
+++ b/frontend/app/components/ui/Icons/list_ul.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function List_ul(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/low_disc_space.tsx b/frontend/app/components/ui/Icons/low_disc_space.tsx
index c580bd082..d5aa60aca 100644
--- a/frontend/app/components/ui/Icons/low_disc_space.tsx
+++ b/frontend/app/components/ui/Icons/low_disc_space.tsx
@@ -9,18 +9,9 @@ interface Props {
}
function Low_disc_space(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/magic.tsx b/frontend/app/components/ui/Icons/magic.tsx
index 170195d04..81bb1855b 100644
--- a/frontend/app/components/ui/Icons/magic.tsx
+++ b/frontend/app/components/ui/Icons/magic.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Magic(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/map_marker_alt.tsx b/frontend/app/components/ui/Icons/map_marker_alt.tsx
index d665d60b7..a308e0991 100644
--- a/frontend/app/components/ui/Icons/map_marker_alt.tsx
+++ b/frontend/app/components/ui/Icons/map_marker_alt.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Map_marker_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/memory.tsx b/frontend/app/components/ui/Icons/memory.tsx
index b9a0a7f24..d605c8a88 100644
--- a/frontend/app/components/ui/Icons/memory.tsx
+++ b/frontend/app/components/ui/Icons/memory.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Memory(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/memory_ios.tsx b/frontend/app/components/ui/Icons/memory_ios.tsx
index 6e99cad6e..f5f799c2c 100644
--- a/frontend/app/components/ui/Icons/memory_ios.tsx
+++ b/frontend/app/components/ui/Icons/memory_ios.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Memory_ios(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/metadata_more.tsx b/frontend/app/components/ui/Icons/metadata_more.tsx
new file mode 100644
index 000000000..69c23530d
--- /dev/null
+++ b/frontend/app/components/ui/Icons/metadata_more.tsx
@@ -0,0 +1,18 @@
+/* Auto-generated, do not edit */
+import React from 'react';
+
+interface Props {
+ size?: number | string;
+ width?: number | string;
+ height?: number | string;
+ fill?: string;
+}
+
+function Metadata_more(props: Props) {
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
+ );
+}
+
+export default Metadata_more;
diff --git a/frontend/app/components/ui/Icons/mic.tsx b/frontend/app/components/ui/Icons/mic.tsx
index 5e87276f5..b8e7fe81d 100644
--- a/frontend/app/components/ui/Icons/mic.tsx
+++ b/frontend/app/components/ui/Icons/mic.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Mic(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/mic_mute.tsx b/frontend/app/components/ui/Icons/mic_mute.tsx
index 0554c251d..e42945971 100644
--- a/frontend/app/components/ui/Icons/mic_mute.tsx
+++ b/frontend/app/components/ui/Icons/mic_mute.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Mic_mute(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/minus.tsx b/frontend/app/components/ui/Icons/minus.tsx
index c1b4f26a3..0d8f413e4 100644
--- a/frontend/app/components/ui/Icons/minus.tsx
+++ b/frontend/app/components/ui/Icons/minus.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Minus(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/mobile.tsx b/frontend/app/components/ui/Icons/mobile.tsx
index 317216b60..e892ecf15 100644
--- a/frontend/app/components/ui/Icons/mobile.tsx
+++ b/frontend/app/components/ui/Icons/mobile.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Mobile(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/mouse_alt.tsx b/frontend/app/components/ui/Icons/mouse_alt.tsx
index e4dae9f72..2a28057a9 100644
--- a/frontend/app/components/ui/Icons/mouse_alt.tsx
+++ b/frontend/app/components/ui/Icons/mouse_alt.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Mouse_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/mouse_pointer_click.tsx b/frontend/app/components/ui/Icons/mouse_pointer_click.tsx
index 30bf851ba..67fce92d2 100644
--- a/frontend/app/components/ui/Icons/mouse_pointer_click.tsx
+++ b/frontend/app/components/ui/Icons/mouse_pointer_click.tsx
@@ -9,28 +9,9 @@ interface Props {
}
function Mouse_pointer_click(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/network.tsx b/frontend/app/components/ui/Icons/network.tsx
index ca9fed1da..ece225da5 100644
--- a/frontend/app/components/ui/Icons/network.tsx
+++ b/frontend/app/components/ui/Icons/network.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Network(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/next1.tsx b/frontend/app/components/ui/Icons/next1.tsx
index 6d6314415..91b8e265a 100644
--- a/frontend/app/components/ui/Icons/next1.tsx
+++ b/frontend/app/components/ui/Icons/next1.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Next1(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/no_dashboard.tsx b/frontend/app/components/ui/Icons/no_dashboard.tsx
index e74da403a..ef2a5b814 100644
--- a/frontend/app/components/ui/Icons/no_dashboard.tsx
+++ b/frontend/app/components/ui/Icons/no_dashboard.tsx
@@ -9,24 +9,9 @@ interface Props {
}
function No_dashboard(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/no_metrics.tsx b/frontend/app/components/ui/Icons/no_metrics.tsx
index 9e4052de5..d508cc792 100644
--- a/frontend/app/components/ui/Icons/no_metrics.tsx
+++ b/frontend/app/components/ui/Icons/no_metrics.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function No_metrics(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/no_metrics_chart.tsx b/frontend/app/components/ui/Icons/no_metrics_chart.tsx
index 67528ee72..1561bcf05 100644
--- a/frontend/app/components/ui/Icons/no_metrics_chart.tsx
+++ b/frontend/app/components/ui/Icons/no_metrics_chart.tsx
@@ -9,31 +9,9 @@ interface Props {
}
function No_metrics_chart(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/no_recordings.tsx b/frontend/app/components/ui/Icons/no_recordings.tsx
index 9b266f9ea..d18fab012 100644
--- a/frontend/app/components/ui/Icons/no_recordings.tsx
+++ b/frontend/app/components/ui/Icons/no_recordings.tsx
@@ -9,68 +9,9 @@ interface Props {
}
function No_recordings(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/orIcn.tsx b/frontend/app/components/ui/Icons/orIcn.tsx
index d014d8f13..d1b90d9b4 100644
--- a/frontend/app/components/ui/Icons/orIcn.tsx
+++ b/frontend/app/components/ui/Icons/orIcn.tsx
@@ -9,31 +9,9 @@ interface Props {
}
function Oricn(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/orSpot.tsx b/frontend/app/components/ui/Icons/orSpot.tsx
index 32aba3698..43c936858 100644
--- a/frontend/app/components/ui/Icons/orSpot.tsx
+++ b/frontend/app/components/ui/Icons/orSpot.tsx
@@ -9,31 +9,9 @@ interface Props {
}
function Orspot(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/orspotOutline.tsx b/frontend/app/components/ui/Icons/orspotOutline.tsx
index ccd10fe72..45c9a3063 100644
--- a/frontend/app/components/ui/Icons/orspotOutline.tsx
+++ b/frontend/app/components/ui/Icons/orspotOutline.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Orspotoutline(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os.tsx b/frontend/app/components/ui/Icons/os.tsx
index 7c27515f7..811ecff76 100644
--- a/frontend/app/components/ui/Icons/os.tsx
+++ b/frontend/app/components/ui/Icons/os.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_android.tsx b/frontend/app/components/ui/Icons/os_android.tsx
index da22a5d38..c834384c2 100644
--- a/frontend/app/components/ui/Icons/os_android.tsx
+++ b/frontend/app/components/ui/Icons/os_android.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_android(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_chrome_os.tsx b/frontend/app/components/ui/Icons/os_chrome_os.tsx
index ce9a90fdc..52340e37b 100644
--- a/frontend/app/components/ui/Icons/os_chrome_os.tsx
+++ b/frontend/app/components/ui/Icons/os_chrome_os.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_chrome_os(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_fedora.tsx b/frontend/app/components/ui/Icons/os_fedora.tsx
index 3fbd07cce..9a928254e 100644
--- a/frontend/app/components/ui/Icons/os_fedora.tsx
+++ b/frontend/app/components/ui/Icons/os_fedora.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_fedora(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_ios.tsx b/frontend/app/components/ui/Icons/os_ios.tsx
index 6c33ef158..b21c32bb5 100644
--- a/frontend/app/components/ui/Icons/os_ios.tsx
+++ b/frontend/app/components/ui/Icons/os_ios.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_ios(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_linux.tsx b/frontend/app/components/ui/Icons/os_linux.tsx
index 0797799be..c02c89370 100644
--- a/frontend/app/components/ui/Icons/os_linux.tsx
+++ b/frontend/app/components/ui/Icons/os_linux.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_linux(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_mac_os_x.tsx b/frontend/app/components/ui/Icons/os_mac_os_x.tsx
index d835d1c5a..6a72bc543 100644
--- a/frontend/app/components/ui/Icons/os_mac_os_x.tsx
+++ b/frontend/app/components/ui/Icons/os_mac_os_x.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_mac_os_x(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_other.tsx b/frontend/app/components/ui/Icons/os_other.tsx
index df98b9781..65146e7cd 100644
--- a/frontend/app/components/ui/Icons/os_other.tsx
+++ b/frontend/app/components/ui/Icons/os_other.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_other(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_ubuntu.tsx b/frontend/app/components/ui/Icons/os_ubuntu.tsx
index bf811ba43..05659dc9a 100644
--- a/frontend/app/components/ui/Icons/os_ubuntu.tsx
+++ b/frontend/app/components/ui/Icons/os_ubuntu.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_ubuntu(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/os_windows.tsx b/frontend/app/components/ui/Icons/os_windows.tsx
index 29921b6bc..830588e88 100644
--- a/frontend/app/components/ui/Icons/os_windows.tsx
+++ b/frontend/app/components/ui/Icons/os_windows.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Os_windows(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pause.tsx b/frontend/app/components/ui/Icons/pause.tsx
index 128610ac2..809cd718f 100644
--- a/frontend/app/components/ui/Icons/pause.tsx
+++ b/frontend/app/components/ui/Icons/pause.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Pause(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pause_circle_fill.tsx b/frontend/app/components/ui/Icons/pause_circle_fill.tsx
index 479bf2a25..5acdf0971 100644
--- a/frontend/app/components/ui/Icons/pause_circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/pause_circle_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Pause_circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pause_fill.tsx b/frontend/app/components/ui/Icons/pause_fill.tsx
index 8658b1d8c..585ce7d9f 100644
--- a/frontend/app/components/ui/Icons/pause_fill.tsx
+++ b/frontend/app/components/ui/Icons/pause_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Pause_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pdf_download.tsx b/frontend/app/components/ui/Icons/pdf_download.tsx
index b2333c48e..489a57386 100644
--- a/frontend/app/components/ui/Icons/pdf_download.tsx
+++ b/frontend/app/components/ui/Icons/pdf_download.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Pdf_download(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pencil.tsx b/frontend/app/components/ui/Icons/pencil.tsx
index ff861d06c..e1c633335 100644
--- a/frontend/app/components/ui/Icons/pencil.tsx
+++ b/frontend/app/components/ui/Icons/pencil.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Pencil(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pencil_stop.tsx b/frontend/app/components/ui/Icons/pencil_stop.tsx
index 14d05aaf7..5d9a4349b 100644
--- a/frontend/app/components/ui/Icons/pencil_stop.tsx
+++ b/frontend/app/components/ui/Icons/pencil_stop.tsx
@@ -9,22 +9,9 @@ interface Props {
}
function Pencil_stop(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/people.tsx b/frontend/app/components/ui/Icons/people.tsx
index eff67333d..3750d404c 100644
--- a/frontend/app/components/ui/Icons/people.tsx
+++ b/frontend/app/components/ui/Icons/people.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function People(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/percent.tsx b/frontend/app/components/ui/Icons/percent.tsx
index 3545f0044..7a094180a 100644
--- a/frontend/app/components/ui/Icons/percent.tsx
+++ b/frontend/app/components/ui/Icons/percent.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Percent(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/performance_icon.tsx b/frontend/app/components/ui/Icons/performance_icon.tsx
index 26dfc1744..f7df870df 100644
--- a/frontend/app/components/ui/Icons/performance_icon.tsx
+++ b/frontend/app/components/ui/Icons/performance_icon.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Performance_icon(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/person.tsx b/frontend/app/components/ui/Icons/person.tsx
index 5e2122cae..0fb668fe4 100644
--- a/frontend/app/components/ui/Icons/person.tsx
+++ b/frontend/app/components/ui/Icons/person.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Person(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/person_border.tsx b/frontend/app/components/ui/Icons/person_border.tsx
index e68e3e110..9f72eeb7a 100644
--- a/frontend/app/components/ui/Icons/person_border.tsx
+++ b/frontend/app/components/ui/Icons/person_border.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Person_border(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/person_fill.tsx b/frontend/app/components/ui/Icons/person_fill.tsx
index 308176c5a..0efea1ad1 100644
--- a/frontend/app/components/ui/Icons/person_fill.tsx
+++ b/frontend/app/components/ui/Icons/person_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Person_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pie_chart_fill.tsx b/frontend/app/components/ui/Icons/pie_chart_fill.tsx
index f156075d2..0efe779b6 100644
--- a/frontend/app/components/ui/Icons/pie_chart_fill.tsx
+++ b/frontend/app/components/ui/Icons/pie_chart_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Pie_chart_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pin_fill.tsx b/frontend/app/components/ui/Icons/pin_fill.tsx
index f1771fb43..3b5a4797a 100644
--- a/frontend/app/components/ui/Icons/pin_fill.tsx
+++ b/frontend/app/components/ui/Icons/pin_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Pin_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play.tsx b/frontend/app/components/ui/Icons/play.tsx
index 96d6ee3cb..90b912eca 100644
--- a/frontend/app/components/ui/Icons/play.tsx
+++ b/frontend/app/components/ui/Icons/play.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Play(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play_circle.tsx b/frontend/app/components/ui/Icons/play_circle.tsx
index e7d74dfb8..bebfef26e 100644
--- a/frontend/app/components/ui/Icons/play_circle.tsx
+++ b/frontend/app/components/ui/Icons/play_circle.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Play_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play_circle_bold.tsx b/frontend/app/components/ui/Icons/play_circle_bold.tsx
index 344bcab5b..d5901b5cc 100644
--- a/frontend/app/components/ui/Icons/play_circle_bold.tsx
+++ b/frontend/app/components/ui/Icons/play_circle_bold.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Play_circle_bold(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play_circle_light.tsx b/frontend/app/components/ui/Icons/play_circle_light.tsx
index 27136019a..d4d5efd24 100644
--- a/frontend/app/components/ui/Icons/play_circle_light.tsx
+++ b/frontend/app/components/ui/Icons/play_circle_light.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Play_circle_light(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play_fill.tsx b/frontend/app/components/ui/Icons/play_fill.tsx
index 9f4e5de8e..be7a2f60b 100644
--- a/frontend/app/components/ui/Icons/play_fill.tsx
+++ b/frontend/app/components/ui/Icons/play_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Play_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play_fill_new.tsx b/frontend/app/components/ui/Icons/play_fill_new.tsx
index c136dcdc3..3e4dbcf06 100644
--- a/frontend/app/components/ui/Icons/play_fill_new.tsx
+++ b/frontend/app/components/ui/Icons/play_fill_new.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Play_fill_new(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/play_hover.tsx b/frontend/app/components/ui/Icons/play_hover.tsx
index c0610fd86..95b616ae0 100644
--- a/frontend/app/components/ui/Icons/play_hover.tsx
+++ b/frontend/app/components/ui/Icons/play_hover.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Play_hover(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/plug.tsx b/frontend/app/components/ui/Icons/plug.tsx
index 16e845d13..6f15b822a 100644
--- a/frontend/app/components/ui/Icons/plug.tsx
+++ b/frontend/app/components/ui/Icons/plug.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Plug(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/plus.tsx b/frontend/app/components/ui/Icons/plus.tsx
index 407d0bffe..7bc4c907d 100644
--- a/frontend/app/components/ui/Icons/plus.tsx
+++ b/frontend/app/components/ui/Icons/plus.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Plus(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/plus_circle.tsx b/frontend/app/components/ui/Icons/plus_circle.tsx
index 8aeea49e6..36c4507f9 100644
--- a/frontend/app/components/ui/Icons/plus_circle.tsx
+++ b/frontend/app/components/ui/Icons/plus_circle.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Plus_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/prev1.tsx b/frontend/app/components/ui/Icons/prev1.tsx
index 07c91b06c..b8135b793 100644
--- a/frontend/app/components/ui/Icons/prev1.tsx
+++ b/frontend/app/components/ui/Icons/prev1.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Prev1(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pulse.tsx b/frontend/app/components/ui/Icons/pulse.tsx
index ccb776215..9e83cec6b 100644
--- a/frontend/app/components/ui/Icons/pulse.tsx
+++ b/frontend/app/components/ui/Icons/pulse.tsx
@@ -9,15 +9,9 @@ interface Props {
}
function Pulse(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/puppeteer.tsx b/frontend/app/components/ui/Icons/puppeteer.tsx
index 89f9463e9..d094e9365 100644
--- a/frontend/app/components/ui/Icons/puppeteer.tsx
+++ b/frontend/app/components/ui/Icons/puppeteer.tsx
@@ -1,12 +1,11 @@
-
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
- size?: number | string;
- width?: number | string;
- height?: number | string;
- fill?: string;
+ size?: number | string;
+ width?: number | string;
+ height?: number | string;
+ fill?: string;
}
function Puppeteer(props: Props) {
diff --git a/frontend/app/components/ui/Icons/puzzle.tsx b/frontend/app/components/ui/Icons/puzzle.tsx
index c7b80ba51..b62dd1e6b 100644
--- a/frontend/app/components/ui/Icons/puzzle.tsx
+++ b/frontend/app/components/ui/Icons/puzzle.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Puzzle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/puzzle_piece.tsx b/frontend/app/components/ui/Icons/puzzle_piece.tsx
index f9afb5da2..9e1e717e7 100644
--- a/frontend/app/components/ui/Icons/puzzle_piece.tsx
+++ b/frontend/app/components/ui/Icons/puzzle_piece.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Puzzle_piece(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/pwright.tsx b/frontend/app/components/ui/Icons/pwright.tsx
index 8a05aac0a..7075ee22c 100644
--- a/frontend/app/components/ui/Icons/pwright.tsx
+++ b/frontend/app/components/ui/Icons/pwright.tsx
@@ -1,12 +1,11 @@
-
/* Auto-generated, do not edit */
import React from 'react';
interface Props {
- size?: number | string;
- width?: number | string;
- height?: number | string;
- fill?: string;
+ size?: number | string;
+ width?: number | string;
+ height?: number | string;
+ fill?: string;
}
function Pwright(props: Props) {
diff --git a/frontend/app/components/ui/Icons/question_circle.tsx b/frontend/app/components/ui/Icons/question_circle.tsx
index d6cd4c503..1a433b773 100644
--- a/frontend/app/components/ui/Icons/question_circle.tsx
+++ b/frontend/app/components/ui/Icons/question_circle.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Question_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/question_lg.tsx b/frontend/app/components/ui/Icons/question_lg.tsx
index f72be8e84..9e237189b 100644
--- a/frontend/app/components/ui/Icons/question_lg.tsx
+++ b/frontend/app/components/ui/Icons/question_lg.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Question_lg(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/quotes.tsx b/frontend/app/components/ui/Icons/quotes.tsx
index 1e87ed321..a7f27ad31 100644
--- a/frontend/app/components/ui/Icons/quotes.tsx
+++ b/frontend/app/components/ui/Icons/quotes.tsx
@@ -9,14 +9,9 @@ interface Props {
}
function Quotes(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/record2.tsx b/frontend/app/components/ui/Icons/record2.tsx
index 49214e25d..1289f5eb4 100644
--- a/frontend/app/components/ui/Icons/record2.tsx
+++ b/frontend/app/components/ui/Icons/record2.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Record2(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/record_circle.tsx b/frontend/app/components/ui/Icons/record_circle.tsx
index 247ef2810..1681d065c 100644
--- a/frontend/app/components/ui/Icons/record_circle.tsx
+++ b/frontend/app/components/ui/Icons/record_circle.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Record_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/record_circle_fill.tsx b/frontend/app/components/ui/Icons/record_circle_fill.tsx
index c651c885c..1415bac3f 100644
--- a/frontend/app/components/ui/Icons/record_circle_fill.tsx
+++ b/frontend/app/components/ui/Icons/record_circle_fill.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Record_circle_fill(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/redo.tsx b/frontend/app/components/ui/Icons/redo.tsx
index 804740454..c7b169f91 100644
--- a/frontend/app/components/ui/Icons/redo.tsx
+++ b/frontend/app/components/ui/Icons/redo.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Redo(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/redux.tsx b/frontend/app/components/ui/Icons/redux.tsx
index 7fcd5f1c4..41bcd5f80 100644
--- a/frontend/app/components/ui/Icons/redux.tsx
+++ b/frontend/app/components/ui/Icons/redux.tsx
@@ -9,14 +9,9 @@ interface Props {
}
function Redux(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/referrer.tsx b/frontend/app/components/ui/Icons/referrer.tsx
index cc5e679d9..ec7eec9da 100644
--- a/frontend/app/components/ui/Icons/referrer.tsx
+++ b/frontend/app/components/ui/Icons/referrer.tsx
@@ -9,36 +9,9 @@ interface Props {
}
function Referrer(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/remote_control.tsx b/frontend/app/components/ui/Icons/remote_control.tsx
index fb73b565d..d15da8e7a 100644
--- a/frontend/app/components/ui/Icons/remote_control.tsx
+++ b/frontend/app/components/ui/Icons/remote_control.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Remote_control(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/resources_icon.tsx b/frontend/app/components/ui/Icons/resources_icon.tsx
index 705d82ba4..d1aa02864 100644
--- a/frontend/app/components/ui/Icons/resources_icon.tsx
+++ b/frontend/app/components/ui/Icons/resources_icon.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Resources_icon(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/safe.tsx b/frontend/app/components/ui/Icons/safe.tsx
index a8145be67..cedd60669 100644
--- a/frontend/app/components/ui/Icons/safe.tsx
+++ b/frontend/app/components/ui/Icons/safe.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Safe(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/sandglass.tsx b/frontend/app/components/ui/Icons/sandglass.tsx
index 0a1eec277..6912d8e25 100644
--- a/frontend/app/components/ui/Icons/sandglass.tsx
+++ b/frontend/app/components/ui/Icons/sandglass.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Sandglass(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/search.tsx b/frontend/app/components/ui/Icons/search.tsx
index 106c037db..4b1d373ed 100644
--- a/frontend/app/components/ui/Icons/search.tsx
+++ b/frontend/app/components/ui/Icons/search.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Search(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/server.tsx b/frontend/app/components/ui/Icons/server.tsx
index b9445293d..fd2a4b1ad 100644
--- a/frontend/app/components/ui/Icons/server.tsx
+++ b/frontend/app/components/ui/Icons/server.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Server(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/share_alt.tsx b/frontend/app/components/ui/Icons/share_alt.tsx
index 75a122887..dd6feba55 100644
--- a/frontend/app/components/ui/Icons/share_alt.tsx
+++ b/frontend/app/components/ui/Icons/share_alt.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Share_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/shield_lock.tsx b/frontend/app/components/ui/Icons/shield_lock.tsx
index fccc44b71..0710a27cd 100644
--- a/frontend/app/components/ui/Icons/shield_lock.tsx
+++ b/frontend/app/components/ui/Icons/shield_lock.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Shield_lock(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/side_menu_closed.tsx b/frontend/app/components/ui/Icons/side_menu_closed.tsx
index 9a90a7fd3..888864f6c 100644
--- a/frontend/app/components/ui/Icons/side_menu_closed.tsx
+++ b/frontend/app/components/ui/Icons/side_menu_closed.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Side_menu_closed(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/side_menu_open.tsx b/frontend/app/components/ui/Icons/side_menu_open.tsx
index cccca91bf..c1aef0ae9 100644
--- a/frontend/app/components/ui/Icons/side_menu_open.tsx
+++ b/frontend/app/components/ui/Icons/side_menu_open.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Side_menu_open(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/signpost_split.tsx b/frontend/app/components/ui/Icons/signpost_split.tsx
index 066c53ea7..6a3a8ffb8 100644
--- a/frontend/app/components/ui/Icons/signpost_split.tsx
+++ b/frontend/app/components/ui/Icons/signpost_split.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Signpost_split(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/signup.tsx b/frontend/app/components/ui/Icons/signup.tsx
index 7550680bd..beeb66be7 100644
--- a/frontend/app/components/ui/Icons/signup.tsx
+++ b/frontend/app/components/ui/Icons/signup.tsx
@@ -9,14 +9,9 @@ interface Props {
}
function Signup(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/slack.tsx b/frontend/app/components/ui/Icons/slack.tsx
index f2993050b..103970a3e 100644
--- a/frontend/app/components/ui/Icons/slack.tsx
+++ b/frontend/app/components/ui/Icons/slack.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Slack(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/slash_circle.tsx b/frontend/app/components/ui/Icons/slash_circle.tsx
index 087f9f9c4..bfb6544e8 100644
--- a/frontend/app/components/ui/Icons/slash_circle.tsx
+++ b/frontend/app/components/ui/Icons/slash_circle.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Slash_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/sleep.tsx b/frontend/app/components/ui/Icons/sleep.tsx
index 5cd65b3e8..9f9f71309 100644
--- a/frontend/app/components/ui/Icons/sleep.tsx
+++ b/frontend/app/components/ui/Icons/sleep.tsx
@@ -9,19 +9,9 @@ interface Props {
}
function Sleep(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/sliders.tsx b/frontend/app/components/ui/Icons/sliders.tsx
index 9b6b72ec2..b8c6c5563 100644
--- a/frontend/app/components/ui/Icons/sliders.tsx
+++ b/frontend/app/components/ui/Icons/sliders.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Sliders(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/social_slack.tsx b/frontend/app/components/ui/Icons/social_slack.tsx
index 7a33d7759..a240ddbdc 100644
--- a/frontend/app/components/ui/Icons/social_slack.tsx
+++ b/frontend/app/components/ui/Icons/social_slack.tsx
@@ -9,17 +9,9 @@ interface Props {
}
function Social_slack(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/social_trello.tsx b/frontend/app/components/ui/Icons/social_trello.tsx
index 0477b7ae9..bd78ff29d 100644
--- a/frontend/app/components/ui/Icons/social_trello.tsx
+++ b/frontend/app/components/ui/Icons/social_trello.tsx
@@ -9,16 +9,9 @@ interface Props {
}
function Social_trello(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/sparkles.tsx b/frontend/app/components/ui/Icons/sparkles.tsx
index 75195410d..a085cfad8 100644
--- a/frontend/app/components/ui/Icons/sparkles.tsx
+++ b/frontend/app/components/ui/Icons/sparkles.tsx
@@ -9,23 +9,9 @@ interface Props {
}
function Sparkles(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/speedometer2.tsx b/frontend/app/components/ui/Icons/speedometer2.tsx
index f77b527e5..80a28e891 100644
--- a/frontend/app/components/ui/Icons/speedometer2.tsx
+++ b/frontend/app/components/ui/Icons/speedometer2.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Speedometer2(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/spinner.tsx b/frontend/app/components/ui/Icons/spinner.tsx
index b68a063bb..cf5d8576c 100644
--- a/frontend/app/components/ui/Icons/spinner.tsx
+++ b/frontend/app/components/ui/Icons/spinner.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Spinner(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/square_mouse_pointer.tsx b/frontend/app/components/ui/Icons/square_mouse_pointer.tsx
index 8eba55a03..ac17bfeca 100644
--- a/frontend/app/components/ui/Icons/square_mouse_pointer.tsx
+++ b/frontend/app/components/ui/Icons/square_mouse_pointer.tsx
@@ -9,21 +9,9 @@ interface Props {
}
function Square_mouse_pointer(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/star.tsx b/frontend/app/components/ui/Icons/star.tsx
index bbeec4a1c..eaefeb226 100644
--- a/frontend/app/components/ui/Icons/star.tsx
+++ b/frontend/app/components/ui/Icons/star.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Star(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/step_forward.tsx b/frontend/app/components/ui/Icons/step_forward.tsx
index 411adec08..ace1f2822 100644
--- a/frontend/app/components/ui/Icons/step_forward.tsx
+++ b/frontend/app/components/ui/Icons/step_forward.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Step_forward(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/stickies.tsx b/frontend/app/components/ui/Icons/stickies.tsx
index c32a90e98..d1b036763 100644
--- a/frontend/app/components/ui/Icons/stickies.tsx
+++ b/frontend/app/components/ui/Icons/stickies.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Stickies(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/stop_record_circle.tsx b/frontend/app/components/ui/Icons/stop_record_circle.tsx
index 392950b18..f79937e10 100644
--- a/frontend/app/components/ui/Icons/stop_record_circle.tsx
+++ b/frontend/app/components/ui/Icons/stop_record_circle.tsx
@@ -9,15 +9,9 @@ interface Props {
}
function Stop_record_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/stopwatch.tsx b/frontend/app/components/ui/Icons/stopwatch.tsx
index 9fcb347eb..66d1a307c 100644
--- a/frontend/app/components/ui/Icons/stopwatch.tsx
+++ b/frontend/app/components/ui/Icons/stopwatch.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Stopwatch(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/store.tsx b/frontend/app/components/ui/Icons/store.tsx
index 51988491d..7e5086dc4 100644
--- a/frontend/app/components/ui/Icons/store.tsx
+++ b/frontend/app/components/ui/Icons/store.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Store(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/sync_alt.tsx b/frontend/app/components/ui/Icons/sync_alt.tsx
index b030ad69e..14b7b8ea7 100644
--- a/frontend/app/components/ui/Icons/sync_alt.tsx
+++ b/frontend/app/components/ui/Icons/sync_alt.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Sync_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/table.tsx b/frontend/app/components/ui/Icons/table.tsx
index 086d64999..69ecee9d8 100644
--- a/frontend/app/components/ui/Icons/table.tsx
+++ b/frontend/app/components/ui/Icons/table.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Table(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/tags.tsx b/frontend/app/components/ui/Icons/tags.tsx
index 50bf5a504..143994f8e 100644
--- a/frontend/app/components/ui/Icons/tags.tsx
+++ b/frontend/app/components/ui/Icons/tags.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Tags(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/terminal.tsx b/frontend/app/components/ui/Icons/terminal.tsx
index 710794295..b562ffc9c 100644
--- a/frontend/app/components/ui/Icons/terminal.tsx
+++ b/frontend/app/components/ui/Icons/terminal.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Terminal(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/thermometer_sun.tsx b/frontend/app/components/ui/Icons/thermometer_sun.tsx
index 1eb141b51..0d8fae069 100644
--- a/frontend/app/components/ui/Icons/thermometer_sun.tsx
+++ b/frontend/app/components/ui/Icons/thermometer_sun.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Thermometer_sun(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/toggles.tsx b/frontend/app/components/ui/Icons/toggles.tsx
index cacfbb25b..62d347af9 100644
--- a/frontend/app/components/ui/Icons/toggles.tsx
+++ b/frontend/app/components/ui/Icons/toggles.tsx
@@ -9,18 +9,9 @@ interface Props {
}
function Toggles(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/tools.tsx b/frontend/app/components/ui/Icons/tools.tsx
index 9b5b6ba93..27b58ce4c 100644
--- a/frontend/app/components/ui/Icons/tools.tsx
+++ b/frontend/app/components/ui/Icons/tools.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Tools(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/trash.tsx b/frontend/app/components/ui/Icons/trash.tsx
index ef0dabe3a..4d7f14520 100644
--- a/frontend/app/components/ui/Icons/trash.tsx
+++ b/frontend/app/components/ui/Icons/trash.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function Trash(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/turtle.tsx b/frontend/app/components/ui/Icons/turtle.tsx
index f0e94a189..7e9baa4c7 100644
--- a/frontend/app/components/ui/Icons/turtle.tsx
+++ b/frontend/app/components/ui/Icons/turtle.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Turtle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/user_alt.tsx b/frontend/app/components/ui/Icons/user_alt.tsx
index aeb98cc40..2ca47d127 100644
--- a/frontend/app/components/ui/Icons/user_alt.tsx
+++ b/frontend/app/components/ui/Icons/user_alt.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function User_alt(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/user_circle.tsx b/frontend/app/components/ui/Icons/user_circle.tsx
index a363cb644..29dd17647 100644
--- a/frontend/app/components/ui/Icons/user_circle.tsx
+++ b/frontend/app/components/ui/Icons/user_circle.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function User_circle(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/user_friends.tsx b/frontend/app/components/ui/Icons/user_friends.tsx
index e5addde0b..b55490860 100644
--- a/frontend/app/components/ui/Icons/user_friends.tsx
+++ b/frontend/app/components/ui/Icons/user_friends.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function User_friends(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/user_journey.tsx b/frontend/app/components/ui/Icons/user_journey.tsx
index 0dc369a41..f8eaab6e7 100644
--- a/frontend/app/components/ui/Icons/user_journey.tsx
+++ b/frontend/app/components/ui/Icons/user_journey.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function User_journey(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/user_switch.tsx b/frontend/app/components/ui/Icons/user_switch.tsx
index c6ebf5ce3..d97868533 100644
--- a/frontend/app/components/ui/Icons/user_switch.tsx
+++ b/frontend/app/components/ui/Icons/user_switch.tsx
@@ -9,20 +9,9 @@ interface Props {
}
function User_switch(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/users.tsx b/frontend/app/components/ui/Icons/users.tsx
index 19989dc8b..e2210af4d 100644
--- a/frontend/app/components/ui/Icons/users.tsx
+++ b/frontend/app/components/ui/Icons/users.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Users(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/vendors_graphql.tsx b/frontend/app/components/ui/Icons/vendors_graphql.tsx
index 8e08891d5..e379bb835 100644
--- a/frontend/app/components/ui/Icons/vendors_graphql.tsx
+++ b/frontend/app/components/ui/Icons/vendors_graphql.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Vendors_graphql(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/web_vitals.tsx b/frontend/app/components/ui/Icons/web_vitals.tsx
index 8d1995592..f7f473e85 100644
--- a/frontend/app/components/ui/Icons/web_vitals.tsx
+++ b/frontend/app/components/ui/Icons/web_vitals.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Web_vitals(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/wifi.tsx b/frontend/app/components/ui/Icons/wifi.tsx
index 191d22e4d..b2851c1fc 100644
--- a/frontend/app/components/ui/Icons/wifi.tsx
+++ b/frontend/app/components/ui/Icons/wifi.tsx
@@ -9,12 +9,9 @@ interface Props {
}
function Wifi(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/window.tsx b/frontend/app/components/ui/Icons/window.tsx
index 8e650f447..5060e9278 100644
--- a/frontend/app/components/ui/Icons/window.tsx
+++ b/frontend/app/components/ui/Icons/window.tsx
@@ -9,11 +9,9 @@ interface Props {
}
function Window(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/window_x.tsx b/frontend/app/components/ui/Icons/window_x.tsx
index 22f1b1255..b6dde73ae 100644
--- a/frontend/app/components/ui/Icons/window_x.tsx
+++ b/frontend/app/components/ui/Icons/window_x.tsx
@@ -9,13 +9,9 @@ interface Props {
}
function Window_x(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/Icons/zoom_in.tsx b/frontend/app/components/ui/Icons/zoom_in.tsx
index 22fc8ca7b..911befb40 100644
--- a/frontend/app/components/ui/Icons/zoom_in.tsx
+++ b/frontend/app/components/ui/Icons/zoom_in.tsx
@@ -9,13 +9,9 @@ interface Props {
}
function Zoom_in(props: Props) {
- const { size = 14, width = size, height = size, fill = '' } = props;
- return (
-
+ const { size = 14, width = size, height = size, fill = '' } = props;
+ return (
+
);
}
diff --git a/frontend/app/components/ui/SVG.tsx b/frontend/app/components/ui/SVG.tsx
index ac05475b8..56c51e4bd 100644
--- a/frontend/app/components/ui/SVG.tsx
+++ b/frontend/app/components/ui/SVG.tsx
@@ -1,3 +1,4 @@
+
/* Auto-generated, do not edit */
import React from 'react';
import {
@@ -368,6 +369,7 @@ import {
Map_marker_alt,
Memory_ios,
Memory,
+ Metadata_more,
Mic_mute,
Mic,
Minus,
@@ -480,666 +482,498 @@ import {
Wifi,
Window_x,
Window,
- Zoom_in,
-} from './Icons';
+ Zoom_in
+} from './Icons'
-export type IconNames = 'activity' | 'analytics' | 'anchor' | 'arrow-bar-left' | 'arrow-clockwise' | 'arrow-counterclockwise' | 'arrow-down-short' | 'arrow-down-up' | 'arrow-down' | 'arrow-repeat' | 'arrow-right-short' | 'arrow-up-short' | 'arrow-up' | 'avatar/icn_avatar1' | 'avatar/icn_avatar10' | 'avatar/icn_avatar11' | 'avatar/icn_avatar12' | 'avatar/icn_avatar13' | 'avatar/icn_avatar14' | 'avatar/icn_avatar15' | 'avatar/icn_avatar16' | 'avatar/icn_avatar17' | 'avatar/icn_avatar18' | 'avatar/icn_avatar19' | 'avatar/icn_avatar2' | 'avatar/icn_avatar20' | 'avatar/icn_avatar21' | 'avatar/icn_avatar22' | 'avatar/icn_avatar23' | 'avatar/icn_avatar3' | 'avatar/icn_avatar4' | 'avatar/icn_avatar5' | 'avatar/icn_avatar6' | 'avatar/icn_avatar7' | 'avatar/icn_avatar8' | 'avatar/icn_avatar9' | 'ban' | 'bar-chart-line' | 'bar-pencil' | 'battery-charging' | 'battery' | 'bell-plus' | 'bell-slash' | 'bell' | 'binoculars' | 'book' | 'bookmark' | 'broadcast' | 'browser/browser' | 'browser/chrome' | 'browser/edge' | 'browser/electron' | 'browser/facebook' | 'browser/firefox' | 'browser/ie' | 'browser/opera' | 'browser/safari' | 'buildings' | 'bullhorn' | 'calendar' | 'call' | 'camera-video-off' | 'camera-video' | 'camera' | 'card-list' | 'card-text' | 'caret-down-fill' | 'caret-right-fill' | 'chat-dots' | 'chat-left-text' | 'chat-square-quote' | 'check-circle-fill' | 'check-circle' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-fill' | 'circle' | 'click-hesitation' | 'click-rage' | 'clipboard-check' | 'clock-history' | 'clock' | 'close' | 'code' | 'cog' | 'cogs' | 'collection-play' | 'collection' | 'color/apple' | 'color/browser/chrome' | 'color/browser/edge' | 'color/browser/facebook' | 'color/browser/firefox' | 'color/browser/google' | 'color/browser/opera' | 'color/browser/safari' | 'color/browser/unknown' | 'color/browser/whale' | 'color/chrome' | 'color/country/de' | 'color/country/fr' | 'color/country/gb' | 'color/country/in' | 'color/country/us' | 'color/de' | 'color/device/desktop' | 'color/device/mobile' | 'color/device/tablet' | 'color/device/unkown' | 'color/edge' | 'color/fedora' | 'color/firefox' | 'color/fr' | 'color/gb' | 'color/in' | 'color/issues/bad_request' | 'color/issues/click_rage' | 'color/issues/cpu' | 'color/issues/crash' | 'color/issues/custom' | 'color/issues/dead_click' | 'color/issues/errors' | 'color/issues/excessive_scrolling' | 'color/issues/js_exception' | 'color/issues/memory' | 'color/issues/missing_resource' | 'color/issues/mouse_thrashing' | 'color/issues/slow_page_load' | 'color/microsoft' | 'color/opera' | 'color/os/android' | 'color/os/apple' | 'color/os/elementary' | 'color/os/fedora' | 'color/os/ios' | 'color/os/linux' | 'color/os/macos' | 'color/os/microsoft' | 'color/os/ubuntu' | 'color/os/unkown' | 'color/safari' | 'color/ubuntu' | 'color/us' | 'columns-gap' | 'console/error' | 'console/exception' | 'console/info' | 'console/warning' | 'console' | 'controller' | 'cookies' | 'copy' | 'credit-card-2-back' | 'cross' | 'cubes' | 'cursor-trash' | 'cypress' | 'dash' | 'dashboard-icn' | 'dashboards/circle-alert' | 'dashboards/cohort-chart' | 'dashboards/heatmap-2' | 'dashboards/user-journey' | 'db-icons/icn-card-clickMap' | 'db-icons/icn-card-errors' | 'db-icons/icn-card-funnel' | 'db-icons/icn-card-funnels' | 'db-icons/icn-card-insights' | 'db-icons/icn-card-library' | 'db-icons/icn-card-mapchart' | 'db-icons/icn-card-pathAnalysis' | 'db-icons/icn-card-performance' | 'db-icons/icn-card-resources' | 'db-icons/icn-card-table' | 'db-icons/icn-card-timeseries' | 'db-icons/icn-card-webVitals' | 'desktop' | 'device' | 'diagram-3' | 'dizzy' | 'door-closed' | 'download' | 'drag' | 'edit' | 'ellipsis-v' | 'emoji-dizzy' | 'enter' | 'envelope-check' | 'envelope-paper' | 'envelope-x' | 'envelope' | 'errors-icon' | 'event/click' | 'event/click_hesitation' | 'event/clickrage' | 'event/code' | 'event/i-cursor' | 'event/input' | 'event/input_hesitation' | 'event/link' | 'event/location' | 'event/mouse_thrashing' | 'event/resize' | 'event/view' | 'exclamation-circle-fill' | 'exclamation-circle' | 'exclamation-triangle' | 'explosion' | 'external-link-alt' | 'eye-slash-fill' | 'eye-slash' | 'eye' | 'fetch-request' | 'fetch' | 'fflag-multi' | 'fflag-single' | 'file-bar-graph' | 'file-code' | 'file-medical-alt' | 'file-pdf' | 'file' | 'files' | 'filetype-js' | 'filetype-pdf' | 'filter' | 'filters/arrow-return-right' | 'filters/browser' | 'filters/chevrons-up-down' | 'filters/click' | 'filters/clickrage' | 'filters/code' | 'filters/console' | 'filters/country' | 'filters/cpu-load' | 'filters/custom' | 'filters/device' | 'filters/dom-complete' | 'filters/duration' | 'filters/error' | 'filters/fetch-failed' | 'filters/fetch' | 'filters/file-code' | 'filters/graphql' | 'filters/i-cursor' | 'filters/input' | 'filters/lcpt' | 'filters/link' | 'filters/location' | 'filters/memory-load' | 'filters/metadata' | 'filters/os' | 'filters/perfromance-network-request' | 'filters/platform' | 'filters/referrer' | 'filters/resize' | 'filters/rev-id' | 'filters/screen' | 'filters/state-action' | 'filters/tag-element' | 'filters/ttfb' | 'filters/user-alt' | 'filters/userid' | 'filters/view' | 'flag-na' | 'folder-plus' | 'folder2' | 'fullscreen' | 'funnel/cpu-fill' | 'funnel/cpu' | 'funnel/dizzy' | 'funnel/emoji-angry-fill' | 'funnel/emoji-angry' | 'funnel/emoji-dizzy-fill' | 'funnel/exclamation-circle-fill' | 'funnel/exclamation-circle' | 'funnel/file-earmark-break-fill' | 'funnel/file-earmark-break' | 'funnel/file-earmark-minus-fill' | 'funnel/file-earmark-minus' | 'funnel/file-medical-alt' | 'funnel/file-x' | 'funnel/hdd-fill' | 'funnel/hourglass-top' | 'funnel/image-fill' | 'funnel/image' | 'funnel/microchip' | 'funnel/mouse' | 'funnel/patch-exclamation-fill' | 'funnel/sd-card' | 'funnel-fill' | 'funnel' | 'gear' | 'github' | 'graph-up' | 'grid-3x3' | 'grid-check' | 'grid' | 'hash' | 'headset' | 'history' | 'ic-errors' | 'ic-network' | 'ic-rage' | 'ic-resources' | 'icn_fetch-request' | 'icn_referrer' | 'icn_url' | 'id-card' | 'image' | 'info-circle-fill' | 'info-circle' | 'info-square' | 'info' | 'input-hesitation' | 'inspect' | 'integrations/assist' | 'integrations/bugsnag-text' | 'integrations/bugsnag' | 'integrations/cloudwatch-text' | 'integrations/cloudwatch' | 'integrations/datadog' | 'integrations/dynatrace' | 'integrations/elasticsearch-text' | 'integrations/elasticsearch' | 'integrations/github' | 'integrations/graphql' | 'integrations/jira-text' | 'integrations/jira' | 'integrations/mobx' | 'integrations/newrelic-text' | 'integrations/newrelic' | 'integrations/ngrx' | 'integrations/openreplay-text' | 'integrations/openreplay' | 'integrations/redux' | 'integrations/rollbar-text' | 'integrations/rollbar' | 'integrations/segment' | 'integrations/sentry-text' | 'integrations/sentry' | 'integrations/slack-bw' | 'integrations/slack' | 'integrations/stackdriver' | 'integrations/sumologic-text' | 'integrations/sumologic' | 'integrations/teams-white' | 'integrations/teams' | 'integrations/vuejs' | 'integrations/zustand' | 'journal-code' | 'key' | 'keyboard' | 'layers-half' | 'lightbulb-on' | 'lightbulb' | 'link-45deg' | 'list-alt' | 'list-ul' | 'list' | 'low-disc-space' | 'magic' | 'map-marker-alt' | 'memory-ios' | 'memory' | 'mic-mute' | 'mic' | 'minus' | 'mobile' | 'mouse-alt' | 'mouse-pointer-click' | 'network' | 'next1' | 'no-dashboard' | 'no-metrics-chart' | 'no-metrics' | 'no-recordings' | 'orIcn' | 'orSpot' | 'orspotOutline' | 'os/android' | 'os/chrome_os' | 'os/fedora' | 'os/ios' | 'os/linux' | 'os/mac_os_x' | 'os/other' | 'os/ubuntu' | 'os/windows' | 'os' | 'pause-circle-fill' | 'pause-fill' | 'pause' | 'pdf-download' | 'pencil-stop' | 'pencil' | 'people' | 'percent' | 'performance-icon' | 'person-border' | 'person-fill' | 'person' | 'pie-chart-fill' | 'pin-fill' | 'play-circle-bold' | 'play-circle-light' | 'play-circle' | 'play-fill-new' | 'play-fill' | 'play-hover' | 'play' | 'plug' | 'plus-circle' | 'plus' | 'prev1' | 'pulse' | 'puppeteer' | 'puzzle-piece' | 'puzzle' | 'pwright' | 'question-circle' | 'question-lg' | 'quotes' | 'record-circle-fill' | 'record-circle' | 'record2' | 'redo' | 'redux' | 'referrer' | 'remote-control' | 'resources-icon' | 'safe' | 'sandglass' | 'search' | 'server' | 'share-alt' | 'shield-lock' | 'side_menu_closed' | 'side_menu_open' | 'signpost-split' | 'signup' | 'slack' | 'slash-circle' | 'sleep' | 'sliders' | 'social/slack' | 'social/trello' | 'sparkles' | 'speedometer2' | 'spinner' | 'square-mouse-pointer' | 'star' | 'step-forward' | 'stickies' | 'stop-record-circle' | 'stopwatch' | 'store' | 'sync-alt' | 'table' | 'tags' | 'terminal' | 'thermometer-sun' | 'toggles' | 'tools' | 'trash' | 'turtle' | 'user-alt' | 'user-circle' | 'user-friends' | 'user-journey' | 'user-switch' | 'users' | 'vendors/graphql' | 'web-vitals' | 'wifi' | 'window-x' | 'window' | 'zoom-in';
+export type IconNames = 'activity' | 'analytics' | 'anchor' | 'arrow-bar-left' | 'arrow-clockwise' | 'arrow-counterclockwise' | 'arrow-down-short' | 'arrow-down-up' | 'arrow-down' | 'arrow-repeat' | 'arrow-right-short' | 'arrow-up-short' | 'arrow-up' | 'avatar/icn_avatar1' | 'avatar/icn_avatar10' | 'avatar/icn_avatar11' | 'avatar/icn_avatar12' | 'avatar/icn_avatar13' | 'avatar/icn_avatar14' | 'avatar/icn_avatar15' | 'avatar/icn_avatar16' | 'avatar/icn_avatar17' | 'avatar/icn_avatar18' | 'avatar/icn_avatar19' | 'avatar/icn_avatar2' | 'avatar/icn_avatar20' | 'avatar/icn_avatar21' | 'avatar/icn_avatar22' | 'avatar/icn_avatar23' | 'avatar/icn_avatar3' | 'avatar/icn_avatar4' | 'avatar/icn_avatar5' | 'avatar/icn_avatar6' | 'avatar/icn_avatar7' | 'avatar/icn_avatar8' | 'avatar/icn_avatar9' | 'ban' | 'bar-chart-line' | 'bar-pencil' | 'battery-charging' | 'battery' | 'bell-plus' | 'bell-slash' | 'bell' | 'binoculars' | 'book' | 'bookmark' | 'broadcast' | 'browser/browser' | 'browser/chrome' | 'browser/edge' | 'browser/electron' | 'browser/facebook' | 'browser/firefox' | 'browser/ie' | 'browser/opera' | 'browser/safari' | 'buildings' | 'bullhorn' | 'calendar' | 'call' | 'camera-video-off' | 'camera-video' | 'camera' | 'card-list' | 'card-text' | 'caret-down-fill' | 'caret-right-fill' | 'chat-dots' | 'chat-left-text' | 'chat-square-quote' | 'check-circle-fill' | 'check-circle' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-fill' | 'circle' | 'click-hesitation' | 'click-rage' | 'clipboard-check' | 'clock-history' | 'clock' | 'close' | 'code' | 'cog' | 'cogs' | 'collection-play' | 'collection' | 'color/apple' | 'color/browser/chrome' | 'color/browser/edge' | 'color/browser/facebook' | 'color/browser/firefox' | 'color/browser/google' | 'color/browser/opera' | 'color/browser/safari' | 'color/browser/unknown' | 'color/browser/whale' | 'color/chrome' | 'color/country/de' | 'color/country/fr' | 'color/country/gb' | 'color/country/in' | 'color/country/us' | 'color/de' | 'color/device/desktop' | 'color/device/mobile' | 'color/device/tablet' | 'color/device/unkown' | 'color/edge' | 'color/fedora' | 'color/firefox' | 'color/fr' | 'color/gb' | 'color/in' | 'color/issues/bad_request' | 'color/issues/click_rage' | 'color/issues/cpu' | 'color/issues/crash' | 'color/issues/custom' | 'color/issues/dead_click' | 'color/issues/errors' | 'color/issues/excessive_scrolling' | 'color/issues/js_exception' | 'color/issues/memory' | 'color/issues/missing_resource' | 'color/issues/mouse_thrashing' | 'color/issues/slow_page_load' | 'color/microsoft' | 'color/opera' | 'color/os/android' | 'color/os/apple' | 'color/os/elementary' | 'color/os/fedora' | 'color/os/ios' | 'color/os/linux' | 'color/os/macos' | 'color/os/microsoft' | 'color/os/ubuntu' | 'color/os/unkown' | 'color/safari' | 'color/ubuntu' | 'color/us' | 'columns-gap' | 'console/error' | 'console/exception' | 'console/info' | 'console/warning' | 'console' | 'controller' | 'cookies' | 'copy' | 'credit-card-2-back' | 'cross' | 'cubes' | 'cursor-trash' | 'cypress' | 'dash' | 'dashboard-icn' | 'dashboards/circle-alert' | 'dashboards/cohort-chart' | 'dashboards/heatmap-2' | 'dashboards/user-journey' | 'db-icons/icn-card-clickMap' | 'db-icons/icn-card-errors' | 'db-icons/icn-card-funnel' | 'db-icons/icn-card-funnels' | 'db-icons/icn-card-insights' | 'db-icons/icn-card-library' | 'db-icons/icn-card-mapchart' | 'db-icons/icn-card-pathAnalysis' | 'db-icons/icn-card-performance' | 'db-icons/icn-card-resources' | 'db-icons/icn-card-table' | 'db-icons/icn-card-timeseries' | 'db-icons/icn-card-webVitals' | 'desktop' | 'device' | 'diagram-3' | 'dizzy' | 'door-closed' | 'download' | 'drag' | 'edit' | 'ellipsis-v' | 'emoji-dizzy' | 'enter' | 'envelope-check' | 'envelope-paper' | 'envelope-x' | 'envelope' | 'errors-icon' | 'event/click' | 'event/click_hesitation' | 'event/clickrage' | 'event/code' | 'event/i-cursor' | 'event/input' | 'event/input_hesitation' | 'event/link' | 'event/location' | 'event/mouse_thrashing' | 'event/resize' | 'event/view' | 'exclamation-circle-fill' | 'exclamation-circle' | 'exclamation-triangle' | 'explosion' | 'external-link-alt' | 'eye-slash-fill' | 'eye-slash' | 'eye' | 'fetch-request' | 'fetch' | 'fflag-multi' | 'fflag-single' | 'file-bar-graph' | 'file-code' | 'file-medical-alt' | 'file-pdf' | 'file' | 'files' | 'filetype-js' | 'filetype-pdf' | 'filter' | 'filters/arrow-return-right' | 'filters/browser' | 'filters/chevrons-up-down' | 'filters/click' | 'filters/clickrage' | 'filters/code' | 'filters/console' | 'filters/country' | 'filters/cpu-load' | 'filters/custom' | 'filters/device' | 'filters/dom-complete' | 'filters/duration' | 'filters/error' | 'filters/fetch-failed' | 'filters/fetch' | 'filters/file-code' | 'filters/graphql' | 'filters/i-cursor' | 'filters/input' | 'filters/lcpt' | 'filters/link' | 'filters/location' | 'filters/memory-load' | 'filters/metadata' | 'filters/os' | 'filters/perfromance-network-request' | 'filters/platform' | 'filters/referrer' | 'filters/resize' | 'filters/rev-id' | 'filters/screen' | 'filters/state-action' | 'filters/tag-element' | 'filters/ttfb' | 'filters/user-alt' | 'filters/userid' | 'filters/view' | 'flag-na' | 'folder-plus' | 'folder2' | 'fullscreen' | 'funnel/cpu-fill' | 'funnel/cpu' | 'funnel/dizzy' | 'funnel/emoji-angry-fill' | 'funnel/emoji-angry' | 'funnel/emoji-dizzy-fill' | 'funnel/exclamation-circle-fill' | 'funnel/exclamation-circle' | 'funnel/file-earmark-break-fill' | 'funnel/file-earmark-break' | 'funnel/file-earmark-minus-fill' | 'funnel/file-earmark-minus' | 'funnel/file-medical-alt' | 'funnel/file-x' | 'funnel/hdd-fill' | 'funnel/hourglass-top' | 'funnel/image-fill' | 'funnel/image' | 'funnel/microchip' | 'funnel/mouse' | 'funnel/patch-exclamation-fill' | 'funnel/sd-card' | 'funnel-fill' | 'funnel' | 'gear' | 'github' | 'graph-up' | 'grid-3x3' | 'grid-check' | 'grid' | 'hash' | 'headset' | 'history' | 'ic-errors' | 'ic-network' | 'ic-rage' | 'ic-resources' | 'icn_fetch-request' | 'icn_referrer' | 'icn_url' | 'id-card' | 'image' | 'info-circle-fill' | 'info-circle' | 'info-square' | 'info' | 'input-hesitation' | 'inspect' | 'integrations/assist' | 'integrations/bugsnag-text' | 'integrations/bugsnag' | 'integrations/cloudwatch-text' | 'integrations/cloudwatch' | 'integrations/datadog' | 'integrations/dynatrace' | 'integrations/elasticsearch-text' | 'integrations/elasticsearch' | 'integrations/github' | 'integrations/graphql' | 'integrations/jira-text' | 'integrations/jira' | 'integrations/mobx' | 'integrations/newrelic-text' | 'integrations/newrelic' | 'integrations/ngrx' | 'integrations/openreplay-text' | 'integrations/openreplay' | 'integrations/redux' | 'integrations/rollbar-text' | 'integrations/rollbar' | 'integrations/segment' | 'integrations/sentry-text' | 'integrations/sentry' | 'integrations/slack-bw' | 'integrations/slack' | 'integrations/stackdriver' | 'integrations/sumologic-text' | 'integrations/sumologic' | 'integrations/teams-white' | 'integrations/teams' | 'integrations/vuejs' | 'integrations/zustand' | 'journal-code' | 'key' | 'keyboard' | 'layers-half' | 'lightbulb-on' | 'lightbulb' | 'link-45deg' | 'list-alt' | 'list-ul' | 'list' | 'low-disc-space' | 'magic' | 'map-marker-alt' | 'memory-ios' | 'memory' | 'metadata-more' | 'mic-mute' | 'mic' | 'minus' | 'mobile' | 'mouse-alt' | 'mouse-pointer-click' | 'network' | 'next1' | 'no-dashboard' | 'no-metrics-chart' | 'no-metrics' | 'no-recordings' | 'orIcn' | 'orSpot' | 'orspotOutline' | 'os/android' | 'os/chrome_os' | 'os/fedora' | 'os/ios' | 'os/linux' | 'os/mac_os_x' | 'os/other' | 'os/ubuntu' | 'os/windows' | 'os' | 'pause-circle-fill' | 'pause-fill' | 'pause' | 'pdf-download' | 'pencil-stop' | 'pencil' | 'people' | 'percent' | 'performance-icon' | 'person-border' | 'person-fill' | 'person' | 'pie-chart-fill' | 'pin-fill' | 'play-circle-bold' | 'play-circle-light' | 'play-circle' | 'play-fill-new' | 'play-fill' | 'play-hover' | 'play' | 'plug' | 'plus-circle' | 'plus' | 'prev1' | 'pulse' | 'puppeteer' | 'puzzle-piece' | 'puzzle' | 'pwright' | 'question-circle' | 'question-lg' | 'quotes' | 'record-circle-fill' | 'record-circle' | 'record2' | 'redo' | 'redux' | 'referrer' | 'remote-control' | 'resources-icon' | 'safe' | 'sandglass' | 'search' | 'server' | 'share-alt' | 'shield-lock' | 'side_menu_closed' | 'side_menu_open' | 'signpost-split' | 'signup' | 'slack' | 'slash-circle' | 'sleep' | 'sliders' | 'social/slack' | 'social/trello' | 'sparkles' | 'speedometer2' | 'spinner' | 'square-mouse-pointer' | 'star' | 'step-forward' | 'stickies' | 'stop-record-circle' | 'stopwatch' | 'store' | 'sync-alt' | 'table' | 'tags' | 'terminal' | 'thermometer-sun' | 'toggles' | 'tools' | 'trash' | 'turtle' | 'user-alt' | 'user-circle' | 'user-friends' | 'user-journey' | 'user-switch' | 'users' | 'vendors/graphql' | 'web-vitals' | 'wifi' | 'window-x' | 'window' | 'zoom-in';
interface Props {
- name: IconNames;
- size?: number | string;
- width?: number | string;
- height?: number | string;
- fill?: string;
+ name: IconNames;
+ size?: number | string;
+ width?: number | string;
+ height?: number | string;
+ fill?: string;
}
/* Auto-generated, do not edit */
const SVG = (props: Props) => {
- const { name, size = 14, width = size, height = size, fill = '' } = props;
- switch (name) {
- case 'activity':
- return ;
-
- case 'analytics':
- return ;
-
- case 'anchor':
- return ;
+ const { name, size = 14, width = size, height = size, fill = '' } = props;
+ switch (name) {
+
+ case 'activity': return ;
+
+
+ case 'analytics': return ;
+
+
+ case 'anchor': return ;
+
// case 'arrow-bar-left':
- case 'arrow-bar-left':
- return ;
-
+ case 'arrow-bar-left': return ;
+
// case 'arrow-clockwise':
- case 'arrow-clockwise':
- return ;
-
+ case 'arrow-clockwise': return ;
+
// case 'arrow-counterclockwise':
- case 'arrow-counterclockwise':
- return (
-
- );
-
+ case 'arrow-counterclockwise': return ;
+
// case 'arrow-down-short':
- case 'arrow-down-short':
- return ;
-
+ case 'arrow-down-short': return ;
+
// case 'arrow-down-up':
- case 'arrow-down-up':
- return ;
-
+ case 'arrow-down-up': return ;
+
// case 'arrow-down':
- case 'arrow-down':
- return ;
-
+ case 'arrow-down': return ;
+
// case 'arrow-repeat':
- case 'arrow-repeat':
- return ;
-
+ case 'arrow-repeat': return ;
+
// case 'arrow-right-short':
- case 'arrow-right-short':
- return ;
-
+ case 'arrow-right-short': return ;
+
// case 'arrow-up-short':
- case 'arrow-up-short':
- return ;
-
+ case 'arrow-up-short': return ;
+
// case 'arrow-up':
- case 'arrow-up':
- return ;
-
+ case 'arrow-up': return ;
+
// case 'avatar/icn_avatar1':
- case 'avatar/icn_avatar1':
- return ;
-
+ case 'avatar/icn_avatar1': return ;
+
// case 'avatar/icn_avatar10':
- case 'avatar/icn_avatar10':
- return ;
-
+ case 'avatar/icn_avatar10': return ;
+
// case 'avatar/icn_avatar11':
- case 'avatar/icn_avatar11':
- return ;
-
+ case 'avatar/icn_avatar11': return ;
+
// case 'avatar/icn_avatar12':
- case 'avatar/icn_avatar12':
- return ;
-
+ case 'avatar/icn_avatar12': return ;
+
// case 'avatar/icn_avatar13':
- case 'avatar/icn_avatar13':
- return ;
-
+ case 'avatar/icn_avatar13': return ;
+
// case 'avatar/icn_avatar14':
- case 'avatar/icn_avatar14':
- return ;
-
+ case 'avatar/icn_avatar14': return ;
+
// case 'avatar/icn_avatar15':
- case 'avatar/icn_avatar15':
- return ;
-
+ case 'avatar/icn_avatar15': return ;
+
// case 'avatar/icn_avatar16':
- case 'avatar/icn_avatar16':
- return ;
-
+ case 'avatar/icn_avatar16': return ;
+
// case 'avatar/icn_avatar17':
- case 'avatar/icn_avatar17':
- return ;
-
+ case 'avatar/icn_avatar17': return ;
+
// case 'avatar/icn_avatar18':
- case 'avatar/icn_avatar18':
- return ;
-
+ case 'avatar/icn_avatar18': return ;
+
// case 'avatar/icn_avatar19':
- case 'avatar/icn_avatar19':
- return ;
-
+ case 'avatar/icn_avatar19': return ;
+
// case 'avatar/icn_avatar2':
- case 'avatar/icn_avatar2':
- return ;
-
+ case 'avatar/icn_avatar2': return ;
+
// case 'avatar/icn_avatar20':
- case 'avatar/icn_avatar20':
- return ;
-
+ case 'avatar/icn_avatar20': return ;
+
// case 'avatar/icn_avatar21':
- case 'avatar/icn_avatar21':
- return ;
-
+ case 'avatar/icn_avatar21': return ;
+
// case 'avatar/icn_avatar22':
- case 'avatar/icn_avatar22':
- return ;
-
+ case 'avatar/icn_avatar22': return ;
+
// case 'avatar/icn_avatar23':
- case 'avatar/icn_avatar23':
- return ;
-
+ case 'avatar/icn_avatar23': return ;
+
// case 'avatar/icn_avatar3':
- case 'avatar/icn_avatar3':
- return ;
-
+ case 'avatar/icn_avatar3': return ;
+
// case 'avatar/icn_avatar4':
- case 'avatar/icn_avatar4':
- return ;
-
+ case 'avatar/icn_avatar4': return ;
+
// case 'avatar/icn_avatar5':
- case 'avatar/icn_avatar5':
- return ;
-
+ case 'avatar/icn_avatar5': return ;
+
// case 'avatar/icn_avatar6':
- case 'avatar/icn_avatar6':
- return ;
-
+ case 'avatar/icn_avatar6': return ;
+
// case 'avatar/icn_avatar7':
- case 'avatar/icn_avatar7':
- return ;
-
+ case 'avatar/icn_avatar7': return ;
+
// case 'avatar/icn_avatar8':
- case 'avatar/icn_avatar8':
- return ;
-
+ case 'avatar/icn_avatar8': return ;
+
// case 'avatar/icn_avatar9':
- case 'avatar/icn_avatar9':
- return ;
-
- case 'ban':
- return ;
-
+ case 'avatar/icn_avatar9': return ;
+
+
+ case 'ban': return ;
+
// case 'bar-chart-line':
- case 'bar-chart-line':
- return ;
-
+ case 'bar-chart-line': return ;
+
// case 'bar-pencil':
- case 'bar-pencil':
- return ;
-
+ case 'bar-pencil': return ;
+
// case 'battery-charging':
- case 'battery-charging':
- return ;
-
- case 'battery':
- return ;
-
+ case 'battery-charging': return ;
+
+
+ case 'battery': return ;
+
// case 'bell-plus':
- case 'bell-plus':
- return ;
-
+ case 'bell-plus': return ;
+
// case 'bell-slash':
- case 'bell-slash':
- return ;
-
- case 'bell':
- return ;
-
- case 'binoculars':
- return ;
-
- case 'book':
- return ;
-
- case 'bookmark':
- return ;
-
- case 'broadcast':
- return ;
-
+ case 'bell-slash': return ;
+
+
+ case 'bell': return ;
+
+
+ case 'binoculars': return ;
+
+
+ case 'book': return ;
+
+
+ case 'bookmark': return ;
+
+
+ case 'broadcast': return ;
+
// case 'browser/browser':
- case 'browser/browser':
- return ;
-
+ case 'browser/browser': return ;
+
// case 'browser/chrome':
- case 'browser/chrome':
- return ;
-
+ case 'browser/chrome': return ;
+
// case 'browser/edge':
- case 'browser/edge':
- return ;
-
+ case 'browser/edge': return ;
+
// case 'browser/electron':
- case 'browser/electron':
- return ;
-
+ case 'browser/electron': return ;
+
// case 'browser/facebook':
- case 'browser/facebook':
- return ;
-
+ case 'browser/facebook': return ;
+
// case 'browser/firefox':
- case 'browser/firefox':
- return ;
-
+ case 'browser/firefox': return ;
+
// case 'browser/ie':
- case 'browser/ie':
- return ;
-
+ case 'browser/ie': return ;
+
// case 'browser/opera':
- case 'browser/opera':
- return ;
-
+ case 'browser/opera': return ;
+
// case 'browser/safari':
- case 'browser/safari':
- return ;
-
- case 'buildings':
- return ;
-
- case 'bullhorn':
- return ;
-
- case 'calendar':
- return ;
-
- case 'call':
- return ;
-
+ case 'browser/safari': return ;
+
+
+ case 'buildings': return ;
+
+
+ case 'bullhorn': return ;
+
+
+ case 'calendar': return ;
+
+
+ case 'call': return ;
+
// case 'camera-video-off':
- case 'camera-video-off':
- return ;
-
+ case 'camera-video-off': return ;
+
// case 'camera-video':
- case 'camera-video':
- return ;
-
- case 'camera':
- return ;
-
+ case 'camera-video': return ;
+
+
+ case 'camera': return ;
+
// case 'card-list':
- case 'card-list':
- return ;
-
+ case 'card-list': return ;
+
// case 'card-text':
- case 'card-text':
- return ;
-
+ case 'card-text': return ;
+
// case 'caret-down-fill':
- case 'caret-down-fill':
- return ;
-
+ case 'caret-down-fill': return ;
+
// case 'caret-right-fill':
- case 'caret-right-fill':
- return ;
-
+ case 'caret-right-fill': return ;
+
// case 'chat-dots':
- case 'chat-dots':
- return ;
-
+ case 'chat-dots': return ;
+
// case 'chat-left-text':
- case 'chat-left-text':
- return ;
-
+ case 'chat-left-text': return ;
+
// case 'chat-square-quote':
- case 'chat-square-quote':
- return ;
-
+ case 'chat-square-quote': return ;
+
// case 'check-circle-fill':
- case 'check-circle-fill':
- return ;
-
+ case 'check-circle-fill': return ;
+
// case 'check-circle':
- case 'check-circle':
- return ;
-
- case 'check':
- return ;
-
+ case 'check-circle': return ;
+
+
+ case 'check': return ;
+
// case 'chevron-down':
- case 'chevron-down':
- return ;
-
+ case 'chevron-down': return ;
+
// case 'chevron-left':
- case 'chevron-left':
- return ;
-
+ case 'chevron-left': return ;
+
// case 'chevron-right':
- case 'chevron-right':
- return ;
-
+ case 'chevron-right': return ;
+
// case 'chevron-up':
- case 'chevron-up':
- return ;
-
+ case 'chevron-up': return ;
+
// case 'circle-fill':
- case 'circle-fill':
- return ;
-
- case 'circle':
- return ;
-
+ case 'circle-fill': return ;
+
+
+ case 'circle': return ;
+
// case 'click-hesitation':
- case 'click-hesitation':
- return ;
-
+ case 'click-hesitation': return ;
+
// case 'click-rage':
- case 'click-rage':
- return ;
-
+ case 'click-rage': return ;
+
// case 'clipboard-check':
- case 'clipboard-check':
- return ;
-
+ case 'clipboard-check': return ;
+
// case 'clock-history':
- case 'clock-history':
- return ;
-
- case 'clock':
- return ;
-
- case 'close':
- return ;
-
- case 'code':
- return ;
-
- case 'cog':
- return ;
-
- case 'cogs':
- return ;
-
+ case 'clock-history': return ;
+
+
+ case 'clock': return ;
+
+
+ case 'close': return ;
+
+
+ case 'code': return ;
+
+
+ case 'cog': return ;
+
+
+ case 'cogs': return ;
+
// case 'collection-play':
- case 'collection-play':
- return ;
-
- case 'collection':
- return ;
-
+ case 'collection-play': return ;
+
+
+ case 'collection': return ;
+
// case 'color/apple':
- case 'color/apple':
- return ;
-
+ case 'color/apple': return ;
+
// case 'color/browser/chrome':
- case 'color/browser/chrome':
- return ;
-
+ case 'color/browser/chrome': return ;
+
// case 'color/browser/edge':
- case 'color/browser/edge':
- return ;
-
+ case 'color/browser/edge': return ;
+
// case 'color/browser/facebook':
- case 'color/browser/facebook':
- return (
-
- );
-
+ case 'color/browser/facebook': return ;
+
// case 'color/browser/firefox':
- case 'color/browser/firefox':
- return (
-
- );
-
+ case 'color/browser/firefox': return ;
+
// case 'color/browser/google':
- case 'color/browser/google':
- return ;
-
+ case 'color/browser/google': return ;
+
// case 'color/browser/opera':
- case 'color/browser/opera':
- return ;
-
+ case 'color/browser/opera': return ;
+
// case 'color/browser/safari':
- case 'color/browser/safari':
- return ;
-
+ case 'color/browser/safari': return ;
+
// case 'color/browser/unknown':
- case 'color/browser/unknown':
- return (
-
- );
-
+ case 'color/browser/unknown': return ;
+
// case 'color/browser/whale':
- case 'color/browser/whale':
- return ;
-
+ case 'color/browser/whale': return ;
+
// case 'color/chrome':
- case 'color/chrome':
- return ;
-
+ case 'color/chrome': return ;
+
// case 'color/country/de':
- case 'color/country/de':
- return ;
-
+ case 'color/country/de': return ;
+
// case 'color/country/fr':
- case 'color/country/fr':
- return ;
-
+ case 'color/country/fr': return ;
+
// case 'color/country/gb':
- case 'color/country/gb':
- return ;
-
+ case 'color/country/gb': return ;
+
// case 'color/country/in':
- case 'color/country/in':
- return ;
-
+ case 'color/country/in': return ;
+
// case 'color/country/us':
- case 'color/country/us':
- return ;
-
+ case 'color/country/us': return ;
+
// case 'color/de':
- case 'color/de':
- return ;
-
+ case 'color/de': return ;
+
// case 'color/device/desktop':
- case 'color/device/desktop':
- return ;
-
+ case 'color/device/desktop': return ;
+
// case 'color/device/mobile':
- case 'color/device/mobile':
- return ;
-
+ case 'color/device/mobile': return ;
+
// case 'color/device/tablet':
- case 'color/device/tablet':
- return ;
-
+ case 'color/device/tablet': return ;
+
// case 'color/device/unkown':
- case 'color/device/unkown':
- return ;
-
+ case 'color/device/unkown': return ;
+
// case 'color/edge':
- case 'color/edge':
- return ;
-
+ case 'color/edge': return ;
+
// case 'color/fedora':
- case 'color/fedora':
- return ;
-
+ case 'color/fedora': return ;
+
// case 'color/firefox':
- case 'color/firefox':
- return ;
-
+ case 'color/firefox': return ;
+
// case 'color/fr':
- case 'color/fr':
- return ;
-
+ case 'color/fr': return ;
+
// case 'color/gb':
- case 'color/gb':
- return ;
-
+ case 'color/gb': return ;
+
// case 'color/in':
- case 'color/in':
- return ;
-
+ case 'color/in': return ;
+
// case 'color/issues/bad_request':
- case 'color/issues/bad_request':
- return (
-
- );
-
+ case 'color/issues/bad_request': return ;
+
// case 'color/issues/click_rage':
- case 'color/issues/click_rage':
- return (
-
- );
-
+ case 'color/issues/click_rage': return ;
+
// case 'color/issues/cpu':
- case 'color/issues/cpu':
- return ;
-
+ case 'color/issues/cpu': return ;
+
// case 'color/issues/crash':
- case 'color/issues/crash':
- return ;
-
+ case 'color/issues/crash': return ;
+
// case 'color/issues/custom':
- case 'color/issues/custom':
- return ;
-
+ case 'color/issues/custom': return ;
+
// case 'color/issues/dead_click':
- case 'color/issues/dead_click':
- return (
-
- );
-
+ case 'color/issues/dead_click': return ;
+
// case 'color/issues/errors':
- case 'color/issues/errors':
- return ;
-
+ case 'color/issues/errors': return ;
+
// case 'color/issues/excessive_scrolling':
- case 'color/issues/excessive_scrolling':
- return (
-
- );
-
+ case 'color/issues/excessive_scrolling': return ;
+
// case 'color/issues/js_exception':
- case 'color/issues/js_exception':
- return (
-
- );
-
+ case 'color/issues/js_exception': return ;
+
// case 'color/issues/memory':
- case 'color/issues/memory':
- return ;
-
+ case 'color/issues/memory': return ;
+
// case 'color/issues/missing_resource':
- case 'color/issues/missing_resource':
- return (
-
- );
-
+ case 'color/issues/missing_resource': return ;
+
// case 'color/issues/mouse_thrashing':
- case 'color/issues/mouse_thrashing':
- return (
-
- );
-
+ case 'color/issues/mouse_thrashing': return ;
+
// case 'color/issues/slow_page_load':
- case 'color/issues/slow_page_load':
- return (
-
- );
-
+ case 'color/issues/slow_page_load': return ;
+
// case 'color/microsoft':
- case 'color/microsoft':
- return ;
-
+ case 'color/microsoft': return ;
+
// case 'color/opera':
- case 'color/opera':
- return ;
-
+ case 'color/opera': return ;
+
// case 'color/os/android':
- case 'color/os/android':
- return ;
-
+ case 'color/os/android': return ;
+
// case 'color/os/apple':
- case 'color/os/apple':
- return ;
-
+ case 'color/os/apple': return ;
+
// case 'color/os/elementary':
- case 'color/os/elementary':
- return ;
-
+ case 'color/os/elementary': return ;
+
// case 'color/os/fedora':
- case 'color/os/fedora':
- return ;
-
+ case 'color/os/fedora': return ;
+
// case 'color/os/ios':
- case 'color/os/ios':
- return ;
-
+ case 'color/os/ios': return ;
+
// case 'color/os/linux':
- case 'color/os/linux':
- return ;
-
+ case 'color/os/linux': return ;
+
// case 'color/os/macos':
- case 'color/os/macos':
- return ;
-
+ case 'color/os/macos': return ;
+
// case 'color/os/microsoft':
- case 'color/os/microsoft':
- return ;
-
+ case 'color/os/microsoft': return ;
+
// case 'color/os/ubuntu':
- case 'color/os/ubuntu':
- return ;
-
+ case 'color/os/ubuntu': return ;
+
// case 'color/os/unkown':
- case 'color/os/unkown':
- return ;
-
+ case 'color/os/unkown': return ;
+
// case 'color/safari':
- case 'color/safari':
- return ;
-
+ case 'color/safari': return ;
+
// case 'color/ubuntu':
- case 'color/ubuntu':
- return ;
-
+ case 'color/ubuntu': return ;
+
// case 'color/us':
- case 'color/us':
- return ;
-
+ case 'color/us': return ;
+
// case 'columns-gap':
- case 'columns-gap':
- return ;
-
+ case 'columns-gap': return ;
+
// case 'console/error':
- case 'console/error':
- return ;
-
+ case 'console/error': return ;
+
// case 'console/exception':
- case 'console/exception':
- return ;
-
+ case 'console/exception': return ;
+
// case 'console/info':
- case 'console/info':
- return ;
-
+ case 'console/info': return ;
+
// case 'console/warning':
- case 'console/warning':
- return ;
-
- case 'console':
- return ;
-
- case 'controller':
- return ;
-
- case 'cookies':
- return ;
-
- case 'copy':
- return ;
-
+ case 'console/warning': return ;
+
+
+ case 'console': return ;
+
+
+ case 'controller': return ;
+
+
+ case 'cookies': return ;
+
+
+ case 'copy': return ;
+
// case 'credit-card-2-back':
- case 'credit-card-2-back':
- return ;
-
- case 'cross':
- return ;
-
- case 'cubes':
- return ;
-
+ case 'credit-card-2-back': return ;
+
+
+ case 'cross': return ;
+
+
+ case 'cubes': return ;
+
// case 'cursor-trash':
case 'cursor-trash': return ;
@@ -1150,1125 +984,767 @@ const SVG = (props: Props) => {
case 'dash': return ;
// case 'dashboard-icn':
- case 'dashboard-icn':
- return ;
-
+ case 'dashboard-icn': return ;
+
// case 'dashboards/circle-alert':
- case 'dashboards/circle-alert':
- return (
-
- );
-
+ case 'dashboards/circle-alert': return ;
+
// case 'dashboards/cohort-chart':
- case 'dashboards/cohort-chart':
- return (
-
- );
-
+ case 'dashboards/cohort-chart': return ;
+
// case 'dashboards/heatmap-2':
- case 'dashboards/heatmap-2':
- return ;
-
+ case 'dashboards/heatmap-2': return ;
+
// case 'dashboards/user-journey':
- case 'dashboards/user-journey':
- return (
-
- );
-
+ case 'dashboards/user-journey': return ;
+
// case 'db-icons/icn-card-clickMap':
- case 'db-icons/icn-card-clickMap':
- return (
-
- );
-
+ case 'db-icons/icn-card-clickMap': return ;
+
// case 'db-icons/icn-card-errors':
- case 'db-icons/icn-card-errors':
- return (
-
- );
-
+ case 'db-icons/icn-card-errors': return ;
+
// case 'db-icons/icn-card-funnel':
- case 'db-icons/icn-card-funnel':
- return (
-
- );
-
+ case 'db-icons/icn-card-funnel': return ;
+
// case 'db-icons/icn-card-funnels':
- case 'db-icons/icn-card-funnels':
- return (
-
- );
-
+ case 'db-icons/icn-card-funnels': return ;
+
// case 'db-icons/icn-card-insights':
- case 'db-icons/icn-card-insights':
- return (
-
- );
-
+ case 'db-icons/icn-card-insights': return ;
+
// case 'db-icons/icn-card-library':
- case 'db-icons/icn-card-library':
- return (
-
- );
-
+ case 'db-icons/icn-card-library': return ;
+
// case 'db-icons/icn-card-mapchart':
- case 'db-icons/icn-card-mapchart':
- return (
-
- );
-
+ case 'db-icons/icn-card-mapchart': return ;
+
// case 'db-icons/icn-card-pathAnalysis':
- case 'db-icons/icn-card-pathAnalysis':
- return (
-
- );
-
+ case 'db-icons/icn-card-pathAnalysis': return ;
+
// case 'db-icons/icn-card-performance':
- case 'db-icons/icn-card-performance':
- return (
-
- );
-
+ case 'db-icons/icn-card-performance': return ;
+
// case 'db-icons/icn-card-resources':
- case 'db-icons/icn-card-resources':
- return (
-
- );
-
+ case 'db-icons/icn-card-resources': return ;
+
// case 'db-icons/icn-card-table':
- case 'db-icons/icn-card-table':
- return (
-
- );
-
+ case 'db-icons/icn-card-table': return ;
+
// case 'db-icons/icn-card-timeseries':
- case 'db-icons/icn-card-timeseries':
- return (
-
- );
-
+ case 'db-icons/icn-card-timeseries': return ;
+
// case 'db-icons/icn-card-webVitals':
- case 'db-icons/icn-card-webVitals':
- return (
-
- );
-
- case 'desktop':
- return ;
-
- case 'device':
- return ;
-
+ case 'db-icons/icn-card-webVitals': return ;
+
+
+ case 'desktop': return ;
+
+
+ case 'device': return ;
+
// case 'diagram-3':
- case 'diagram-3':
- return ;
-
- case 'dizzy':
- return ;
-
+ case 'diagram-3': return ;
+
+
+ case 'dizzy': return ;
+
// case 'door-closed':
- case 'door-closed':
- return ;
-
- case 'download':
- return ;
-
- case 'drag':
- return ;
-
- case 'edit':
- return ;
-
+ case 'door-closed': return ;
+
+
+ case 'download': return ;
+
+
+ case 'drag': return ;
+
+
+ case 'edit': return ;
+
// case 'ellipsis-v':
- case 'ellipsis-v':
- return ;
-
+ case 'ellipsis-v': return ;
+
// case 'emoji-dizzy':
- case 'emoji-dizzy':
- return ;
-
- case 'enter':
- return ;
-
+ case 'emoji-dizzy': return ;
+
+
+ case 'enter': return ;
+
// case 'envelope-check':
- case 'envelope-check':
- return ;
-
+ case 'envelope-check': return ;
+
// case 'envelope-paper':
- case 'envelope-paper':
- return ;
-
+ case 'envelope-paper': return ;
+
// case 'envelope-x':
- case 'envelope-x':
- return ;
-
- case 'envelope':
- return ;
-
+ case 'envelope-x': return ;
+
+
+ case 'envelope': return ;
+
// case 'errors-icon':
- case 'errors-icon':
- return ;
-
+ case 'errors-icon': return ;
+
// case 'event/click':
- case 'event/click':
- return ;
-
+ case 'event/click': return ;
+
// case 'event/click_hesitation':
- case 'event/click_hesitation':
- return (
-
- );
-
+ case 'event/click_hesitation': return ;
+
// case 'event/clickrage':
- case 'event/clickrage':
- return ;
-
+ case 'event/clickrage': return ;
+
// case 'event/code':
- case 'event/code':
- return ;
-
+ case 'event/code': return ;
+
// case 'event/i-cursor':
- case 'event/i-cursor':
- return ;
-
+ case 'event/i-cursor': return ;
+
// case 'event/input':
- case 'event/input':
- return ;
-
+ case 'event/input': return ;
+
// case 'event/input_hesitation':
- case 'event/input_hesitation':
- return (
-
- );
-
+ case 'event/input_hesitation': return ;
+
// case 'event/link':
- case 'event/link':
- return ;
-
+ case 'event/link': return ;
+
// case 'event/location':
- case 'event/location':
- return ;
-
+ case 'event/location': return ;
+
// case 'event/mouse_thrashing':
- case 'event/mouse_thrashing':
- return (
-
- );
-
+ case 'event/mouse_thrashing': return ;
+
// case 'event/resize':
- case 'event/resize':
- return ;
-
+ case 'event/resize': return ;
+
// case 'event/view':
- case 'event/view':
- return ;
-
+ case 'event/view': return ;
+
// case 'exclamation-circle-fill':
- case 'exclamation-circle-fill':
- return (
-
- );
-
+ case 'exclamation-circle-fill': return ;
+
// case 'exclamation-circle':
- case 'exclamation-circle':
- return ;
-
+ case 'exclamation-circle': return ;
+
// case 'exclamation-triangle':
- case 'exclamation-triangle':
- return ;
-
- case 'explosion':
- return ;
-
+ case 'exclamation-triangle': return ;
+
+
+ case 'explosion': return ;
+
// case 'external-link-alt':
- case 'external-link-alt':
- return ;
-
+ case 'external-link-alt': return ;
+
// case 'eye-slash-fill':
- case 'eye-slash-fill':
- return ;
-
+ case 'eye-slash-fill': return ;
+
// case 'eye-slash':
- case 'eye-slash':
- return ;
-
- case 'eye':
- return ;
-
+ case 'eye-slash': return ;
+
+
+ case 'eye': return ;
+
// case 'fetch-request':
- case 'fetch-request':
- return ;
-
- case 'fetch':
- return ;
-
+ case 'fetch-request': return ;
+
+
+ case 'fetch': return ;
+
// case 'fflag-multi':
- case 'fflag-multi':
- return ;
-
+ case 'fflag-multi': return ;
+
// case 'fflag-single':
- case 'fflag-single':
- return ;
-
+ case 'fflag-single': return ;
+
// case 'file-bar-graph':
- case 'file-bar-graph':
- return ;
-
+ case 'file-bar-graph': return ;
+
// case 'file-code':
- case 'file-code':
- return ;
-
+ case 'file-code': return ;
+
// case 'file-medical-alt':
- case 'file-medical-alt':
- return ;
-
+ case 'file-medical-alt': return ;
+
// case 'file-pdf':
- case 'file-pdf':
- return ;
-
- case 'file':
- return ;
-
- case 'files':
- return ;
-
+ case 'file-pdf': return ;
+
+
+ case 'file': return ;
+
+
+ case 'files': return ;
+
// case 'filetype-js':
- case 'filetype-js':
- return ;
-
+ case 'filetype-js': return ;
+
// case 'filetype-pdf':
- case 'filetype-pdf':
- return ;
-
- case 'filter':
- return ;
-
+ case 'filetype-pdf': return ;
+
+
+ case 'filter': return ;
+
// case 'filters/arrow-return-right':
- case 'filters/arrow-return-right':
- return (
-
- );
-
+ case 'filters/arrow-return-right': return ;
+
// case 'filters/browser':
- case 'filters/browser':
- return ;
-
+ case 'filters/browser': return ;
+
// case 'filters/chevrons-up-down':
- case 'filters/chevrons-up-down':
- return (
-
- );
-
+ case 'filters/chevrons-up-down': return ;
+
// case 'filters/click':
- case 'filters/click':
- return ;
-
+ case 'filters/click': return ;
+
// case 'filters/clickrage':
- case 'filters/clickrage':
- return ;
-
+ case 'filters/clickrage': return ;
+
// case 'filters/code':
- case 'filters/code':
- return ;
-
+ case 'filters/code': return ;
+
// case 'filters/console':
- case 'filters/console':
- return ;
-
+ case 'filters/console': return ;
+
// case 'filters/country':
- case 'filters/country':
- return ;
-
+ case 'filters/country': return ;
+
// case 'filters/cpu-load':
- case 'filters/cpu-load':
- return ;
-
+ case 'filters/cpu-load': return ;
+
// case 'filters/custom':
- case 'filters/custom':
- return ;
-
+ case 'filters/custom': return ;
+
// case 'filters/device':
- case 'filters/device':
- return ;
-
+ case 'filters/device': return ;
+
// case 'filters/dom-complete':
- case 'filters/dom-complete':
- return ;
-
+ case 'filters/dom-complete': return ;
+
// case 'filters/duration':
- case 'filters/duration':
- return ;
-
+ case 'filters/duration': return ;
+
// case 'filters/error':
- case 'filters/error':
- return ;
-
+ case 'filters/error': return ;
+
// case 'filters/fetch-failed':
- case 'filters/fetch-failed':
- return ;
-
+ case 'filters/fetch-failed': return ;
+
// case 'filters/fetch':
- case 'filters/fetch':
- return ;
-
+ case 'filters/fetch': return ;
+
// case 'filters/file-code':
- case 'filters/file-code':
- return ;
-
+ case 'filters/file-code': return ;
+
// case 'filters/graphql':
- case 'filters/graphql':
- return ;
-
+ case 'filters/graphql': return ;
+
// case 'filters/i-cursor':
- case 'filters/i-cursor':
- return ;
-
+ case 'filters/i-cursor': return ;
+
// case 'filters/input':
- case 'filters/input':
- return ;
-
+ case 'filters/input': return ;
+
// case 'filters/lcpt':
- case 'filters/lcpt':
- return ;
-
+ case 'filters/lcpt': return ;
+
// case 'filters/link':
- case 'filters/link':
- return ;
-
+ case 'filters/link': return ;
+
// case 'filters/location':
- case 'filters/location':
- return ;
-
+ case 'filters/location': return ;
+
// case 'filters/memory-load':
- case 'filters/memory-load':
- return ;
-
+ case 'filters/memory-load': return ;
+
// case 'filters/metadata':
- case 'filters/metadata':
- return ;
-
+ case 'filters/metadata': return ;
+
// case 'filters/os':
- case 'filters/os':
- return ;
-
+ case 'filters/os': return ;
+
// case 'filters/perfromance-network-request':
- case 'filters/perfromance-network-request':
- return (
-
- );
-
+ case 'filters/perfromance-network-request': return ;
+
// case 'filters/platform':
- case 'filters/platform':
- return ;
-
+ case 'filters/platform': return ;
+
// case 'filters/referrer':
- case 'filters/referrer':
- return ;
-
+ case 'filters/referrer': return ;
+
// case 'filters/resize':
- case 'filters/resize':
- return ;
-
+ case 'filters/resize': return ;
+
// case 'filters/rev-id':
- case 'filters/rev-id':
- return ;
-
+ case 'filters/rev-id': return ;
+
// case 'filters/screen':
- case 'filters/screen':
- return ;
-
+ case 'filters/screen': return ;
+
// case 'filters/state-action':
- case 'filters/state-action':
- return ;
-
+ case 'filters/state-action': return ;
+
// case 'filters/tag-element':
- case 'filters/tag-element':
- return ;
-
+ case 'filters/tag-element': return ;
+
// case 'filters/ttfb':
- case 'filters/ttfb':
- return ;
-
+ case 'filters/ttfb': return ;
+
// case 'filters/user-alt':
- case 'filters/user-alt':
- return ;
-
+ case 'filters/user-alt': return ;
+
// case 'filters/userid':
- case 'filters/userid':
- return ;
-
+ case 'filters/userid': return ;
+
// case 'filters/view':
- case 'filters/view':
- return ;
-
+ case 'filters/view': return ;
+
// case 'flag-na':
- case 'flag-na':
- return ;
-
+ case 'flag-na': return ;
+
// case 'folder-plus':
- case 'folder-plus':
- return ;
-
- case 'folder2':
- return ;
-
- case 'fullscreen':
- return ;
-
+ case 'folder-plus': return ;
+
+
+ case 'folder2': return ;
+
+
+ case 'fullscreen': return ;
+
// case 'funnel/cpu-fill':
- case 'funnel/cpu-fill':
- return ;
-
+ case 'funnel/cpu-fill': return ;
+
// case 'funnel/cpu':
- case 'funnel/cpu':
- return ;
-
+ case 'funnel/cpu': return ;
+
// case 'funnel/dizzy':
- case 'funnel/dizzy':
- return ;
-
+ case 'funnel/dizzy': return ;
+
// case 'funnel/emoji-angry-fill':
- case 'funnel/emoji-angry-fill':
- return (
-
- );
-
+ case 'funnel/emoji-angry-fill': return ;
+
// case 'funnel/emoji-angry':
- case 'funnel/emoji-angry':
- return ;
-
+ case 'funnel/emoji-angry': return ;
+
// case 'funnel/emoji-dizzy-fill':
- case 'funnel/emoji-dizzy-fill':
- return (
-
- );
-
+ case 'funnel/emoji-dizzy-fill': return ;
+
// case 'funnel/exclamation-circle-fill':
- case 'funnel/exclamation-circle-fill':
- return (
-
- );
-
+ case 'funnel/exclamation-circle-fill': return ;
+
// case 'funnel/exclamation-circle':
- case 'funnel/exclamation-circle':
- return (
-
- );
-
+ case 'funnel/exclamation-circle': return ;
+
// case 'funnel/file-earmark-break-fill':
- case 'funnel/file-earmark-break-fill':
- return (
-
- );
-
+ case 'funnel/file-earmark-break-fill': return ;
+
// case 'funnel/file-earmark-break':
- case 'funnel/file-earmark-break':
- return (
-
- );
-
+ case 'funnel/file-earmark-break': return ;
+
// case 'funnel/file-earmark-minus-fill':
- case 'funnel/file-earmark-minus-fill':
- return (
-
- );
-
+ case 'funnel/file-earmark-minus-fill': return ;
+
// case 'funnel/file-earmark-minus':
- case 'funnel/file-earmark-minus':
- return (
-
- );
-
+ case 'funnel/file-earmark-minus': return ;
+
// case 'funnel/file-medical-alt':
- case 'funnel/file-medical-alt':
- return (
-
- );
-
+ case 'funnel/file-medical-alt': return ;
+
// case 'funnel/file-x':
- case 'funnel/file-x':
- return ;
-
+ case 'funnel/file-x': return ;
+
// case 'funnel/hdd-fill':
- case 'funnel/hdd-fill':
- return ;
-
+ case 'funnel/hdd-fill': return ;
+
// case 'funnel/hourglass-top':
- case 'funnel/hourglass-top':
- return ;
-
+ case 'funnel/hourglass-top': return ;
+
// case 'funnel/image-fill':
- case 'funnel/image-fill':
- return ;
-
+ case 'funnel/image-fill': return ;
+
// case 'funnel/image':
- case 'funnel/image':
- return ;
-
+ case 'funnel/image': return ;
+
// case 'funnel/microchip':
- case 'funnel/microchip':
- return ;
-
+ case 'funnel/microchip': return ;
+
// case 'funnel/mouse':
- case 'funnel/mouse':
- return ;
-
+ case 'funnel/mouse': return ;
+
// case 'funnel/patch-exclamation-fill':
- case 'funnel/patch-exclamation-fill':
- return (
-
- );
-
+ case 'funnel/patch-exclamation-fill': return ;
+
// case 'funnel/sd-card':
- case 'funnel/sd-card':
- return ;
-
+ case 'funnel/sd-card': return ;
+
// case 'funnel-fill':
- case 'funnel-fill':
- return ;
-
- case 'funnel':
- return ;
-
- case 'gear':
- return ;
-
- case 'github':
- return ;
-
+ case 'funnel-fill': return ;
+
+
+ case 'funnel': return ;
+
+
+ case 'gear': return ;
+
+
+ case 'github': return ;
+
// case 'graph-up':
- case 'graph-up':
- return ;
-
+ case 'graph-up': return ;
+
// case 'grid-3x3':
- case 'grid-3x3':
- return ;
-
+ case 'grid-3x3': return ;
+
// case 'grid-check':
- case 'grid-check':
- return ;
-
- case 'grid':
- return ;
-
- case 'hash':
- return ;
-
- case 'headset':
- return ;
-
- case 'history':
- return ;
-
+ case 'grid-check': return ;
+
+
+ case 'grid': return ;
+
+
+ case 'hash': return ;
+
+
+ case 'headset': return ;
+
+
+ case 'history': return ;
+
// case 'ic-errors':
- case 'ic-errors':
- return ;
-
+ case 'ic-errors': return ;
+
// case 'ic-network':
- case 'ic-network':
- return ;
-
+ case 'ic-network': return ;
+
// case 'ic-rage':
- case 'ic-rage':
- return ;
-
+ case 'ic-rage': return ;
+
// case 'ic-resources':
- case 'ic-resources':
- return ;
-
+ case 'ic-resources': return ;
+
// case 'icn_fetch-request':
- case 'icn_fetch-request':
- return ;
-
- case 'icn_referrer':
- return ;
-
- case 'icn_url':
- return ;
-
+ case 'icn_fetch-request': return ;
+
+
+ case 'icn_referrer': return ;
+
+
+ case 'icn_url': return ;
+
// case 'id-card':
- case 'id-card':
- return ;
-
- case 'image':
- return ;
-
+ case 'id-card': return ;
+
+
+ case 'image': return ;
+
// case 'info-circle-fill':
- case 'info-circle-fill':
- return ;
-
+ case 'info-circle-fill': return ;
+
// case 'info-circle':
- case 'info-circle':
- return ;
-
+ case 'info-circle': return ;
+
// case 'info-square':
- case 'info-square':
- return ;
-
- case 'info':
- return ;
-
+ case 'info-square': return ;
+
+
+ case 'info': return ;
+
// case 'input-hesitation':
- case 'input-hesitation':
- return ;
-
- case 'inspect':
- return ;
-
+ case 'input-hesitation': return ;
+
+
+ case 'inspect': return ;
+
// case 'integrations/assist':
- case 'integrations/assist':
- return ;
-
+ case 'integrations/assist': return ;
+
// case 'integrations/bugsnag-text':
- case 'integrations/bugsnag-text':
- return (
-
- );
-
+ case 'integrations/bugsnag-text': return ;
+
// case 'integrations/bugsnag':
- case 'integrations/bugsnag':
- return ;
-
+ case 'integrations/bugsnag': return ;
+
// case 'integrations/cloudwatch-text':
- case 'integrations/cloudwatch-text':
- return (
-
- );
-
+ case 'integrations/cloudwatch-text': return ;
+
// case 'integrations/cloudwatch':
- case 'integrations/cloudwatch':
- return (
-
- );
-
+ case 'integrations/cloudwatch': return ;
+
// case 'integrations/datadog':
- case 'integrations/datadog':
- return ;
-
+ case 'integrations/datadog': return ;
+
// case 'integrations/dynatrace':
- case 'integrations/dynatrace':
- return (
-
- );
-
+ case 'integrations/dynatrace': return ;
+
// case 'integrations/elasticsearch-text':
- case 'integrations/elasticsearch-text':
- return (
-
- );
-
+ case 'integrations/elasticsearch-text': return ;
+
// case 'integrations/elasticsearch':
- case 'integrations/elasticsearch':
- return (
-
- );
-
+ case 'integrations/elasticsearch': return ;
+
// case 'integrations/github':
- case 'integrations/github':
- return ;
-
+ case 'integrations/github': return ;
+
// case 'integrations/graphql':
- case 'integrations/graphql':
- return ;
-
+ case 'integrations/graphql': return ;
+
// case 'integrations/jira-text':
- case 'integrations/jira-text':
- return (
-
- );
-
+ case 'integrations/jira-text': return ;
+
// case 'integrations/jira':
- case 'integrations/jira':
- return ;
-
+ case 'integrations/jira': return ;
+
// case 'integrations/mobx':
- case 'integrations/mobx':
- return ;
-
+ case 'integrations/mobx': return ;
+
// case 'integrations/newrelic-text':
- case 'integrations/newrelic-text':
- return (
-
- );
-
+ case 'integrations/newrelic-text': return ;
+
// case 'integrations/newrelic':
- case 'integrations/newrelic':
- return (
-
- );
-
+ case 'integrations/newrelic': return ;
+
// case 'integrations/ngrx':
- case 'integrations/ngrx':
- return ;
-
+ case 'integrations/ngrx': return ;
+
// case 'integrations/openreplay-text':
- case 'integrations/openreplay-text':
- return (
-
- );
-
+ case 'integrations/openreplay-text': return ;
+
// case 'integrations/openreplay':
- case 'integrations/openreplay':
- return (
-
- );
-
+ case 'integrations/openreplay': return ;
+
// case 'integrations/redux':
- case 'integrations/redux':
- return ;
-
+ case 'integrations/redux': return ;
+
// case 'integrations/rollbar-text':
- case 'integrations/rollbar-text':
- return (
-
- );
-
+ case 'integrations/rollbar-text': return ;
+
// case 'integrations/rollbar':
- case 'integrations/rollbar':
- return ;
-
+ case 'integrations/rollbar': return ;
+
// case 'integrations/segment':
- case 'integrations/segment':
- return ;
-
+ case 'integrations/segment': return ;
+
// case 'integrations/sentry-text':
- case 'integrations/sentry-text':
- return (
-
- );
-
+ case 'integrations/sentry-text': return ;
+
// case 'integrations/sentry':
- case 'integrations/sentry':
- return ;
-
+ case 'integrations/sentry': return ;
+
// case 'integrations/slack-bw':
- case 'integrations/slack-bw':
- return (
-
- );
-
+ case 'integrations/slack-bw': return ;
+
// case 'integrations/slack':
- case 'integrations/slack':
- return ;
-
+ case 'integrations/slack': return ;
+
// case 'integrations/stackdriver':
- case 'integrations/stackdriver':
- return (
-
- );
-
+ case 'integrations/stackdriver': return ;
+
// case 'integrations/sumologic-text':
- case 'integrations/sumologic-text':
- return (
-
- );
-
+ case 'integrations/sumologic-text': return ;
+
// case 'integrations/sumologic':
- case 'integrations/sumologic':
- return (
-
- );
-
+ case 'integrations/sumologic': return ;
+
// case 'integrations/teams-white':
- case 'integrations/teams-white':
- return (
-
- );
-
+ case 'integrations/teams-white': return ;
+
// case 'integrations/teams':
- case 'integrations/teams':
- return ;
-
+ case 'integrations/teams': return ;
+
// case 'integrations/vuejs':
- case 'integrations/vuejs':
- return ;
-
+ case 'integrations/vuejs': return ;
+
// case 'integrations/zustand':
- case 'integrations/zustand':
- return ;
-
+ case 'integrations/zustand': return ;
+
// case 'journal-code':
- case 'journal-code':
- return ;
-
- case 'key':
- return ;
-
- case 'keyboard':
- return ;
-
+ case 'journal-code': return ;
+
+
+ case 'key': return ;
+
+
+ case 'keyboard': return ;
+
// case 'layers-half':
- case 'layers-half':
- return ;
-
+ case 'layers-half': return ;
+
// case 'lightbulb-on':
- case 'lightbulb-on':
- return ;
-
- case 'lightbulb':
- return ;
-
+ case 'lightbulb-on': return ;
+
+
+ case 'lightbulb': return ;
+
// case 'link-45deg':
- case 'link-45deg':
- return ;
-
+ case 'link-45deg': return ;
+
// case 'list-alt':
- case 'list-alt':
- return ;
-
+ case 'list-alt': return ;
+
// case 'list-ul':
- case 'list-ul':
- return ;
-
- case 'list':
- return
;
-
+ case 'list-ul': return ;
+
+
+ case 'list': return
;
+
// case 'low-disc-space':
- case 'low-disc-space':
- return ;
-
- case 'magic':
- return ;
-
+ case 'low-disc-space': return ;
+
+
+ case 'magic': return ;
+
// case 'map-marker-alt':
- case 'map-marker-alt':
- return ;
-
+ case 'map-marker-alt': return ;
+
// case 'memory-ios':
- case 'memory-ios':
- return ;
-
- case 'memory':
- return ;
-
+ case 'memory-ios': return ;
+
+
+ case 'memory': return ;
+
+ // case 'metadata-more':
+ case 'metadata-more': return ;
+
// case 'mic-mute':
- case 'mic-mute':
- return ;
-
- case 'mic':
- return ;
-
- case 'minus':
- return ;
-
- case 'mobile':
- return ;
-
+ case 'mic-mute': return ;
+
+
+ case 'mic': return ;
+
+
+ case 'minus': return ;
+
+
+ case 'mobile': return ;
+
// case 'mouse-alt':
- case 'mouse-alt':
- return ;
-
+ case 'mouse-alt': return ;
+
// case 'mouse-pointer-click':
- case 'mouse-pointer-click':
- return ;
-
- case 'network':
- return ;
-
- case 'next1':
- return ;
-
+ case 'mouse-pointer-click': return ;
+
+
+ case 'network': return ;
+
+
+ case 'next1': return ;
+
// case 'no-dashboard':
- case 'no-dashboard':
- return ;
-
+ case 'no-dashboard': return ;
+
// case 'no-metrics-chart':
- case 'no-metrics-chart':
- return ;
-
+ case 'no-metrics-chart': return ;
+
// case 'no-metrics':
- case 'no-metrics':
- return ;
-
+ case 'no-metrics': return ;
+
// case 'no-recordings':
- case 'no-recordings':
- return ;
-
- case 'orIcn':
- return ;
-
- case 'orSpot':
- return ;
-
- case 'orspotOutline':
- return ;
-
+ case 'no-recordings': return ;
+
+
+ case 'orIcn': return ;
+
+
+ case 'orSpot': return ;
+
+
+ case 'orspotOutline': return ;
+
// case 'os/android':
- case 'os/android':
- return ;
-
+ case 'os/android': return ;
+
// case 'os/chrome_os':
- case 'os/chrome_os':
- return ;
-
+ case 'os/chrome_os': return ;
+
// case 'os/fedora':
- case 'os/fedora':
- return ;
-
+ case 'os/fedora': return ;
+
// case 'os/ios':
- case 'os/ios':
- return ;
-
+ case 'os/ios': return ;
+
// case 'os/linux':
- case 'os/linux':
- return ;
-
+ case 'os/linux': return ;
+
// case 'os/mac_os_x':
- case 'os/mac_os_x':
- return ;
-
+ case 'os/mac_os_x': return ;
+
// case 'os/other':
- case 'os/other':
- return ;
-
+ case 'os/other': return ;
+
// case 'os/ubuntu':
- case 'os/ubuntu':
- return ;
-
+ case 'os/ubuntu': return ;
+
// case 'os/windows':
- case 'os/windows':
- return ;
-
- case 'os':
- return ;
-
+ case 'os/windows': return ;
+
+
+ case 'os': return ;
+
// case 'pause-circle-fill':
- case 'pause-circle-fill':
- return ;
-
+ case 'pause-circle-fill': return ;
+
// case 'pause-fill':
- case 'pause-fill':
- return ;
-
- case 'pause':
- return ;
-
+ case 'pause-fill': return ;
+
+
+ case 'pause': return ;
+
// case 'pdf-download':
- case 'pdf-download':
- return ;
-
+ case 'pdf-download': return ;
+
// case 'pencil-stop':
- case 'pencil-stop':
- return ;
-
- case 'pencil':
- return ;
-
- case 'people':
- return ;
-
- case 'percent':
- return ;
-
+ case 'pencil-stop': return ;
+
+
+ case 'pencil': return ;
+
+
+ case 'people': return ;
+
+
+ case 'percent': return ;
+
// case 'performance-icon':
- case 'performance-icon':
- return ;
-
+ case 'performance-icon': return ;
+
// case 'person-border':
- case 'person-border':
- return ;
-
+ case 'person-border': return ;
+
// case 'person-fill':
- case 'person-fill':
- return ;
-
- case 'person':
- return ;
-
+ case 'person-fill': return ;
+
+
+ case 'person': return ;
+
// case 'pie-chart-fill':
- case 'pie-chart-fill':
- return ;
-
+ case 'pie-chart-fill': return ;
+
// case 'pin-fill':
- case 'pin-fill':
- return ;
-
+ case 'pin-fill': return ;
+
// case 'play-circle-bold':
- case 'play-circle-bold':
- return ;
-
+ case 'play-circle-bold': return ;
+
// case 'play-circle-light':
- case 'play-circle-light':
- return ;
-
+ case 'play-circle-light': return ;
+
// case 'play-circle':
- case 'play-circle':
- return ;
-
+ case 'play-circle': return ;
+
// case 'play-fill-new':
- case 'play-fill-new':
- return ;
-
+ case 'play-fill-new': return ;
+
// case 'play-fill':
- case 'play-fill':
- return ;
-
+ case 'play-fill': return ;
+
// case 'play-hover':
- case 'play-hover':
- return ;
-
- case 'play':
- return ;
-
- case 'plug':
- return ;
-
+ case 'play-hover': return ;
+
+
+ case 'play': return ;
+
+
+ case 'plug': return ;
+
// case 'plus-circle':
case 'plus-circle': return ;
@@ -2294,208 +1770,182 @@ const SVG = (props: Props) => {
case 'pwright': return ;
// case 'question-circle':
- case 'question-circle':
- return ;
-
+ case 'question-circle': return ;
+
// case 'question-lg':
- case 'question-lg':
- return ;
-
- case 'quotes':
- return ;
-
+ case 'question-lg': return ;
+
+
+ case 'quotes': return ;
+
// case 'record-circle-fill':
- case 'record-circle-fill':
- return ;
-
+ case 'record-circle-fill': return ;
+
// case 'record-circle':
- case 'record-circle':
- return ;
-
- case 'record2':
- return ;
-
- case 'redo':
- return ;
-
- case 'redux':
- return ;
-
- case 'referrer':
- return ;
-
+ case 'record-circle': return ;
+
+
+ case 'record2': return ;
+
+
+ case 'redo': return ;
+
+
+ case 'redux': return ;
+
+
+ case 'referrer': return ;
+
// case 'remote-control':
- case 'remote-control':
- return ;
-
+ case 'remote-control': return ;
+
// case 'resources-icon':
- case 'resources-icon':
- return ;
-
- case 'safe':
- return ;
-
- case 'sandglass':
- return ;
-
- case 'search':
- return ;
-
- case 'server':
- return ;
-
+ case 'resources-icon': return ;
+
+
+ case 'safe': return ;
+
+
+ case 'sandglass': return ;
+
+
+ case 'search': return ;
+
+
+ case 'server': return ;
+
// case 'share-alt':
- case 'share-alt':
- return ;
-
+ case 'share-alt': return ;
+
// case 'shield-lock':
- case 'shield-lock':
- return ;
-
- case 'side_menu_closed':
- return ;
-
- case 'side_menu_open':
- return ;
-
+ case 'shield-lock': return ;
+
+
+ case 'side_menu_closed': return ;
+
+
+ case 'side_menu_open': return ;
+
// case 'signpost-split':
- case 'signpost-split':
- return ;
-
- case 'signup':
- return ;
-
- case 'slack':
- return ;
-
+ case 'signpost-split': return ;
+
+
+ case 'signup': return ;
+
+
+ case 'slack': return ;
+
// case 'slash-circle':
- case 'slash-circle':
- return ;
-
- case 'sleep':
- return ;
-
- case 'sliders':
- return ;
-
+ case 'slash-circle': return ;
+
+
+ case 'sleep': return ;
+
+
+ case 'sliders': return ;
+
// case 'social/slack':
- case 'social/slack':
- return ;
-
+ case 'social/slack': return ;
+
// case 'social/trello':
- case 'social/trello':
- return ;
-
- case 'sparkles':
- return ;
-
- case 'speedometer2':
- return ;
-
- case 'spinner':
- return ;
-
+ case 'social/trello': return ;
+
+
+ case 'sparkles': return ;
+
+
+ case 'speedometer2': return ;
+
+
+ case 'spinner': return ;
+
// case 'square-mouse-pointer':
- case 'square-mouse-pointer':
- return ;
-
- case 'star':
- return ;
-
+ case 'square-mouse-pointer': return ;
+
+
+ case 'star': return ;
+
// case 'step-forward':
- case 'step-forward':
- return ;
-
- case 'stickies':
- return ;
-
+ case 'step-forward': return ;
+
+
+ case 'stickies': return ;
+
// case 'stop-record-circle':
- case 'stop-record-circle':
- return ;
-
- case 'stopwatch':
- return ;
-
- case 'store':
- return ;
-
+ case 'stop-record-circle': return ;
+
+
+ case 'stopwatch': return ;
+
+
+ case 'store': return ;
+
// case 'sync-alt':
- case 'sync-alt':
- return ;
-
- case 'table':
- return ;
-
- case 'tags':
- return ;
-
- case 'terminal':
- return ;
-
+ case 'sync-alt': return ;
+
+
+ case 'table': return ;
+
+
+ case 'tags': return ;
+
+
+ case 'terminal': return ;
+
// case 'thermometer-sun':
- case 'thermometer-sun':
- return ;
-
- case 'toggles':
- return ;
-
- case 'tools':
- return ;
-
- case 'trash':
- return ;
-
- case 'turtle':
- return ;
-
+ case 'thermometer-sun': return ;
+
+
+ case 'toggles': return ;
+
+
+ case 'tools': return ;
+
+
+ case 'trash': return ;
+
+
+ case 'turtle': return ;
+
// case 'user-alt':
- case 'user-alt':
- return ;
-
+ case 'user-alt': return ;
+
// case 'user-circle':
- case 'user-circle':
- return ;
-
+ case 'user-circle': return ;
+
// case 'user-friends':
- case 'user-friends':
- return ;
-
+ case 'user-friends': return ;
+
// case 'user-journey':
- case 'user-journey':
- return ;
-
+ case 'user-journey': return ;
+
// case 'user-switch':
- case 'user-switch':
- return ;
-
- case 'users':
- return ;
-
+ case 'user-switch': return ;
+
+
+ case 'users': return ;
+
// case 'vendors/graphql':
- case 'vendors/graphql':
- return ;
-
+ case 'vendors/graphql': return ;
+
// case 'web-vitals':
- case 'web-vitals':
- return ;
-
- case 'wifi':
- return ;
-
+ case 'web-vitals': return ;
+
+
+ case 'wifi': return ;
+
// case 'window-x':
- case 'window-x':
- return ;
-
- case 'window':
- return ;
-
+ case 'window-x': return ;
+
+
+ case 'window': return ;
+
// case 'zoom-in':
- case 'zoom-in':
- return ;
-
- default:
- console.trace('Unknown icon name ' + name);
- }
-};
+ case 'zoom-in': return ;
+
+default:
+ console.trace('Unknown icon name ' + name);
+ }
+}
SVG.displayName = 'SVG';
export default SVG;
diff --git a/frontend/app/svg/icons/metadata-more.svg b/frontend/app/svg/icons/metadata-more.svg
new file mode 100644
index 000000000..7b285596d
--- /dev/null
+++ b/frontend/app/svg/icons/metadata-more.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/scripts/icons.js b/frontend/scripts/icons.js
index c47845761..b1ffd03c1 100644
--- a/frontend/scripts/icons.js
+++ b/frontend/scripts/icons.js
@@ -92,15 +92,14 @@ icons.forEach((icon) => {
: optimize(svg, plugins(canOptimize));
fs.writeFileSync(
path,
- `
-/* Auto-generated, do not edit */
+ `/* Auto-generated, do not edit */
import React from 'react';
interface Props {
- size?: number | string;
- width?: number | string;
- height?: number | string;
- fill?: string;
+ size?: number | string;
+ width?: number | string;
+ height?: number | string;
+ fill?: string;
}
function ${titleCase(fileName)}(props: Props) {