diff --git a/frontend/app/components/ui/Icons/activity.tsx b/frontend/app/components/ui/Icons/activity.tsx new file mode 100644 index 000000000..284c532a2 --- /dev/null +++ b/frontend/app/components/ui/Icons/activity.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Activity(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Activity; diff --git a/frontend/app/components/ui/Icons/alarm_clock.tsx b/frontend/app/components/ui/Icons/alarm_clock.tsx new file mode 100644 index 000000000..de85de23f --- /dev/null +++ b/frontend/app/components/ui/Icons/alarm_clock.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Alarm_clock(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Alarm_clock; diff --git a/frontend/app/components/ui/Icons/alarm_plus.tsx b/frontend/app/components/ui/Icons/alarm_plus.tsx new file mode 100644 index 000000000..65d2379a3 --- /dev/null +++ b/frontend/app/components/ui/Icons/alarm_plus.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Alarm_plus(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Alarm_plus; diff --git a/frontend/app/components/ui/Icons/all_sessions.tsx b/frontend/app/components/ui/Icons/all_sessions.tsx new file mode 100644 index 000000000..fbb96e0f3 --- /dev/null +++ b/frontend/app/components/ui/Icons/all_sessions.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function All_sessions(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default All_sessions; diff --git a/frontend/app/components/ui/Icons/analytics.tsx b/frontend/app/components/ui/Icons/analytics.tsx new file mode 100644 index 000000000..f2eb0f754 --- /dev/null +++ b/frontend/app/components/ui/Icons/analytics.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Analytics(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Analytics; diff --git a/frontend/app/components/ui/Icons/anchor.tsx b/frontend/app/components/ui/Icons/anchor.tsx new file mode 100644 index 000000000..81beacaba --- /dev/null +++ b/frontend/app/components/ui/Icons/anchor.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Anchor(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Anchor; diff --git a/frontend/app/components/ui/Icons/arrow_alt_square_right.tsx b/frontend/app/components/ui/Icons/arrow_alt_square_right.tsx new file mode 100644 index 000000000..b52ed49f2 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_alt_square_right.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_alt_square_right(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_alt_square_right; diff --git a/frontend/app/components/ui/Icons/arrow_bar_left.tsx b/frontend/app/components/ui/Icons/arrow_bar_left.tsx new file mode 100644 index 000000000..995bac445 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_bar_left.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_bar_left(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_bar_left; diff --git a/frontend/app/components/ui/Icons/arrow_clockwise.tsx b/frontend/app/components/ui/Icons/arrow_clockwise.tsx new file mode 100644 index 000000000..1c4be6dfe --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_clockwise.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_clockwise(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_clockwise; diff --git a/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx b/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx new file mode 100644 index 000000000..5e9632d5d --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_counterclockwise.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_counterclockwise(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_counterclockwise; diff --git a/frontend/app/components/ui/Icons/arrow_down.tsx b/frontend/app/components/ui/Icons/arrow_down.tsx new file mode 100644 index 000000000..443cb095d --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_down.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_down(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_down; diff --git a/frontend/app/components/ui/Icons/arrow_down_short.tsx b/frontend/app/components/ui/Icons/arrow_down_short.tsx new file mode 100644 index 000000000..d6cb71ebe --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_down_short.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_down_short(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_down_short; diff --git a/frontend/app/components/ui/Icons/arrow_down_up.tsx b/frontend/app/components/ui/Icons/arrow_down_up.tsx new file mode 100644 index 000000000..73f29746d --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_down_up.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_down_up(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_down_up; diff --git a/frontend/app/components/ui/Icons/arrow_repeat.tsx b/frontend/app/components/ui/Icons/arrow_repeat.tsx new file mode 100644 index 000000000..4aefab876 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_repeat.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_repeat(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_repeat; diff --git a/frontend/app/components/ui/Icons/arrow_right_short.tsx b/frontend/app/components/ui/Icons/arrow_right_short.tsx new file mode 100644 index 000000000..1677c021b --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_right_short.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_right_short(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_right_short; diff --git a/frontend/app/components/ui/Icons/arrow_square_left.tsx b/frontend/app/components/ui/Icons/arrow_square_left.tsx new file mode 100644 index 000000000..4546eb546 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_square_left.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_square_left(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_square_left; diff --git a/frontend/app/components/ui/Icons/arrow_square_right.tsx b/frontend/app/components/ui/Icons/arrow_square_right.tsx new file mode 100644 index 000000000..3e53c9f96 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_square_right.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_square_right(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_square_right; diff --git a/frontend/app/components/ui/Icons/arrow_up.tsx b/frontend/app/components/ui/Icons/arrow_up.tsx new file mode 100644 index 000000000..74b7f85b9 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_up.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_up(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_up; diff --git a/frontend/app/components/ui/Icons/arrow_up_short.tsx b/frontend/app/components/ui/Icons/arrow_up_short.tsx new file mode 100644 index 000000000..4d8ca2b9e --- /dev/null +++ b/frontend/app/components/ui/Icons/arrow_up_short.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrow_up_short(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrow_up_short; diff --git a/frontend/app/components/ui/Icons/arrows_angle_extend.tsx b/frontend/app/components/ui/Icons/arrows_angle_extend.tsx new file mode 100644 index 000000000..17dc87258 --- /dev/null +++ b/frontend/app/components/ui/Icons/arrows_angle_extend.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Arrows_angle_extend(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Arrows_angle_extend; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx new file mode 100644 index 000000000..9a4f0e14a --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar1.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar1(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar1; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx new file mode 100644 index 000000000..46958b99e --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar10.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar10(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar10; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx new file mode 100644 index 000000000..e0122cd4c --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar11.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar11(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar11; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx new file mode 100644 index 000000000..8752891bd --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar12.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar12(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar12; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx new file mode 100644 index 000000000..26020432a --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar13.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar13(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar13; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx new file mode 100644 index 000000000..83bff25be --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar14.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar14(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar14; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx new file mode 100644 index 000000000..520d1080e --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar15.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar15(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar15; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx new file mode 100644 index 000000000..8c1f62753 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar16.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar16(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar16; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx new file mode 100644 index 000000000..d62c60add --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar17.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar17(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar17; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx new file mode 100644 index 000000000..a300f6218 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar18.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar18(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar18; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx new file mode 100644 index 000000000..e85728e17 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar19.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar19(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar19; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx new file mode 100644 index 000000000..a11bf7aad --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar2.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar2(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar2; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx new file mode 100644 index 000000000..291aa3fe2 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar20.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar20(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar20; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx new file mode 100644 index 000000000..b8834192b --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar21.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar21(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar21; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx new file mode 100644 index 000000000..30f8b065a --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar22.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar22(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar22; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx new file mode 100644 index 000000000..f03b0c5d6 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar23.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar23(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar23; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx new file mode 100644 index 000000000..73eebec49 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar3.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar3(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar3; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx new file mode 100644 index 000000000..81a24b13a --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar4.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar4(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar4; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx new file mode 100644 index 000000000..16edb47ed --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar5.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar5(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar5; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx new file mode 100644 index 000000000..a9aa826e8 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar6.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar6(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar6; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx new file mode 100644 index 000000000..1be5b3b98 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar7.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar7(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar7; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx new file mode 100644 index 000000000..e48cc96b5 --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar8.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar8(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar8; diff --git a/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx b/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx new file mode 100644 index 000000000..e91b1422e --- /dev/null +++ b/frontend/app/components/ui/Icons/avatar_icn_avatar9.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Avatar_icn_avatar9(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Avatar_icn_avatar9; diff --git a/frontend/app/components/ui/Icons/ban.tsx b/frontend/app/components/ui/Icons/ban.tsx new file mode 100644 index 000000000..be4c9549e --- /dev/null +++ b/frontend/app/components/ui/Icons/ban.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Ban(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Ban; diff --git a/frontend/app/components/ui/Icons/bar_chart_line.tsx b/frontend/app/components/ui/Icons/bar_chart_line.tsx new file mode 100644 index 000000000..ba1c40449 --- /dev/null +++ b/frontend/app/components/ui/Icons/bar_chart_line.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bar_chart_line(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bar_chart_line; diff --git a/frontend/app/components/ui/Icons/bar_pencil.tsx b/frontend/app/components/ui/Icons/bar_pencil.tsx new file mode 100644 index 000000000..531dac47a --- /dev/null +++ b/frontend/app/components/ui/Icons/bar_pencil.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bar_pencil(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bar_pencil; diff --git a/frontend/app/components/ui/Icons/battery.tsx b/frontend/app/components/ui/Icons/battery.tsx new file mode 100644 index 000000000..a6f289cdb --- /dev/null +++ b/frontend/app/components/ui/Icons/battery.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Battery(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Battery; diff --git a/frontend/app/components/ui/Icons/battery_charging.tsx b/frontend/app/components/ui/Icons/battery_charging.tsx new file mode 100644 index 000000000..a2b243301 --- /dev/null +++ b/frontend/app/components/ui/Icons/battery_charging.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Battery_charging(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Battery_charging; diff --git a/frontend/app/components/ui/Icons/bell.tsx b/frontend/app/components/ui/Icons/bell.tsx new file mode 100644 index 000000000..89e5284d2 --- /dev/null +++ b/frontend/app/components/ui/Icons/bell.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bell(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bell; diff --git a/frontend/app/components/ui/Icons/bell_fill.tsx b/frontend/app/components/ui/Icons/bell_fill.tsx new file mode 100644 index 000000000..925cbe1d8 --- /dev/null +++ b/frontend/app/components/ui/Icons/bell_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bell_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bell_fill; diff --git a/frontend/app/components/ui/Icons/bell_plus.tsx b/frontend/app/components/ui/Icons/bell_plus.tsx new file mode 100644 index 000000000..88bc8a703 --- /dev/null +++ b/frontend/app/components/ui/Icons/bell_plus.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bell_plus(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bell_plus; diff --git a/frontend/app/components/ui/Icons/bell_slash.tsx b/frontend/app/components/ui/Icons/bell_slash.tsx new file mode 100644 index 000000000..4bce0b466 --- /dev/null +++ b/frontend/app/components/ui/Icons/bell_slash.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bell_slash(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bell_slash; diff --git a/frontend/app/components/ui/Icons/binoculars.tsx b/frontend/app/components/ui/Icons/binoculars.tsx new file mode 100644 index 000000000..9b2fc6d61 --- /dev/null +++ b/frontend/app/components/ui/Icons/binoculars.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Binoculars(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Binoculars; diff --git a/frontend/app/components/ui/Icons/book.tsx b/frontend/app/components/ui/Icons/book.tsx new file mode 100644 index 000000000..fa209529e --- /dev/null +++ b/frontend/app/components/ui/Icons/book.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Book(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Book; diff --git a/frontend/app/components/ui/Icons/book_doc.tsx b/frontend/app/components/ui/Icons/book_doc.tsx new file mode 100644 index 000000000..db621d469 --- /dev/null +++ b/frontend/app/components/ui/Icons/book_doc.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Book_doc(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Book_doc; diff --git a/frontend/app/components/ui/Icons/bookmark.tsx b/frontend/app/components/ui/Icons/bookmark.tsx new file mode 100644 index 000000000..9e95ba056 --- /dev/null +++ b/frontend/app/components/ui/Icons/bookmark.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bookmark(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bookmark; diff --git a/frontend/app/components/ui/Icons/broadcast.tsx b/frontend/app/components/ui/Icons/broadcast.tsx new file mode 100644 index 000000000..f09c06dd8 --- /dev/null +++ b/frontend/app/components/ui/Icons/broadcast.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Broadcast(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Broadcast; diff --git a/frontend/app/components/ui/Icons/browser_browser.tsx b/frontend/app/components/ui/Icons/browser_browser.tsx new file mode 100644 index 000000000..47998949b --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_browser.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_browser(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_browser; diff --git a/frontend/app/components/ui/Icons/browser_chrome.tsx b/frontend/app/components/ui/Icons/browser_chrome.tsx new file mode 100644 index 000000000..4f2b91ca9 --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_chrome.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_chrome(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_chrome; diff --git a/frontend/app/components/ui/Icons/browser_edge.tsx b/frontend/app/components/ui/Icons/browser_edge.tsx new file mode 100644 index 000000000..b7b1cfbae --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_edge.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_edge(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_edge; diff --git a/frontend/app/components/ui/Icons/browser_electron.tsx b/frontend/app/components/ui/Icons/browser_electron.tsx new file mode 100644 index 000000000..96cc430d3 --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_electron.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_electron(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_electron; diff --git a/frontend/app/components/ui/Icons/browser_facebook.tsx b/frontend/app/components/ui/Icons/browser_facebook.tsx new file mode 100644 index 000000000..08046ff53 --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_facebook.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_facebook(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_facebook; diff --git a/frontend/app/components/ui/Icons/browser_firefox.tsx b/frontend/app/components/ui/Icons/browser_firefox.tsx new file mode 100644 index 000000000..a71201c23 --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_firefox.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_firefox(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_firefox; diff --git a/frontend/app/components/ui/Icons/browser_ie.tsx b/frontend/app/components/ui/Icons/browser_ie.tsx new file mode 100644 index 000000000..bb0fd834c --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_ie.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_ie(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_ie; diff --git a/frontend/app/components/ui/Icons/browser_opera.tsx b/frontend/app/components/ui/Icons/browser_opera.tsx new file mode 100644 index 000000000..e0278c096 --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_opera.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_opera(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_opera; diff --git a/frontend/app/components/ui/Icons/browser_safari.tsx b/frontend/app/components/ui/Icons/browser_safari.tsx new file mode 100644 index 000000000..269aa38aa --- /dev/null +++ b/frontend/app/components/ui/Icons/browser_safari.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Browser_safari(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Browser_safari; diff --git a/frontend/app/components/ui/Icons/buildings.tsx b/frontend/app/components/ui/Icons/buildings.tsx new file mode 100644 index 000000000..48c630128 --- /dev/null +++ b/frontend/app/components/ui/Icons/buildings.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Buildings(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Buildings; diff --git a/frontend/app/components/ui/Icons/bullhorn.tsx b/frontend/app/components/ui/Icons/bullhorn.tsx new file mode 100644 index 000000000..cd3584329 --- /dev/null +++ b/frontend/app/components/ui/Icons/bullhorn.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Bullhorn(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Bullhorn; diff --git a/frontend/app/components/ui/Icons/business_time.tsx b/frontend/app/components/ui/Icons/business_time.tsx new file mode 100644 index 000000000..c2430418d --- /dev/null +++ b/frontend/app/components/ui/Icons/business_time.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Business_time(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Business_time; diff --git a/frontend/app/components/ui/Icons/calendar.tsx b/frontend/app/components/ui/Icons/calendar.tsx new file mode 100644 index 000000000..7dc7244f2 --- /dev/null +++ b/frontend/app/components/ui/Icons/calendar.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Calendar(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Calendar; diff --git a/frontend/app/components/ui/Icons/calendar_alt.tsx b/frontend/app/components/ui/Icons/calendar_alt.tsx new file mode 100644 index 000000000..407011670 --- /dev/null +++ b/frontend/app/components/ui/Icons/calendar_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Calendar_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Calendar_alt; diff --git a/frontend/app/components/ui/Icons/calendar_check.tsx b/frontend/app/components/ui/Icons/calendar_check.tsx new file mode 100644 index 000000000..e89731685 --- /dev/null +++ b/frontend/app/components/ui/Icons/calendar_check.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Calendar_check(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Calendar_check; diff --git a/frontend/app/components/ui/Icons/calendar_day.tsx b/frontend/app/components/ui/Icons/calendar_day.tsx new file mode 100644 index 000000000..6f4cdeaa5 --- /dev/null +++ b/frontend/app/components/ui/Icons/calendar_day.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Calendar_day(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Calendar_day; diff --git a/frontend/app/components/ui/Icons/call.tsx b/frontend/app/components/ui/Icons/call.tsx new file mode 100644 index 000000000..e46f235a8 --- /dev/null +++ b/frontend/app/components/ui/Icons/call.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Call(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Call; diff --git a/frontend/app/components/ui/Icons/camera.tsx b/frontend/app/components/ui/Icons/camera.tsx new file mode 100644 index 000000000..838d01dfe --- /dev/null +++ b/frontend/app/components/ui/Icons/camera.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Camera(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Camera; diff --git a/frontend/app/components/ui/Icons/camera_alt.tsx b/frontend/app/components/ui/Icons/camera_alt.tsx new file mode 100644 index 000000000..9368cf4a0 --- /dev/null +++ b/frontend/app/components/ui/Icons/camera_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Camera_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Camera_alt; diff --git a/frontend/app/components/ui/Icons/camera_video.tsx b/frontend/app/components/ui/Icons/camera_video.tsx new file mode 100644 index 000000000..8fc0e3c48 --- /dev/null +++ b/frontend/app/components/ui/Icons/camera_video.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Camera_video(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Camera_video; diff --git a/frontend/app/components/ui/Icons/camera_video_off.tsx b/frontend/app/components/ui/Icons/camera_video_off.tsx new file mode 100644 index 000000000..2aab33a39 --- /dev/null +++ b/frontend/app/components/ui/Icons/camera_video_off.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Camera_video_off(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Camera_video_off; diff --git a/frontend/app/components/ui/Icons/card_checklist.tsx b/frontend/app/components/ui/Icons/card_checklist.tsx new file mode 100644 index 000000000..f797fbde3 --- /dev/null +++ b/frontend/app/components/ui/Icons/card_checklist.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Card_checklist(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Card_checklist; diff --git a/frontend/app/components/ui/Icons/card_list.tsx b/frontend/app/components/ui/Icons/card_list.tsx new file mode 100644 index 000000000..7f7505f86 --- /dev/null +++ b/frontend/app/components/ui/Icons/card_list.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Card_list(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Card_list; diff --git a/frontend/app/components/ui/Icons/card_text.tsx b/frontend/app/components/ui/Icons/card_text.tsx new file mode 100644 index 000000000..0bc44460e --- /dev/null +++ b/frontend/app/components/ui/Icons/card_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Card_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Card_text; diff --git a/frontend/app/components/ui/Icons/caret_down_fill.tsx b/frontend/app/components/ui/Icons/caret_down_fill.tsx new file mode 100644 index 000000000..f8280ff18 --- /dev/null +++ b/frontend/app/components/ui/Icons/caret_down_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Caret_down_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Caret_down_fill; diff --git a/frontend/app/components/ui/Icons/caret_left_fill.tsx b/frontend/app/components/ui/Icons/caret_left_fill.tsx new file mode 100644 index 000000000..7bb2b05b7 --- /dev/null +++ b/frontend/app/components/ui/Icons/caret_left_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Caret_left_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Caret_left_fill; diff --git a/frontend/app/components/ui/Icons/caret_right_fill.tsx b/frontend/app/components/ui/Icons/caret_right_fill.tsx new file mode 100644 index 000000000..57430ae78 --- /dev/null +++ b/frontend/app/components/ui/Icons/caret_right_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Caret_right_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Caret_right_fill; diff --git a/frontend/app/components/ui/Icons/caret_up_fill.tsx b/frontend/app/components/ui/Icons/caret_up_fill.tsx new file mode 100644 index 000000000..03cef67e2 --- /dev/null +++ b/frontend/app/components/ui/Icons/caret_up_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Caret_up_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Caret_up_fill; diff --git a/frontend/app/components/ui/Icons/chat_dots.tsx b/frontend/app/components/ui/Icons/chat_dots.tsx new file mode 100644 index 000000000..ea1ec290d --- /dev/null +++ b/frontend/app/components/ui/Icons/chat_dots.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chat_dots(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chat_dots; diff --git a/frontend/app/components/ui/Icons/chat_left_text.tsx b/frontend/app/components/ui/Icons/chat_left_text.tsx new file mode 100644 index 000000000..6ef09a1ad --- /dev/null +++ b/frontend/app/components/ui/Icons/chat_left_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chat_left_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chat_left_text; diff --git a/frontend/app/components/ui/Icons/chat_right_text.tsx b/frontend/app/components/ui/Icons/chat_right_text.tsx new file mode 100644 index 000000000..2b66ec23e --- /dev/null +++ b/frontend/app/components/ui/Icons/chat_right_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chat_right_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chat_right_text; diff --git a/frontend/app/components/ui/Icons/chat_square_quote.tsx b/frontend/app/components/ui/Icons/chat_square_quote.tsx new file mode 100644 index 000000000..8e8a09105 --- /dev/null +++ b/frontend/app/components/ui/Icons/chat_square_quote.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chat_square_quote(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chat_square_quote; diff --git a/frontend/app/components/ui/Icons/check.tsx b/frontend/app/components/ui/Icons/check.tsx new file mode 100644 index 000000000..7a797bee9 --- /dev/null +++ b/frontend/app/components/ui/Icons/check.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Check(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Check; diff --git a/frontend/app/components/ui/Icons/check_circle.tsx b/frontend/app/components/ui/Icons/check_circle.tsx new file mode 100644 index 000000000..842ad5d04 --- /dev/null +++ b/frontend/app/components/ui/Icons/check_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Check_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Check_circle; diff --git a/frontend/app/components/ui/Icons/check_circle_fill.tsx b/frontend/app/components/ui/Icons/check_circle_fill.tsx new file mode 100644 index 000000000..2b76b0ffb --- /dev/null +++ b/frontend/app/components/ui/Icons/check_circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Check_circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Check_circle_fill; diff --git a/frontend/app/components/ui/Icons/chevron_double_left.tsx b/frontend/app/components/ui/Icons/chevron_double_left.tsx new file mode 100644 index 000000000..384445846 --- /dev/null +++ b/frontend/app/components/ui/Icons/chevron_double_left.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chevron_double_left(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chevron_double_left; diff --git a/frontend/app/components/ui/Icons/chevron_double_right.tsx b/frontend/app/components/ui/Icons/chevron_double_right.tsx new file mode 100644 index 000000000..eacd51774 --- /dev/null +++ b/frontend/app/components/ui/Icons/chevron_double_right.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chevron_double_right(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chevron_double_right; diff --git a/frontend/app/components/ui/Icons/chevron_down.tsx b/frontend/app/components/ui/Icons/chevron_down.tsx new file mode 100644 index 000000000..0b8b13375 --- /dev/null +++ b/frontend/app/components/ui/Icons/chevron_down.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chevron_down(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chevron_down; diff --git a/frontend/app/components/ui/Icons/chevron_left.tsx b/frontend/app/components/ui/Icons/chevron_left.tsx new file mode 100644 index 000000000..7ac618d33 --- /dev/null +++ b/frontend/app/components/ui/Icons/chevron_left.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chevron_left(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chevron_left; diff --git a/frontend/app/components/ui/Icons/chevron_right.tsx b/frontend/app/components/ui/Icons/chevron_right.tsx new file mode 100644 index 000000000..0bf4c3485 --- /dev/null +++ b/frontend/app/components/ui/Icons/chevron_right.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chevron_right(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chevron_right; diff --git a/frontend/app/components/ui/Icons/chevron_up.tsx b/frontend/app/components/ui/Icons/chevron_up.tsx new file mode 100644 index 000000000..63d2a45e0 --- /dev/null +++ b/frontend/app/components/ui/Icons/chevron_up.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Chevron_up(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Chevron_up; diff --git a/frontend/app/components/ui/Icons/circle.tsx b/frontend/app/components/ui/Icons/circle.tsx new file mode 100644 index 000000000..39c0745c8 --- /dev/null +++ b/frontend/app/components/ui/Icons/circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Circle; diff --git a/frontend/app/components/ui/Icons/circle_fill.tsx b/frontend/app/components/ui/Icons/circle_fill.tsx new file mode 100644 index 000000000..30de76aad --- /dev/null +++ b/frontend/app/components/ui/Icons/circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Circle_fill; diff --git a/frontend/app/components/ui/Icons/click_hesitation.tsx b/frontend/app/components/ui/Icons/click_hesitation.tsx new file mode 100644 index 000000000..4c54fe005 --- /dev/null +++ b/frontend/app/components/ui/Icons/click_hesitation.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Click_hesitation(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Click_hesitation; diff --git a/frontend/app/components/ui/Icons/click_rage.tsx b/frontend/app/components/ui/Icons/click_rage.tsx new file mode 100644 index 000000000..c5be23a65 --- /dev/null +++ b/frontend/app/components/ui/Icons/click_rage.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Click_rage(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Click_rage; diff --git a/frontend/app/components/ui/Icons/clipboard_check.tsx b/frontend/app/components/ui/Icons/clipboard_check.tsx new file mode 100644 index 000000000..238ae7555 --- /dev/null +++ b/frontend/app/components/ui/Icons/clipboard_check.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Clipboard_check(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Clipboard_check; diff --git a/frontend/app/components/ui/Icons/clipboard_list_check.tsx b/frontend/app/components/ui/Icons/clipboard_list_check.tsx new file mode 100644 index 000000000..13e976f86 --- /dev/null +++ b/frontend/app/components/ui/Icons/clipboard_list_check.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Clipboard_list_check(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Clipboard_list_check; diff --git a/frontend/app/components/ui/Icons/clock.tsx b/frontend/app/components/ui/Icons/clock.tsx new file mode 100644 index 000000000..8a13822e8 --- /dev/null +++ b/frontend/app/components/ui/Icons/clock.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Clock(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Clock; diff --git a/frontend/app/components/ui/Icons/clock_history.tsx b/frontend/app/components/ui/Icons/clock_history.tsx new file mode 100644 index 000000000..4030f5fb9 --- /dev/null +++ b/frontend/app/components/ui/Icons/clock_history.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Clock_history(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Clock_history; diff --git a/frontend/app/components/ui/Icons/close.tsx b/frontend/app/components/ui/Icons/close.tsx new file mode 100644 index 000000000..2d89868db --- /dev/null +++ b/frontend/app/components/ui/Icons/close.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Close(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Close; diff --git a/frontend/app/components/ui/Icons/cloud_fog2_fill.tsx b/frontend/app/components/ui/Icons/cloud_fog2_fill.tsx new file mode 100644 index 000000000..c79203b26 --- /dev/null +++ b/frontend/app/components/ui/Icons/cloud_fog2_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cloud_fog2_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cloud_fog2_fill; diff --git a/frontend/app/components/ui/Icons/code.tsx b/frontend/app/components/ui/Icons/code.tsx new file mode 100644 index 000000000..994382f44 --- /dev/null +++ b/frontend/app/components/ui/Icons/code.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Code(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Code; diff --git a/frontend/app/components/ui/Icons/cog.tsx b/frontend/app/components/ui/Icons/cog.tsx new file mode 100644 index 000000000..1a8b40c6a --- /dev/null +++ b/frontend/app/components/ui/Icons/cog.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cog(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cog; diff --git a/frontend/app/components/ui/Icons/cogs.tsx b/frontend/app/components/ui/Icons/cogs.tsx new file mode 100644 index 000000000..ad2210077 --- /dev/null +++ b/frontend/app/components/ui/Icons/cogs.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cogs(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cogs; diff --git a/frontend/app/components/ui/Icons/collection.tsx b/frontend/app/components/ui/Icons/collection.tsx new file mode 100644 index 000000000..ba4a95875 --- /dev/null +++ b/frontend/app/components/ui/Icons/collection.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Collection(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Collection; diff --git a/frontend/app/components/ui/Icons/collection_play.tsx b/frontend/app/components/ui/Icons/collection_play.tsx new file mode 100644 index 000000000..f4ac06191 --- /dev/null +++ b/frontend/app/components/ui/Icons/collection_play.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Collection_play(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Collection_play; diff --git a/frontend/app/components/ui/Icons/columns_gap.tsx b/frontend/app/components/ui/Icons/columns_gap.tsx new file mode 100644 index 000000000..5292780ee --- /dev/null +++ b/frontend/app/components/ui/Icons/columns_gap.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Columns_gap(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Columns_gap; diff --git a/frontend/app/components/ui/Icons/columns_gap_filled.tsx b/frontend/app/components/ui/Icons/columns_gap_filled.tsx new file mode 100644 index 000000000..7b8cbd11c --- /dev/null +++ b/frontend/app/components/ui/Icons/columns_gap_filled.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Columns_gap_filled(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Columns_gap_filled; diff --git a/frontend/app/components/ui/Icons/console.tsx b/frontend/app/components/ui/Icons/console.tsx new file mode 100644 index 000000000..316406a78 --- /dev/null +++ b/frontend/app/components/ui/Icons/console.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Console(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Console; diff --git a/frontend/app/components/ui/Icons/console_error.tsx b/frontend/app/components/ui/Icons/console_error.tsx new file mode 100644 index 000000000..636e8498f --- /dev/null +++ b/frontend/app/components/ui/Icons/console_error.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Console_error(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Console_error; diff --git a/frontend/app/components/ui/Icons/console_exception.tsx b/frontend/app/components/ui/Icons/console_exception.tsx new file mode 100644 index 000000000..2ae85e5fe --- /dev/null +++ b/frontend/app/components/ui/Icons/console_exception.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Console_exception(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Console_exception; diff --git a/frontend/app/components/ui/Icons/console_info.tsx b/frontend/app/components/ui/Icons/console_info.tsx new file mode 100644 index 000000000..674f08c44 --- /dev/null +++ b/frontend/app/components/ui/Icons/console_info.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Console_info(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Console_info; diff --git a/frontend/app/components/ui/Icons/console_warning.tsx b/frontend/app/components/ui/Icons/console_warning.tsx new file mode 100644 index 000000000..3eae95058 --- /dev/null +++ b/frontend/app/components/ui/Icons/console_warning.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Console_warning(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Console_warning; diff --git a/frontend/app/components/ui/Icons/controller.tsx b/frontend/app/components/ui/Icons/controller.tsx new file mode 100644 index 000000000..aabc48735 --- /dev/null +++ b/frontend/app/components/ui/Icons/controller.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Controller(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Controller; diff --git a/frontend/app/components/ui/Icons/cookies.tsx b/frontend/app/components/ui/Icons/cookies.tsx new file mode 100644 index 000000000..57a7655b2 --- /dev/null +++ b/frontend/app/components/ui/Icons/cookies.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cookies(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cookies; diff --git a/frontend/app/components/ui/Icons/copy.tsx b/frontend/app/components/ui/Icons/copy.tsx new file mode 100644 index 000000000..25c7b633a --- /dev/null +++ b/frontend/app/components/ui/Icons/copy.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Copy(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Copy; diff --git a/frontend/app/components/ui/Icons/credit_card_2_back.tsx b/frontend/app/components/ui/Icons/credit_card_2_back.tsx new file mode 100644 index 000000000..0f0f9a180 --- /dev/null +++ b/frontend/app/components/ui/Icons/credit_card_2_back.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Credit_card_2_back(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Credit_card_2_back; diff --git a/frontend/app/components/ui/Icons/credit_card_front.tsx b/frontend/app/components/ui/Icons/credit_card_front.tsx new file mode 100644 index 000000000..88de2598b --- /dev/null +++ b/frontend/app/components/ui/Icons/credit_card_front.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Credit_card_front(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Credit_card_front; diff --git a/frontend/app/components/ui/Icons/cross.tsx b/frontend/app/components/ui/Icons/cross.tsx new file mode 100644 index 000000000..b4928447d --- /dev/null +++ b/frontend/app/components/ui/Icons/cross.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cross(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cross; diff --git a/frontend/app/components/ui/Icons/cubes.tsx b/frontend/app/components/ui/Icons/cubes.tsx new file mode 100644 index 000000000..b4a7b716e --- /dev/null +++ b/frontend/app/components/ui/Icons/cubes.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cubes(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cubes; diff --git a/frontend/app/components/ui/Icons/cursor_trash.tsx b/frontend/app/components/ui/Icons/cursor_trash.tsx new file mode 100644 index 000000000..b7e47f4a1 --- /dev/null +++ b/frontend/app/components/ui/Icons/cursor_trash.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Cursor_trash(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Cursor_trash; diff --git a/frontend/app/components/ui/Icons/dash.tsx b/frontend/app/components/ui/Icons/dash.tsx new file mode 100644 index 000000000..e7ec0baf0 --- /dev/null +++ b/frontend/app/components/ui/Icons/dash.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Dash(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Dash; diff --git a/frontend/app/components/ui/Icons/dashboard_icn.tsx b/frontend/app/components/ui/Icons/dashboard_icn.tsx new file mode 100644 index 000000000..8f5747e60 --- /dev/null +++ b/frontend/app/components/ui/Icons/dashboard_icn.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Dashboard_icn(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Dashboard_icn; 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 new file mode 100644 index 000000000..ae41e4156 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_clickMap.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_clickmap(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_clickmap; 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 new file mode 100644 index 000000000..c85f1af5d --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_errors.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_errors(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_errors; 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 new file mode 100644 index 000000000..51baf383f --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_funnel.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_funnel(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_funnel; 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 new file mode 100644 index 000000000..4e5622036 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_funnels.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_funnels(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_funnels; 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 new file mode 100644 index 000000000..d6b581cb0 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_insights.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_insights(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_insights; 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 new file mode 100644 index 000000000..f31fd622e --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_library.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_library(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_library; 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 new file mode 100644 index 000000000..713038147 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_mapchart.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_mapchart(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_mapchart; 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 new file mode 100644 index 000000000..754870020 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_pathAnalysis.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_pathanalysis(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_pathanalysis; 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 new file mode 100644 index 000000000..153f5429d --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_performance.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_performance(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_performance; 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 new file mode 100644 index 000000000..de1156aea --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_resources.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_resources(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_resources; 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 new file mode 100644 index 000000000..fb9dafcee --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_table.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_table(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_table; 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 new file mode 100644 index 000000000..524be8954 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_timeseries.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_timeseries(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_timeseries; 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 new file mode 100644 index 000000000..d7290cb03 --- /dev/null +++ b/frontend/app/components/ui/Icons/db_icons_icn_card_webVitals.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Db_icons_icn_card_webvitals(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Db_icons_icn_card_webvitals; diff --git a/frontend/app/components/ui/Icons/desktop.tsx b/frontend/app/components/ui/Icons/desktop.tsx new file mode 100644 index 000000000..8855b7209 --- /dev/null +++ b/frontend/app/components/ui/Icons/desktop.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Desktop(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Desktop; diff --git a/frontend/app/components/ui/Icons/device.tsx b/frontend/app/components/ui/Icons/device.tsx new file mode 100644 index 000000000..802f21159 --- /dev/null +++ b/frontend/app/components/ui/Icons/device.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Device(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Device; diff --git a/frontend/app/components/ui/Icons/diagram_3.tsx b/frontend/app/components/ui/Icons/diagram_3.tsx new file mode 100644 index 000000000..ef8d0de6a --- /dev/null +++ b/frontend/app/components/ui/Icons/diagram_3.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Diagram_3(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Diagram_3; diff --git a/frontend/app/components/ui/Icons/dice_3.tsx b/frontend/app/components/ui/Icons/dice_3.tsx new file mode 100644 index 000000000..a6989ba76 --- /dev/null +++ b/frontend/app/components/ui/Icons/dice_3.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Dice_3(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Dice_3; diff --git a/frontend/app/components/ui/Icons/dizzy.tsx b/frontend/app/components/ui/Icons/dizzy.tsx new file mode 100644 index 000000000..e8cec23e7 --- /dev/null +++ b/frontend/app/components/ui/Icons/dizzy.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Dizzy(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Dizzy; diff --git a/frontend/app/components/ui/Icons/door_closed.tsx b/frontend/app/components/ui/Icons/door_closed.tsx new file mode 100644 index 000000000..2b137c711 --- /dev/null +++ b/frontend/app/components/ui/Icons/door_closed.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Door_closed(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Door_closed; diff --git a/frontend/app/components/ui/Icons/doublecheck.tsx b/frontend/app/components/ui/Icons/doublecheck.tsx new file mode 100644 index 000000000..e4bfb9b5b --- /dev/null +++ b/frontend/app/components/ui/Icons/doublecheck.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Doublecheck(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Doublecheck; diff --git a/frontend/app/components/ui/Icons/download.tsx b/frontend/app/components/ui/Icons/download.tsx new file mode 100644 index 000000000..d95fa1d87 --- /dev/null +++ b/frontend/app/components/ui/Icons/download.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Download(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Download; diff --git a/frontend/app/components/ui/Icons/drag.tsx b/frontend/app/components/ui/Icons/drag.tsx new file mode 100644 index 000000000..cb24ec5b7 --- /dev/null +++ b/frontend/app/components/ui/Icons/drag.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Drag(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Drag; diff --git a/frontend/app/components/ui/Icons/edit.tsx b/frontend/app/components/ui/Icons/edit.tsx new file mode 100644 index 000000000..8e3705ebd --- /dev/null +++ b/frontend/app/components/ui/Icons/edit.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Edit(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Edit; diff --git a/frontend/app/components/ui/Icons/ellipsis_v.tsx b/frontend/app/components/ui/Icons/ellipsis_v.tsx new file mode 100644 index 000000000..9dab54f08 --- /dev/null +++ b/frontend/app/components/ui/Icons/ellipsis_v.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Ellipsis_v(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Ellipsis_v; diff --git a/frontend/app/components/ui/Icons/emoji_dizzy.tsx b/frontend/app/components/ui/Icons/emoji_dizzy.tsx new file mode 100644 index 000000000..3e4246110 --- /dev/null +++ b/frontend/app/components/ui/Icons/emoji_dizzy.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Emoji_dizzy(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Emoji_dizzy; diff --git a/frontend/app/components/ui/Icons/enter.tsx b/frontend/app/components/ui/Icons/enter.tsx new file mode 100644 index 000000000..488b983e0 --- /dev/null +++ b/frontend/app/components/ui/Icons/enter.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Enter(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Enter; diff --git a/frontend/app/components/ui/Icons/envelope.tsx b/frontend/app/components/ui/Icons/envelope.tsx new file mode 100644 index 000000000..199e86d58 --- /dev/null +++ b/frontend/app/components/ui/Icons/envelope.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Envelope(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Envelope; diff --git a/frontend/app/components/ui/Icons/envelope_check.tsx b/frontend/app/components/ui/Icons/envelope_check.tsx new file mode 100644 index 000000000..f1813d130 --- /dev/null +++ b/frontend/app/components/ui/Icons/envelope_check.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Envelope_check(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Envelope_check; diff --git a/frontend/app/components/ui/Icons/envelope_paper.tsx b/frontend/app/components/ui/Icons/envelope_paper.tsx new file mode 100644 index 000000000..fa6cb7749 --- /dev/null +++ b/frontend/app/components/ui/Icons/envelope_paper.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Envelope_paper(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Envelope_paper; diff --git a/frontend/app/components/ui/Icons/envelope_x.tsx b/frontend/app/components/ui/Icons/envelope_x.tsx new file mode 100644 index 000000000..9cb62b844 --- /dev/null +++ b/frontend/app/components/ui/Icons/envelope_x.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Envelope_x(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Envelope_x; diff --git a/frontend/app/components/ui/Icons/errors_icon.tsx b/frontend/app/components/ui/Icons/errors_icon.tsx new file mode 100644 index 000000000..122fe121d --- /dev/null +++ b/frontend/app/components/ui/Icons/errors_icon.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Errors_icon(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Errors_icon; diff --git a/frontend/app/components/ui/Icons/event_click.tsx b/frontend/app/components/ui/Icons/event_click.tsx new file mode 100644 index 000000000..a20bc2384 --- /dev/null +++ b/frontend/app/components/ui/Icons/event_click.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_click(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_click; diff --git a/frontend/app/components/ui/Icons/event_click_hesitation.tsx b/frontend/app/components/ui/Icons/event_click_hesitation.tsx new file mode 100644 index 000000000..3dec5754d --- /dev/null +++ b/frontend/app/components/ui/Icons/event_click_hesitation.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_click_hesitation(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_click_hesitation; diff --git a/frontend/app/components/ui/Icons/event_clickrage.tsx b/frontend/app/components/ui/Icons/event_clickrage.tsx new file mode 100644 index 000000000..368228f5a --- /dev/null +++ b/frontend/app/components/ui/Icons/event_clickrage.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_clickrage(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_clickrage; diff --git a/frontend/app/components/ui/Icons/event_code.tsx b/frontend/app/components/ui/Icons/event_code.tsx new file mode 100644 index 000000000..8626fde2f --- /dev/null +++ b/frontend/app/components/ui/Icons/event_code.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_code(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_code; diff --git a/frontend/app/components/ui/Icons/event_i_cursor.tsx b/frontend/app/components/ui/Icons/event_i_cursor.tsx new file mode 100644 index 000000000..d5271dfc9 --- /dev/null +++ b/frontend/app/components/ui/Icons/event_i_cursor.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_i_cursor(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_i_cursor; diff --git a/frontend/app/components/ui/Icons/event_input.tsx b/frontend/app/components/ui/Icons/event_input.tsx new file mode 100644 index 000000000..e6e9d01ee --- /dev/null +++ b/frontend/app/components/ui/Icons/event_input.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_input(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_input; diff --git a/frontend/app/components/ui/Icons/event_input_hesitation.tsx b/frontend/app/components/ui/Icons/event_input_hesitation.tsx new file mode 100644 index 000000000..0a76dcc46 --- /dev/null +++ b/frontend/app/components/ui/Icons/event_input_hesitation.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_input_hesitation(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_input_hesitation; diff --git a/frontend/app/components/ui/Icons/event_link.tsx b/frontend/app/components/ui/Icons/event_link.tsx new file mode 100644 index 000000000..5aef70f4c --- /dev/null +++ b/frontend/app/components/ui/Icons/event_link.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_link(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_link; diff --git a/frontend/app/components/ui/Icons/event_location.tsx b/frontend/app/components/ui/Icons/event_location.tsx new file mode 100644 index 000000000..fd4043a96 --- /dev/null +++ b/frontend/app/components/ui/Icons/event_location.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_location(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_location; diff --git a/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx b/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx new file mode 100644 index 000000000..d063132f5 --- /dev/null +++ b/frontend/app/components/ui/Icons/event_mouse_thrashing.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_mouse_thrashing(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_mouse_thrashing; diff --git a/frontend/app/components/ui/Icons/event_resize.tsx b/frontend/app/components/ui/Icons/event_resize.tsx new file mode 100644 index 000000000..254804ae8 --- /dev/null +++ b/frontend/app/components/ui/Icons/event_resize.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_resize(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_resize; diff --git a/frontend/app/components/ui/Icons/event_view.tsx b/frontend/app/components/ui/Icons/event_view.tsx new file mode 100644 index 000000000..c6f3f601c --- /dev/null +++ b/frontend/app/components/ui/Icons/event_view.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Event_view(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Event_view; diff --git a/frontend/app/components/ui/Icons/exclamation_circle.tsx b/frontend/app/components/ui/Icons/exclamation_circle.tsx new file mode 100644 index 000000000..b0b806510 --- /dev/null +++ b/frontend/app/components/ui/Icons/exclamation_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Exclamation_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Exclamation_circle; diff --git a/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx b/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx new file mode 100644 index 000000000..1fdfba6bf --- /dev/null +++ b/frontend/app/components/ui/Icons/exclamation_circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Exclamation_circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Exclamation_circle_fill; diff --git a/frontend/app/components/ui/Icons/exclamation_triangle.tsx b/frontend/app/components/ui/Icons/exclamation_triangle.tsx new file mode 100644 index 000000000..8a4ac14f7 --- /dev/null +++ b/frontend/app/components/ui/Icons/exclamation_triangle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Exclamation_triangle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Exclamation_triangle; diff --git a/frontend/app/components/ui/Icons/expand_wide.tsx b/frontend/app/components/ui/Icons/expand_wide.tsx new file mode 100644 index 000000000..cdbe18d74 --- /dev/null +++ b/frontend/app/components/ui/Icons/expand_wide.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Expand_wide(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Expand_wide; diff --git a/frontend/app/components/ui/Icons/explosion.tsx b/frontend/app/components/ui/Icons/explosion.tsx new file mode 100644 index 000000000..5ae375132 --- /dev/null +++ b/frontend/app/components/ui/Icons/explosion.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Explosion(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Explosion; diff --git a/frontend/app/components/ui/Icons/external_link_alt.tsx b/frontend/app/components/ui/Icons/external_link_alt.tsx new file mode 100644 index 000000000..a4db1acad --- /dev/null +++ b/frontend/app/components/ui/Icons/external_link_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function External_link_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default External_link_alt; diff --git a/frontend/app/components/ui/Icons/eye.tsx b/frontend/app/components/ui/Icons/eye.tsx new file mode 100644 index 000000000..df579e101 --- /dev/null +++ b/frontend/app/components/ui/Icons/eye.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Eye(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Eye; diff --git a/frontend/app/components/ui/Icons/eye_slash.tsx b/frontend/app/components/ui/Icons/eye_slash.tsx new file mode 100644 index 000000000..bfd4b0aec --- /dev/null +++ b/frontend/app/components/ui/Icons/eye_slash.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Eye_slash(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Eye_slash; diff --git a/frontend/app/components/ui/Icons/eye_slash_fill.tsx b/frontend/app/components/ui/Icons/eye_slash_fill.tsx new file mode 100644 index 000000000..9dcf8c354 --- /dev/null +++ b/frontend/app/components/ui/Icons/eye_slash_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Eye_slash_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Eye_slash_fill; diff --git a/frontend/app/components/ui/Icons/fetch.tsx b/frontend/app/components/ui/Icons/fetch.tsx new file mode 100644 index 000000000..ea117dab9 --- /dev/null +++ b/frontend/app/components/ui/Icons/fetch.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Fetch(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Fetch; diff --git a/frontend/app/components/ui/Icons/fflag_multi.tsx b/frontend/app/components/ui/Icons/fflag_multi.tsx new file mode 100644 index 000000000..d4677f3bf --- /dev/null +++ b/frontend/app/components/ui/Icons/fflag_multi.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Fflag_multi(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Fflag_multi; diff --git a/frontend/app/components/ui/Icons/fflag_single.tsx b/frontend/app/components/ui/Icons/fflag_single.tsx new file mode 100644 index 000000000..7fceaadfc --- /dev/null +++ b/frontend/app/components/ui/Icons/fflag_single.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Fflag_single(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Fflag_single; diff --git a/frontend/app/components/ui/Icons/file.tsx b/frontend/app/components/ui/Icons/file.tsx new file mode 100644 index 000000000..0ae9bfe21 --- /dev/null +++ b/frontend/app/components/ui/Icons/file.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function File(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default File; diff --git a/frontend/app/components/ui/Icons/file_bar_graph.tsx b/frontend/app/components/ui/Icons/file_bar_graph.tsx new file mode 100644 index 000000000..66548cbf0 --- /dev/null +++ b/frontend/app/components/ui/Icons/file_bar_graph.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function File_bar_graph(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default File_bar_graph; diff --git a/frontend/app/components/ui/Icons/file_code.tsx b/frontend/app/components/ui/Icons/file_code.tsx new file mode 100644 index 000000000..e43cae7e4 --- /dev/null +++ b/frontend/app/components/ui/Icons/file_code.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function File_code(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default File_code; diff --git a/frontend/app/components/ui/Icons/file_medical_alt.tsx b/frontend/app/components/ui/Icons/file_medical_alt.tsx new file mode 100644 index 000000000..7eaccbd03 --- /dev/null +++ b/frontend/app/components/ui/Icons/file_medical_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function File_medical_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default File_medical_alt; diff --git a/frontend/app/components/ui/Icons/file_pdf.tsx b/frontend/app/components/ui/Icons/file_pdf.tsx new file mode 100644 index 000000000..de04c227f --- /dev/null +++ b/frontend/app/components/ui/Icons/file_pdf.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function File_pdf(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default File_pdf; diff --git a/frontend/app/components/ui/Icons/files.tsx b/frontend/app/components/ui/Icons/files.tsx new file mode 100644 index 000000000..3e334bd67 --- /dev/null +++ b/frontend/app/components/ui/Icons/files.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Files(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Files; diff --git a/frontend/app/components/ui/Icons/filetype_js.tsx b/frontend/app/components/ui/Icons/filetype_js.tsx new file mode 100644 index 000000000..1840ca862 --- /dev/null +++ b/frontend/app/components/ui/Icons/filetype_js.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filetype_js(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filetype_js; diff --git a/frontend/app/components/ui/Icons/filetype_pdf.tsx b/frontend/app/components/ui/Icons/filetype_pdf.tsx new file mode 100644 index 000000000..0087587b4 --- /dev/null +++ b/frontend/app/components/ui/Icons/filetype_pdf.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filetype_pdf(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filetype_pdf; diff --git a/frontend/app/components/ui/Icons/filter.tsx b/frontend/app/components/ui/Icons/filter.tsx new file mode 100644 index 000000000..77b2b86ea --- /dev/null +++ b/frontend/app/components/ui/Icons/filter.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filter(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filter; diff --git a/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx b/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx new file mode 100644 index 000000000..ab13d4e41 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_arrow_return_right.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_arrow_return_right(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_arrow_return_right; diff --git a/frontend/app/components/ui/Icons/filters_browser.tsx b/frontend/app/components/ui/Icons/filters_browser.tsx new file mode 100644 index 000000000..cc42b04a1 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_browser.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_browser(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_browser; diff --git a/frontend/app/components/ui/Icons/filters_click.tsx b/frontend/app/components/ui/Icons/filters_click.tsx new file mode 100644 index 000000000..c1c12e690 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_click.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_click(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_click; diff --git a/frontend/app/components/ui/Icons/filters_clickrage.tsx b/frontend/app/components/ui/Icons/filters_clickrage.tsx new file mode 100644 index 000000000..67be038a9 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_clickrage.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_clickrage(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_clickrage; diff --git a/frontend/app/components/ui/Icons/filters_code.tsx b/frontend/app/components/ui/Icons/filters_code.tsx new file mode 100644 index 000000000..0b62a4245 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_code.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_code(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_code; diff --git a/frontend/app/components/ui/Icons/filters_console.tsx b/frontend/app/components/ui/Icons/filters_console.tsx new file mode 100644 index 000000000..9950f88fb --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_console.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_console(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_console; diff --git a/frontend/app/components/ui/Icons/filters_country.tsx b/frontend/app/components/ui/Icons/filters_country.tsx new file mode 100644 index 000000000..9891cdc0c --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_country.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_country(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_country; diff --git a/frontend/app/components/ui/Icons/filters_cpu_load.tsx b/frontend/app/components/ui/Icons/filters_cpu_load.tsx new file mode 100644 index 000000000..e98e8e41b --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_cpu_load.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_cpu_load(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_cpu_load; diff --git a/frontend/app/components/ui/Icons/filters_custom.tsx b/frontend/app/components/ui/Icons/filters_custom.tsx new file mode 100644 index 000000000..5bcb62854 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_custom.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_custom(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_custom; diff --git a/frontend/app/components/ui/Icons/filters_device.tsx b/frontend/app/components/ui/Icons/filters_device.tsx new file mode 100644 index 000000000..3d37bc319 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_device.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_device(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_device; diff --git a/frontend/app/components/ui/Icons/filters_dom_complete.tsx b/frontend/app/components/ui/Icons/filters_dom_complete.tsx new file mode 100644 index 000000000..b0030e7fa --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_dom_complete.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_dom_complete(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_dom_complete; diff --git a/frontend/app/components/ui/Icons/filters_duration.tsx b/frontend/app/components/ui/Icons/filters_duration.tsx new file mode 100644 index 000000000..9c6178e86 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_duration.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_duration(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_duration; diff --git a/frontend/app/components/ui/Icons/filters_error.tsx b/frontend/app/components/ui/Icons/filters_error.tsx new file mode 100644 index 000000000..8b2a0e079 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_error.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_error(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_error; diff --git a/frontend/app/components/ui/Icons/filters_fetch.tsx b/frontend/app/components/ui/Icons/filters_fetch.tsx new file mode 100644 index 000000000..1239c77ee --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_fetch.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_fetch(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_fetch; diff --git a/frontend/app/components/ui/Icons/filters_fetch_failed.tsx b/frontend/app/components/ui/Icons/filters_fetch_failed.tsx new file mode 100644 index 000000000..bb5be1bbc --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_fetch_failed.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_fetch_failed(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_fetch_failed; diff --git a/frontend/app/components/ui/Icons/filters_file_code.tsx b/frontend/app/components/ui/Icons/filters_file_code.tsx new file mode 100644 index 000000000..0f01dd763 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_file_code.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_file_code(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_file_code; diff --git a/frontend/app/components/ui/Icons/filters_graphql.tsx b/frontend/app/components/ui/Icons/filters_graphql.tsx new file mode 100644 index 000000000..d367c256d --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_graphql.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_graphql(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_graphql; diff --git a/frontend/app/components/ui/Icons/filters_i_cursor.tsx b/frontend/app/components/ui/Icons/filters_i_cursor.tsx new file mode 100644 index 000000000..43de2e6c3 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_i_cursor.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_i_cursor(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_i_cursor; diff --git a/frontend/app/components/ui/Icons/filters_input.tsx b/frontend/app/components/ui/Icons/filters_input.tsx new file mode 100644 index 000000000..54adf221d --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_input.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_input(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_input; diff --git a/frontend/app/components/ui/Icons/filters_lcpt.tsx b/frontend/app/components/ui/Icons/filters_lcpt.tsx new file mode 100644 index 000000000..74b31be80 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_lcpt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_lcpt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_lcpt; diff --git a/frontend/app/components/ui/Icons/filters_link.tsx b/frontend/app/components/ui/Icons/filters_link.tsx new file mode 100644 index 000000000..7cb2920af --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_link.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_link(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_link; diff --git a/frontend/app/components/ui/Icons/filters_location.tsx b/frontend/app/components/ui/Icons/filters_location.tsx new file mode 100644 index 000000000..c180fcd8d --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_location.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_location(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_location; diff --git a/frontend/app/components/ui/Icons/filters_memory_load.tsx b/frontend/app/components/ui/Icons/filters_memory_load.tsx new file mode 100644 index 000000000..21617546d --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_memory_load.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_memory_load(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_memory_load; diff --git a/frontend/app/components/ui/Icons/filters_metadata.tsx b/frontend/app/components/ui/Icons/filters_metadata.tsx new file mode 100644 index 000000000..79f893a85 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_metadata.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_metadata(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_metadata; diff --git a/frontend/app/components/ui/Icons/filters_os.tsx b/frontend/app/components/ui/Icons/filters_os.tsx new file mode 100644 index 000000000..e75f2a4a3 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_os.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_os(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_os; diff --git a/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx b/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx new file mode 100644 index 000000000..5bf201056 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_perfromance_network_request.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_perfromance_network_request(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_perfromance_network_request; diff --git a/frontend/app/components/ui/Icons/filters_platform.tsx b/frontend/app/components/ui/Icons/filters_platform.tsx new file mode 100644 index 000000000..2a7e07515 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_platform.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_platform(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_platform; diff --git a/frontend/app/components/ui/Icons/filters_referrer.tsx b/frontend/app/components/ui/Icons/filters_referrer.tsx new file mode 100644 index 000000000..30405dced --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_referrer.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_referrer(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_referrer; diff --git a/frontend/app/components/ui/Icons/filters_resize.tsx b/frontend/app/components/ui/Icons/filters_resize.tsx new file mode 100644 index 000000000..f8396eed9 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_resize.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_resize(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_resize; diff --git a/frontend/app/components/ui/Icons/filters_rev_id.tsx b/frontend/app/components/ui/Icons/filters_rev_id.tsx new file mode 100644 index 000000000..55cfebab0 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_rev_id.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_rev_id(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_rev_id; diff --git a/frontend/app/components/ui/Icons/filters_state_action.tsx b/frontend/app/components/ui/Icons/filters_state_action.tsx new file mode 100644 index 000000000..e855a2cc6 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_state_action.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_state_action(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_state_action; diff --git a/frontend/app/components/ui/Icons/filters_ttfb.tsx b/frontend/app/components/ui/Icons/filters_ttfb.tsx new file mode 100644 index 000000000..4876e05f0 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_ttfb.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_ttfb(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_ttfb; diff --git a/frontend/app/components/ui/Icons/filters_user_alt.tsx b/frontend/app/components/ui/Icons/filters_user_alt.tsx new file mode 100644 index 000000000..9191d14ed --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_user_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_user_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_user_alt; diff --git a/frontend/app/components/ui/Icons/filters_userid.tsx b/frontend/app/components/ui/Icons/filters_userid.tsx new file mode 100644 index 000000000..b316de8fa --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_userid.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_userid(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_userid; diff --git a/frontend/app/components/ui/Icons/filters_view.tsx b/frontend/app/components/ui/Icons/filters_view.tsx new file mode 100644 index 000000000..6918789d6 --- /dev/null +++ b/frontend/app/components/ui/Icons/filters_view.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Filters_view(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Filters_view; diff --git a/frontend/app/components/ui/Icons/flag_na.tsx b/frontend/app/components/ui/Icons/flag_na.tsx new file mode 100644 index 000000000..96fb6c548 --- /dev/null +++ b/frontend/app/components/ui/Icons/flag_na.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Flag_na(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Flag_na; diff --git a/frontend/app/components/ui/Icons/folder2.tsx b/frontend/app/components/ui/Icons/folder2.tsx new file mode 100644 index 000000000..f8a4b1543 --- /dev/null +++ b/frontend/app/components/ui/Icons/folder2.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Folder2(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Folder2; diff --git a/frontend/app/components/ui/Icons/folder_plus.tsx b/frontend/app/components/ui/Icons/folder_plus.tsx new file mode 100644 index 000000000..940dd13d8 --- /dev/null +++ b/frontend/app/components/ui/Icons/folder_plus.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Folder_plus(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Folder_plus; diff --git a/frontend/app/components/ui/Icons/fullscreen.tsx b/frontend/app/components/ui/Icons/fullscreen.tsx new file mode 100644 index 000000000..00ddf04e3 --- /dev/null +++ b/frontend/app/components/ui/Icons/fullscreen.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Fullscreen(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Fullscreen; diff --git a/frontend/app/components/ui/Icons/funnel.tsx b/frontend/app/components/ui/Icons/funnel.tsx new file mode 100644 index 000000000..8e5d79b32 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel; diff --git a/frontend/app/components/ui/Icons/funnel_cpu.tsx b/frontend/app/components/ui/Icons/funnel_cpu.tsx new file mode 100644 index 000000000..7332bdac2 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_cpu.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_cpu(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_cpu; diff --git a/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx b/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx new file mode 100644 index 000000000..c05c4a06a --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_cpu_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_cpu_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_cpu_fill; diff --git a/frontend/app/components/ui/Icons/funnel_dizzy.tsx b/frontend/app/components/ui/Icons/funnel_dizzy.tsx new file mode 100644 index 000000000..8beff6451 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_dizzy.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_dizzy(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_dizzy; diff --git a/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx b/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx new file mode 100644 index 000000000..2e0bf429e --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_emoji_angry.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_emoji_angry(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_emoji_angry; diff --git a/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx b/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx new file mode 100644 index 000000000..64db9557f --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_emoji_angry_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_emoji_angry_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_emoji_angry_fill; diff --git a/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx b/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx new file mode 100644 index 000000000..7949a7c2d --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_emoji_dizzy_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_emoji_dizzy_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_emoji_dizzy_fill; diff --git a/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx b/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx new file mode 100644 index 000000000..8e878d955 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_exclamation_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_exclamation_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_exclamation_circle; diff --git a/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx b/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx new file mode 100644 index 000000000..eed2ad929 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_exclamation_circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_exclamation_circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_exclamation_circle_fill; diff --git a/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx b/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx new file mode 100644 index 000000000..0169f9685 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_file_earmark_break.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_file_earmark_break(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_file_earmark_break; 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 new file mode 100644 index 000000000..5f3202ba4 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_file_earmark_break_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_file_earmark_break_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_file_earmark_break_fill; diff --git a/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx b/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx new file mode 100644 index 000000000..24deee8dd --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_file_earmark_minus.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_file_earmark_minus(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_file_earmark_minus; 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 new file mode 100644 index 000000000..e291aca92 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_file_earmark_minus_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_file_earmark_minus_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_file_earmark_minus_fill; diff --git a/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx b/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx new file mode 100644 index 000000000..31f8224d4 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_file_medical_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_file_medical_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_file_medical_alt; diff --git a/frontend/app/components/ui/Icons/funnel_file_x.tsx b/frontend/app/components/ui/Icons/funnel_file_x.tsx new file mode 100644 index 000000000..ba7b9d44b --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_file_x.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_file_x(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_file_x; diff --git a/frontend/app/components/ui/Icons/funnel_fill.tsx b/frontend/app/components/ui/Icons/funnel_fill.tsx new file mode 100644 index 000000000..d2d140008 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_fill; diff --git a/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx b/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx new file mode 100644 index 000000000..6cd627aee --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_hdd_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_hdd_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_hdd_fill; diff --git a/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx b/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx new file mode 100644 index 000000000..de7bd8403 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_hourglass_top.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_hourglass_top(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_hourglass_top; diff --git a/frontend/app/components/ui/Icons/funnel_image.tsx b/frontend/app/components/ui/Icons/funnel_image.tsx new file mode 100644 index 000000000..ac40d95c4 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_image.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_image(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_image; diff --git a/frontend/app/components/ui/Icons/funnel_image_fill.tsx b/frontend/app/components/ui/Icons/funnel_image_fill.tsx new file mode 100644 index 000000000..2bb19c93a --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_image_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_image_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_image_fill; diff --git a/frontend/app/components/ui/Icons/funnel_microchip.tsx b/frontend/app/components/ui/Icons/funnel_microchip.tsx new file mode 100644 index 000000000..e2d1798b0 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_microchip.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_microchip(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_microchip; diff --git a/frontend/app/components/ui/Icons/funnel_mouse.tsx b/frontend/app/components/ui/Icons/funnel_mouse.tsx new file mode 100644 index 000000000..019db6d1d --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_mouse.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_mouse(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_mouse; diff --git a/frontend/app/components/ui/Icons/funnel_new.tsx b/frontend/app/components/ui/Icons/funnel_new.tsx new file mode 100644 index 000000000..1169f5bbc --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_new.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_new(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_new; diff --git a/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx b/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx new file mode 100644 index 000000000..de08988c5 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_patch_exclamation_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_patch_exclamation_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_patch_exclamation_fill; diff --git a/frontend/app/components/ui/Icons/funnel_sd_card.tsx b/frontend/app/components/ui/Icons/funnel_sd_card.tsx new file mode 100644 index 000000000..240c5a068 --- /dev/null +++ b/frontend/app/components/ui/Icons/funnel_sd_card.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Funnel_sd_card(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Funnel_sd_card; diff --git a/frontend/app/components/ui/Icons/gear.tsx b/frontend/app/components/ui/Icons/gear.tsx new file mode 100644 index 000000000..b7f12f8c5 --- /dev/null +++ b/frontend/app/components/ui/Icons/gear.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Gear(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Gear; diff --git a/frontend/app/components/ui/Icons/gear_fill.tsx b/frontend/app/components/ui/Icons/gear_fill.tsx new file mode 100644 index 000000000..cf4b98b40 --- /dev/null +++ b/frontend/app/components/ui/Icons/gear_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Gear_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Gear_fill; diff --git a/frontend/app/components/ui/Icons/geo_alt_fill_custom.tsx b/frontend/app/components/ui/Icons/geo_alt_fill_custom.tsx new file mode 100644 index 000000000..523d48198 --- /dev/null +++ b/frontend/app/components/ui/Icons/geo_alt_fill_custom.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Geo_alt_fill_custom(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Geo_alt_fill_custom; diff --git a/frontend/app/components/ui/Icons/github.tsx b/frontend/app/components/ui/Icons/github.tsx new file mode 100644 index 000000000..1db1d1cd5 --- /dev/null +++ b/frontend/app/components/ui/Icons/github.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Github(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Github; diff --git a/frontend/app/components/ui/Icons/graph_up.tsx b/frontend/app/components/ui/Icons/graph_up.tsx new file mode 100644 index 000000000..e2f344fa4 --- /dev/null +++ b/frontend/app/components/ui/Icons/graph_up.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Graph_up(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Graph_up; diff --git a/frontend/app/components/ui/Icons/graph_up_arrow.tsx b/frontend/app/components/ui/Icons/graph_up_arrow.tsx new file mode 100644 index 000000000..25d2f50f9 --- /dev/null +++ b/frontend/app/components/ui/Icons/graph_up_arrow.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Graph_up_arrow(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Graph_up_arrow; diff --git a/frontend/app/components/ui/Icons/grid.tsx b/frontend/app/components/ui/Icons/grid.tsx new file mode 100644 index 000000000..50fd520f1 --- /dev/null +++ b/frontend/app/components/ui/Icons/grid.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Grid(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Grid; diff --git a/frontend/app/components/ui/Icons/grid_1x2.tsx b/frontend/app/components/ui/Icons/grid_1x2.tsx new file mode 100644 index 000000000..1c596d275 --- /dev/null +++ b/frontend/app/components/ui/Icons/grid_1x2.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Grid_1x2(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Grid_1x2; diff --git a/frontend/app/components/ui/Icons/grid_3x3.tsx b/frontend/app/components/ui/Icons/grid_3x3.tsx new file mode 100644 index 000000000..287fbcef0 --- /dev/null +++ b/frontend/app/components/ui/Icons/grid_3x3.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Grid_3x3(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Grid_3x3; diff --git a/frontend/app/components/ui/Icons/grid_check.tsx b/frontend/app/components/ui/Icons/grid_check.tsx new file mode 100644 index 000000000..0c8e8f6be --- /dev/null +++ b/frontend/app/components/ui/Icons/grid_check.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Grid_check(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Grid_check; diff --git a/frontend/app/components/ui/Icons/grid_horizontal.tsx b/frontend/app/components/ui/Icons/grid_horizontal.tsx new file mode 100644 index 000000000..ab253e9e1 --- /dev/null +++ b/frontend/app/components/ui/Icons/grid_horizontal.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Grid_horizontal(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Grid_horizontal; diff --git a/frontend/app/components/ui/Icons/grip_horizontal.tsx b/frontend/app/components/ui/Icons/grip_horizontal.tsx new file mode 100644 index 000000000..0768a8a76 --- /dev/null +++ b/frontend/app/components/ui/Icons/grip_horizontal.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Grip_horizontal(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Grip_horizontal; diff --git a/frontend/app/components/ui/Icons/hash.tsx b/frontend/app/components/ui/Icons/hash.tsx new file mode 100644 index 000000000..e24e9a47b --- /dev/null +++ b/frontend/app/components/ui/Icons/hash.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Hash(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Hash; diff --git a/frontend/app/components/ui/Icons/hdd_stack.tsx b/frontend/app/components/ui/Icons/hdd_stack.tsx new file mode 100644 index 000000000..eb8cfc427 --- /dev/null +++ b/frontend/app/components/ui/Icons/hdd_stack.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Hdd_stack(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Hdd_stack; diff --git a/frontend/app/components/ui/Icons/headset.tsx b/frontend/app/components/ui/Icons/headset.tsx new file mode 100644 index 000000000..fa2d3ce75 --- /dev/null +++ b/frontend/app/components/ui/Icons/headset.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Headset(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Headset; diff --git a/frontend/app/components/ui/Icons/heart_rate.tsx b/frontend/app/components/ui/Icons/heart_rate.tsx new file mode 100644 index 000000000..d4a3dba3d --- /dev/null +++ b/frontend/app/components/ui/Icons/heart_rate.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Heart_rate(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Heart_rate; diff --git a/frontend/app/components/ui/Icons/high_engagement.tsx b/frontend/app/components/ui/Icons/high_engagement.tsx new file mode 100644 index 000000000..bb1bf527e --- /dev/null +++ b/frontend/app/components/ui/Icons/high_engagement.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function High_engagement(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default High_engagement; diff --git a/frontend/app/components/ui/Icons/history.tsx b/frontend/app/components/ui/Icons/history.tsx new file mode 100644 index 000000000..c1f705ae1 --- /dev/null +++ b/frontend/app/components/ui/Icons/history.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function History(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default History; diff --git a/frontend/app/components/ui/Icons/hourglass_start.tsx b/frontend/app/components/ui/Icons/hourglass_start.tsx new file mode 100644 index 000000000..c925a75ff --- /dev/null +++ b/frontend/app/components/ui/Icons/hourglass_start.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Hourglass_start(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Hourglass_start; diff --git a/frontend/app/components/ui/Icons/ic_errors.tsx b/frontend/app/components/ui/Icons/ic_errors.tsx new file mode 100644 index 000000000..0248d1e51 --- /dev/null +++ b/frontend/app/components/ui/Icons/ic_errors.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Ic_errors(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Ic_errors; diff --git a/frontend/app/components/ui/Icons/ic_network.tsx b/frontend/app/components/ui/Icons/ic_network.tsx new file mode 100644 index 000000000..3ef2df2ac --- /dev/null +++ b/frontend/app/components/ui/Icons/ic_network.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Ic_network(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Ic_network; diff --git a/frontend/app/components/ui/Icons/ic_rage.tsx b/frontend/app/components/ui/Icons/ic_rage.tsx new file mode 100644 index 000000000..e30d75b67 --- /dev/null +++ b/frontend/app/components/ui/Icons/ic_rage.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Ic_rage(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Ic_rage; diff --git a/frontend/app/components/ui/Icons/ic_resources.tsx b/frontend/app/components/ui/Icons/ic_resources.tsx new file mode 100644 index 000000000..c9c9fa8da --- /dev/null +++ b/frontend/app/components/ui/Icons/ic_resources.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Ic_resources(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Ic_resources; diff --git a/frontend/app/components/ui/Icons/id_card.tsx b/frontend/app/components/ui/Icons/id_card.tsx new file mode 100644 index 000000000..262ce4a26 --- /dev/null +++ b/frontend/app/components/ui/Icons/id_card.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Id_card(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Id_card; diff --git a/frontend/app/components/ui/Icons/image.tsx b/frontend/app/components/ui/Icons/image.tsx new file mode 100644 index 000000000..c3f0e83a8 --- /dev/null +++ b/frontend/app/components/ui/Icons/image.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Image(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Image; diff --git a/frontend/app/components/ui/Icons/index.ts b/frontend/app/components/ui/Icons/index.ts new file mode 100644 index 000000000..a513b17bf --- /dev/null +++ b/frontend/app/components/ui/Icons/index.ts @@ -0,0 +1,469 @@ + +/* Auto-generated, do not edit */ +export { default as Activity } from './activity'; +export { default as Alarm_clock } from './alarm_clock'; +export { default as Alarm_plus } from './alarm_plus'; +export { default as All_sessions } from './all_sessions'; +export { default as Analytics } from './analytics'; +export { default as Anchor } from './anchor'; +export { default as Arrow_alt_square_right } from './arrow_alt_square_right'; +export { default as Arrow_bar_left } from './arrow_bar_left'; +export { default as Arrow_clockwise } from './arrow_clockwise'; +export { default as Arrow_counterclockwise } from './arrow_counterclockwise'; +export { default as Arrow_down_short } from './arrow_down_short'; +export { default as Arrow_down_up } from './arrow_down_up'; +export { default as Arrow_down } from './arrow_down'; +export { default as Arrow_repeat } from './arrow_repeat'; +export { default as Arrow_right_short } from './arrow_right_short'; +export { default as Arrow_square_left } from './arrow_square_left'; +export { default as Arrow_square_right } from './arrow_square_right'; +export { default as Arrow_up_short } from './arrow_up_short'; +export { default as Arrow_up } from './arrow_up'; +export { default as Arrows_angle_extend } from './arrows_angle_extend'; +export { default as Avatar_icn_avatar1 } from './avatar_icn_avatar1'; +export { default as Avatar_icn_avatar10 } from './avatar_icn_avatar10'; +export { default as Avatar_icn_avatar11 } from './avatar_icn_avatar11'; +export { default as Avatar_icn_avatar12 } from './avatar_icn_avatar12'; +export { default as Avatar_icn_avatar13 } from './avatar_icn_avatar13'; +export { default as Avatar_icn_avatar14 } from './avatar_icn_avatar14'; +export { default as Avatar_icn_avatar15 } from './avatar_icn_avatar15'; +export { default as Avatar_icn_avatar16 } from './avatar_icn_avatar16'; +export { default as Avatar_icn_avatar17 } from './avatar_icn_avatar17'; +export { default as Avatar_icn_avatar18 } from './avatar_icn_avatar18'; +export { default as Avatar_icn_avatar19 } from './avatar_icn_avatar19'; +export { default as Avatar_icn_avatar2 } from './avatar_icn_avatar2'; +export { default as Avatar_icn_avatar20 } from './avatar_icn_avatar20'; +export { default as Avatar_icn_avatar21 } from './avatar_icn_avatar21'; +export { default as Avatar_icn_avatar22 } from './avatar_icn_avatar22'; +export { default as Avatar_icn_avatar23 } from './avatar_icn_avatar23'; +export { default as Avatar_icn_avatar3 } from './avatar_icn_avatar3'; +export { default as Avatar_icn_avatar4 } from './avatar_icn_avatar4'; +export { default as Avatar_icn_avatar5 } from './avatar_icn_avatar5'; +export { default as Avatar_icn_avatar6 } from './avatar_icn_avatar6'; +export { default as Avatar_icn_avatar7 } from './avatar_icn_avatar7'; +export { default as Avatar_icn_avatar8 } from './avatar_icn_avatar8'; +export { default as Avatar_icn_avatar9 } from './avatar_icn_avatar9'; +export { default as Ban } from './ban'; +export { default as Bar_chart_line } from './bar_chart_line'; +export { default as Bar_pencil } from './bar_pencil'; +export { default as Battery_charging } from './battery_charging'; +export { default as Battery } from './battery'; +export { default as Bell_fill } from './bell_fill'; +export { default as Bell_plus } from './bell_plus'; +export { default as Bell_slash } from './bell_slash'; +export { default as Bell } from './bell'; +export { default as Binoculars } from './binoculars'; +export { default as Book_doc } from './book_doc'; +export { default as Book } from './book'; +export { default as Bookmark } from './bookmark'; +export { default as Broadcast } from './broadcast'; +export { default as Browser_browser } from './browser_browser'; +export { default as Browser_chrome } from './browser_chrome'; +export { default as Browser_edge } from './browser_edge'; +export { default as Browser_electron } from './browser_electron'; +export { default as Browser_facebook } from './browser_facebook'; +export { default as Browser_firefox } from './browser_firefox'; +export { default as Browser_ie } from './browser_ie'; +export { default as Browser_opera } from './browser_opera'; +export { default as Browser_safari } from './browser_safari'; +export { default as Buildings } from './buildings'; +export { default as Bullhorn } from './bullhorn'; +export { default as Business_time } from './business_time'; +export { default as Calendar_alt } from './calendar_alt'; +export { default as Calendar_check } from './calendar_check'; +export { default as Calendar_day } from './calendar_day'; +export { default as Calendar } from './calendar'; +export { default as Call } from './call'; +export { default as Camera_alt } from './camera_alt'; +export { default as Camera_video_off } from './camera_video_off'; +export { default as Camera_video } from './camera_video'; +export { default as Camera } from './camera'; +export { default as Card_checklist } from './card_checklist'; +export { default as Card_list } from './card_list'; +export { default as Card_text } from './card_text'; +export { default as Caret_down_fill } from './caret_down_fill'; +export { default as Caret_left_fill } from './caret_left_fill'; +export { default as Caret_right_fill } from './caret_right_fill'; +export { default as Caret_up_fill } from './caret_up_fill'; +export { default as Chat_dots } from './chat_dots'; +export { default as Chat_left_text } from './chat_left_text'; +export { default as Chat_right_text } from './chat_right_text'; +export { default as Chat_square_quote } from './chat_square_quote'; +export { default as Check_circle_fill } from './check_circle_fill'; +export { default as Check_circle } from './check_circle'; +export { default as Check } from './check'; +export { default as Chevron_double_left } from './chevron_double_left'; +export { default as Chevron_double_right } from './chevron_double_right'; +export { default as Chevron_down } from './chevron_down'; +export { default as Chevron_left } from './chevron_left'; +export { default as Chevron_right } from './chevron_right'; +export { default as Chevron_up } from './chevron_up'; +export { default as Circle_fill } from './circle_fill'; +export { default as Circle } from './circle'; +export { default as Click_hesitation } from './click_hesitation'; +export { default as Click_rage } from './click_rage'; +export { default as Clipboard_check } from './clipboard_check'; +export { default as Clipboard_list_check } from './clipboard_list_check'; +export { default as Clock_history } from './clock_history'; +export { default as Clock } from './clock'; +export { default as Close } from './close'; +export { default as Cloud_fog2_fill } from './cloud_fog2_fill'; +export { default as Code } from './code'; +export { default as Cog } from './cog'; +export { default as Cogs } from './cogs'; +export { default as Collection_play } from './collection_play'; +export { default as Collection } from './collection'; +export { default as Columns_gap_filled } from './columns_gap_filled'; +export { default as Columns_gap } from './columns_gap'; +export { default as Console_error } from './console_error'; +export { default as Console_exception } from './console_exception'; +export { default as Console_info } from './console_info'; +export { default as Console_warning } from './console_warning'; +export { default as Console } from './console'; +export { default as Controller } from './controller'; +export { default as Cookies } from './cookies'; +export { default as Copy } from './copy'; +export { default as Credit_card_2_back } from './credit_card_2_back'; +export { default as Credit_card_front } from './credit_card_front'; +export { default as Cross } from './cross'; +export { default as Cubes } from './cubes'; +export { default as Cursor_trash } from './cursor_trash'; +export { default as Dash } from './dash'; +export { default as Dashboard_icn } from './dashboard_icn'; +export { default as Db_icons_icn_card_clickmap } from './db_icons_icn_card_clickMap'; +export { default as Db_icons_icn_card_errors } from './db_icons_icn_card_errors'; +export { default as Db_icons_icn_card_funnel } from './db_icons_icn_card_funnel'; +export { default as Db_icons_icn_card_funnels } from './db_icons_icn_card_funnels'; +export { default as Db_icons_icn_card_insights } from './db_icons_icn_card_insights'; +export { default as Db_icons_icn_card_library } from './db_icons_icn_card_library'; +export { default as Db_icons_icn_card_mapchart } from './db_icons_icn_card_mapchart'; +export { default as Db_icons_icn_card_pathanalysis } from './db_icons_icn_card_pathAnalysis'; +export { default as Db_icons_icn_card_performance } from './db_icons_icn_card_performance'; +export { default as Db_icons_icn_card_resources } from './db_icons_icn_card_resources'; +export { default as Db_icons_icn_card_table } from './db_icons_icn_card_table'; +export { default as Db_icons_icn_card_timeseries } from './db_icons_icn_card_timeseries'; +export { default as Db_icons_icn_card_webvitals } from './db_icons_icn_card_webVitals'; +export { default as Desktop } from './desktop'; +export { default as Device } from './device'; +export { default as Diagram_3 } from './diagram_3'; +export { default as Dice_3 } from './dice_3'; +export { default as Dizzy } from './dizzy'; +export { default as Door_closed } from './door_closed'; +export { default as Doublecheck } from './doublecheck'; +export { default as Download } from './download'; +export { default as Drag } from './drag'; +export { default as Edit } from './edit'; +export { default as Ellipsis_v } from './ellipsis_v'; +export { default as Emoji_dizzy } from './emoji_dizzy'; +export { default as Enter } from './enter'; +export { default as Envelope_check } from './envelope_check'; +export { default as Envelope_paper } from './envelope_paper'; +export { default as Envelope_x } from './envelope_x'; +export { default as Envelope } from './envelope'; +export { default as Errors_icon } from './errors_icon'; +export { default as Event_click } from './event_click'; +export { default as Event_click_hesitation } from './event_click_hesitation'; +export { default as Event_clickrage } from './event_clickrage'; +export { default as Event_code } from './event_code'; +export { default as Event_i_cursor } from './event_i_cursor'; +export { default as Event_input } from './event_input'; +export { default as Event_input_hesitation } from './event_input_hesitation'; +export { default as Event_link } from './event_link'; +export { default as Event_location } from './event_location'; +export { default as Event_mouse_thrashing } from './event_mouse_thrashing'; +export { default as Event_resize } from './event_resize'; +export { default as Event_view } from './event_view'; +export { default as Exclamation_circle_fill } from './exclamation_circle_fill'; +export { default as Exclamation_circle } from './exclamation_circle'; +export { default as Exclamation_triangle } from './exclamation_triangle'; +export { default as Expand_wide } from './expand_wide'; +export { default as Explosion } from './explosion'; +export { default as External_link_alt } from './external_link_alt'; +export { default as Eye_slash_fill } from './eye_slash_fill'; +export { default as Eye_slash } from './eye_slash'; +export { default as Eye } from './eye'; +export { default as Fetch } from './fetch'; +export { default as Fflag_multi } from './fflag_multi'; +export { default as Fflag_single } from './fflag_single'; +export { default as File_bar_graph } from './file_bar_graph'; +export { default as File_code } from './file_code'; +export { default as File_medical_alt } from './file_medical_alt'; +export { default as File_pdf } from './file_pdf'; +export { default as File } from './file'; +export { default as Files } from './files'; +export { default as Filetype_js } from './filetype_js'; +export { default as Filetype_pdf } from './filetype_pdf'; +export { default as Filter } from './filter'; +export { default as Filters_arrow_return_right } from './filters_arrow_return_right'; +export { default as Filters_browser } from './filters_browser'; +export { default as Filters_click } from './filters_click'; +export { default as Filters_clickrage } from './filters_clickrage'; +export { default as Filters_code } from './filters_code'; +export { default as Filters_console } from './filters_console'; +export { default as Filters_country } from './filters_country'; +export { default as Filters_cpu_load } from './filters_cpu_load'; +export { default as Filters_custom } from './filters_custom'; +export { default as Filters_device } from './filters_device'; +export { default as Filters_dom_complete } from './filters_dom_complete'; +export { default as Filters_duration } from './filters_duration'; +export { default as Filters_error } from './filters_error'; +export { default as Filters_fetch_failed } from './filters_fetch_failed'; +export { default as Filters_fetch } from './filters_fetch'; +export { default as Filters_file_code } from './filters_file_code'; +export { default as Filters_graphql } from './filters_graphql'; +export { default as Filters_i_cursor } from './filters_i_cursor'; +export { default as Filters_input } from './filters_input'; +export { default as Filters_lcpt } from './filters_lcpt'; +export { default as Filters_link } from './filters_link'; +export { default as Filters_location } from './filters_location'; +export { default as Filters_memory_load } from './filters_memory_load'; +export { default as Filters_metadata } from './filters_metadata'; +export { default as Filters_os } from './filters_os'; +export { default as Filters_perfromance_network_request } from './filters_perfromance_network_request'; +export { default as Filters_platform } from './filters_platform'; +export { default as Filters_referrer } from './filters_referrer'; +export { default as Filters_resize } from './filters_resize'; +export { default as Filters_rev_id } from './filters_rev_id'; +export { default as Filters_state_action } from './filters_state_action'; +export { default as Filters_ttfb } from './filters_ttfb'; +export { default as Filters_user_alt } from './filters_user_alt'; +export { default as Filters_userid } from './filters_userid'; +export { default as Filters_view } from './filters_view'; +export { default as Flag_na } from './flag_na'; +export { default as Folder_plus } from './folder_plus'; +export { default as Folder2 } from './folder2'; +export { default as Fullscreen } from './fullscreen'; +export { default as Funnel_cpu_fill } from './funnel_cpu_fill'; +export { default as Funnel_cpu } from './funnel_cpu'; +export { default as Funnel_dizzy } from './funnel_dizzy'; +export { default as Funnel_emoji_angry_fill } from './funnel_emoji_angry_fill'; +export { default as Funnel_emoji_angry } from './funnel_emoji_angry'; +export { default as Funnel_emoji_dizzy_fill } from './funnel_emoji_dizzy_fill'; +export { default as Funnel_exclamation_circle_fill } from './funnel_exclamation_circle_fill'; +export { default as Funnel_exclamation_circle } from './funnel_exclamation_circle'; +export { default as Funnel_file_earmark_break_fill } from './funnel_file_earmark_break_fill'; +export { default as Funnel_file_earmark_break } from './funnel_file_earmark_break'; +export { default as Funnel_file_earmark_minus_fill } from './funnel_file_earmark_minus_fill'; +export { default as Funnel_file_earmark_minus } from './funnel_file_earmark_minus'; +export { default as Funnel_file_medical_alt } from './funnel_file_medical_alt'; +export { default as Funnel_file_x } from './funnel_file_x'; +export { default as Funnel_hdd_fill } from './funnel_hdd_fill'; +export { default as Funnel_hourglass_top } from './funnel_hourglass_top'; +export { default as Funnel_image_fill } from './funnel_image_fill'; +export { default as Funnel_image } from './funnel_image'; +export { default as Funnel_microchip } from './funnel_microchip'; +export { default as Funnel_mouse } from './funnel_mouse'; +export { default as Funnel_patch_exclamation_fill } from './funnel_patch_exclamation_fill'; +export { default as Funnel_sd_card } from './funnel_sd_card'; +export { default as Funnel_fill } from './funnel_fill'; +export { default as Funnel_new } from './funnel_new'; +export { default as Funnel } from './funnel'; +export { default as Gear_fill } from './gear_fill'; +export { default as Gear } from './gear'; +export { default as Geo_alt_fill_custom } from './geo_alt_fill_custom'; +export { default as Github } from './github'; +export { default as Graph_up_arrow } from './graph_up_arrow'; +export { default as Graph_up } from './graph_up'; +export { default as Grid_1x2 } from './grid_1x2'; +export { default as Grid_3x3 } from './grid_3x3'; +export { default as Grid_check } from './grid_check'; +export { default as Grid_horizontal } from './grid_horizontal'; +export { default as Grid } from './grid'; +export { default as Grip_horizontal } from './grip_horizontal'; +export { default as Hash } from './hash'; +export { default as Hdd_stack } from './hdd_stack'; +export { default as Headset } from './headset'; +export { default as Heart_rate } from './heart_rate'; +export { default as High_engagement } from './high_engagement'; +export { default as History } from './history'; +export { default as Hourglass_start } from './hourglass_start'; +export { default as Ic_errors } from './ic_errors'; +export { default as Ic_network } from './ic_network'; +export { default as Ic_rage } from './ic_rage'; +export { default as Ic_resources } from './ic_resources'; +export { default as Id_card } from './id_card'; +export { default as Image } from './image'; +export { default as Info_circle_fill } from './info_circle_fill'; +export { default as Info_circle } from './info_circle'; +export { default as Info_square } from './info_square'; +export { default as Info } from './info'; +export { default as Input_hesitation } from './input_hesitation'; +export { default as Inspect } from './inspect'; +export { default as Integrations_assist } from './integrations_assist'; +export { default as Integrations_bugsnag_text } from './integrations_bugsnag_text'; +export { default as Integrations_bugsnag } from './integrations_bugsnag'; +export { default as Integrations_cloudwatch_text } from './integrations_cloudwatch_text'; +export { default as Integrations_cloudwatch } from './integrations_cloudwatch'; +export { default as Integrations_datadog } from './integrations_datadog'; +export { default as Integrations_elasticsearch_text } from './integrations_elasticsearch_text'; +export { default as Integrations_elasticsearch } from './integrations_elasticsearch'; +export { default as Integrations_github } from './integrations_github'; +export { default as Integrations_graphql } from './integrations_graphql'; +export { default as Integrations_jira_text } from './integrations_jira_text'; +export { default as Integrations_jira } from './integrations_jira'; +export { default as Integrations_mobx } from './integrations_mobx'; +export { default as Integrations_newrelic_text } from './integrations_newrelic_text'; +export { default as Integrations_newrelic } from './integrations_newrelic'; +export { default as Integrations_ngrx } from './integrations_ngrx'; +export { default as Integrations_openreplay_text } from './integrations_openreplay_text'; +export { default as Integrations_openreplay } from './integrations_openreplay'; +export { default as Integrations_redux } from './integrations_redux'; +export { default as Integrations_rollbar_text } from './integrations_rollbar_text'; +export { default as Integrations_rollbar } from './integrations_rollbar'; +export { default as Integrations_segment } from './integrations_segment'; +export { default as Integrations_sentry_text } from './integrations_sentry_text'; +export { default as Integrations_sentry } from './integrations_sentry'; +export { default as Integrations_slack_bw } from './integrations_slack_bw'; +export { default as Integrations_slack } from './integrations_slack'; +export { default as Integrations_stackdriver } from './integrations_stackdriver'; +export { default as Integrations_sumologic_text } from './integrations_sumologic_text'; +export { default as Integrations_sumologic } from './integrations_sumologic'; +export { default as Integrations_teams_white } from './integrations_teams_white'; +export { default as Integrations_teams } from './integrations_teams'; +export { default as Integrations_vuejs } from './integrations_vuejs'; +export { default as Integrations_zustand } from './integrations_zustand'; +export { default as Journal_code } from './journal_code'; +export { default as Key } from './key'; +export { default as Layer_group } from './layer_group'; +export { default as Layers_half } from './layers_half'; +export { default as Lightbulb_on } from './lightbulb_on'; +export { default as Lightbulb } from './lightbulb'; +export { default as Link_45deg } from './link_45deg'; +export { default as List_alt } from './list_alt'; +export { default as List_arrow } from './list_arrow'; +export { default as List_ul } from './list_ul'; +export { default as List } from './list'; +export { default as Lock_alt } from './lock_alt'; +export { default as Low_disc_space } from './low_disc_space'; +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 Mic_mute } from './mic_mute'; +export { default as Mic } from './mic'; +export { default as Minus } from './minus'; +export { default as Mobile } from './mobile'; +export { default as Mouse_alt } from './mouse_alt'; +export { default as Network } from './network'; +export { default as Next1 } from './next1'; +export { default as No_dashboard } from './no_dashboard'; +export { default as No_metrics_chart } from './no_metrics_chart'; +export { default as No_metrics } from './no_metrics'; +export { default as No_recordings } from './no_recordings'; +export { default as Os_android } from './os_android'; +export { default as Os_chrome_os } from './os_chrome_os'; +export { default as Os_fedora } from './os_fedora'; +export { default as Os_ios } from './os_ios'; +export { default as Os_linux } from './os_linux'; +export { default as Os_mac_os_x } from './os_mac_os_x'; +export { default as Os_other } from './os_other'; +export { default as Os_ubuntu } from './os_ubuntu'; +export { default as Os_windows } from './os_windows'; +export { default as Os } from './os'; +export { default as Pause_circle_fill } from './pause_circle_fill'; +export { default as Pause_fill } from './pause_fill'; +export { default as Pause } from './pause'; +export { default as Pdf_download } from './pdf_download'; +export { default as Pencil_stop } from './pencil_stop'; +export { default as Pencil } from './pencil'; +export { default as People } from './people'; +export { default as Percent } from './percent'; +export { default as Performance_icon } from './performance_icon'; +export { default as Person_border } from './person_border'; +export { default as Person_fill } from './person_fill'; +export { default as Person } from './person'; +export { default as Pie_chart_fill } from './pie_chart_fill'; +export { default as Pin_fill } from './pin_fill'; +export { default as Play_circle_bold } from './play_circle_bold'; +export { default as Play_circle_light } from './play_circle_light'; +export { default as Play_circle } from './play_circle'; +export { default as Play_fill_new } from './play_fill_new'; +export { default as Play_fill } from './play_fill'; +export { default as Play_hover } from './play_hover'; +export { default as Play } from './play'; +export { default as Plug } from './plug'; +export { default as Plus_circle } from './plus_circle'; +export { default as Plus_lg } from './plus_lg'; +export { default as Plus } from './plus'; +export { default as Pointer_sessions_search } from './pointer_sessions_search'; +export { default as Prev1 } from './prev1'; +export { default as Pulse } from './pulse'; +export { default as Puzzle_piece } from './puzzle_piece'; +export { default as Puzzle } from './puzzle'; +export { default as Question_circle } from './question_circle'; +export { default as Question_lg } from './question_lg'; +export { default as Quote_left } from './quote_left'; +export { default as Quote_right } from './quote_right'; +export { default as Quotes } from './quotes'; +export { default as Record_btn } from './record_btn'; +export { default as Record_circle_fill } from './record_circle_fill'; +export { default as Record_circle } from './record_circle'; +export { default as Record2 } from './record2'; +export { default as Redo_back } from './redo_back'; +export { default as Redo } from './redo'; +export { default as Redux } from './redux'; +export { default as Remote_control } from './remote_control'; +export { default as Replay_10 } from './replay_10'; +export { default as Resources_icon } from './resources_icon'; +export { default as Safe_fill } from './safe_fill'; +export { default as Safe } from './safe'; +export { default as Sandglass } from './sandglass'; +export { default as Search } from './search'; +export { default as Search_notification } from './search_notification'; +export { default as Server } from './server'; +export { default as Share_alt } from './share_alt'; +export { default as Shield_lock } from './shield_lock'; +export { default as Side_menu_closed } from './side_menu_closed'; +export { default as Side_menu_open } from './side_menu_open'; +export { default as Signpost_split } from './signpost_split'; +export { default as Signup } from './signup'; +export { default as Skip_forward_fill } from './skip_forward_fill'; +export { default as Skip_forward } from './skip_forward'; +export { default as Slack } from './slack'; +export { default as Slash_circle } from './slash_circle'; +export { default as Sleep } from './sleep'; +export { default as Sliders } from './sliders'; +export { default as Social_slack } from './social_slack'; +export { default as Social_trello } from './social_trello'; +export { default as Speedometer2 } from './speedometer2'; +export { default as Spinner } from './spinner'; +export { default as Star_solid } from './star_solid'; +export { default as Star } from './star'; +export { default as Step_forward } from './step_forward'; +export { default as Stickies } from './stickies'; +export { default as Stop_record_circle } from './stop_record_circle'; +export { default as Stopwatch } from './stopwatch'; +export { default as Store } from './store'; +export { default as Sync_alt } from './sync_alt'; +export { default as Table_new } from './table_new'; +export { default as Table } from './table'; +export { default as Tablet_android } from './tablet_android'; +export { default as Tachometer_slow } from './tachometer_slow'; +export { default as Tachometer_slowest } from './tachometer_slowest'; +export { default as Tags } from './tags'; +export { default as Team_funnel } from './team_funnel'; +export { default as Telephone_fill } from './telephone_fill'; +export { default as Telephone } from './telephone'; +export { default as Terminal } from './terminal'; +export { default as Text_paragraph } from './text_paragraph'; +export { default as Thermometer_sun } from './thermometer_sun'; +export { default as Toggles } from './toggles'; +export { default as Tools } from './tools'; +export { default as Trash } from './trash'; +export { default as Turtle } from './turtle'; +export { default as User_alt } from './user_alt'; +export { default as User_circle } from './user_circle'; +export { default as User_friends } from './user_friends'; +export { default as Users } from './users'; +export { default as Vendors_graphql } from './vendors_graphql'; +export { default as Vendors_mobx } from './vendors_mobx'; +export { default as Vendors_ngrx } from './vendors_ngrx'; +export { default as Vendors_redux } from './vendors_redux'; +export { default as Vendors_vuex } from './vendors_vuex'; +export { default as Web_vitals } from './web_vitals'; +export { default as Wifi } from './wifi'; +export { default as Window_alt } from './window_alt'; +export { default as Window_restore } from './window_restore'; +export { default as Window_x } from './window_x'; +export { default as Window } from './window'; +export { default as Zoom_in } from './zoom_in'; diff --git a/frontend/app/components/ui/Icons/info.tsx b/frontend/app/components/ui/Icons/info.tsx new file mode 100644 index 000000000..7c937b2c4 --- /dev/null +++ b/frontend/app/components/ui/Icons/info.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Info(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Info; diff --git a/frontend/app/components/ui/Icons/info_circle.tsx b/frontend/app/components/ui/Icons/info_circle.tsx new file mode 100644 index 000000000..bfd417aad --- /dev/null +++ b/frontend/app/components/ui/Icons/info_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Info_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Info_circle; diff --git a/frontend/app/components/ui/Icons/info_circle_fill.tsx b/frontend/app/components/ui/Icons/info_circle_fill.tsx new file mode 100644 index 000000000..9329f4627 --- /dev/null +++ b/frontend/app/components/ui/Icons/info_circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Info_circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Info_circle_fill; diff --git a/frontend/app/components/ui/Icons/info_square.tsx b/frontend/app/components/ui/Icons/info_square.tsx new file mode 100644 index 000000000..84e0c3527 --- /dev/null +++ b/frontend/app/components/ui/Icons/info_square.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Info_square(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Info_square; diff --git a/frontend/app/components/ui/Icons/input_hesitation.tsx b/frontend/app/components/ui/Icons/input_hesitation.tsx new file mode 100644 index 000000000..2e72184b9 --- /dev/null +++ b/frontend/app/components/ui/Icons/input_hesitation.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Input_hesitation(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Input_hesitation; diff --git a/frontend/app/components/ui/Icons/inspect.tsx b/frontend/app/components/ui/Icons/inspect.tsx new file mode 100644 index 000000000..84f9bbe04 --- /dev/null +++ b/frontend/app/components/ui/Icons/inspect.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Inspect(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Inspect; diff --git a/frontend/app/components/ui/Icons/integrations_assist.tsx b/frontend/app/components/ui/Icons/integrations_assist.tsx new file mode 100644 index 000000000..90bfd1410 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_assist.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_assist(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_assist; diff --git a/frontend/app/components/ui/Icons/integrations_bugsnag.tsx b/frontend/app/components/ui/Icons/integrations_bugsnag.tsx new file mode 100644 index 000000000..1666d67f0 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_bugsnag.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_bugsnag(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_bugsnag; diff --git a/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx b/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx new file mode 100644 index 000000000..cea4ad2c0 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_bugsnag_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_bugsnag_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_bugsnag_text; diff --git a/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx b/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx new file mode 100644 index 000000000..472e027c2 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_cloudwatch.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_cloudwatch(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_cloudwatch; diff --git a/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx b/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx new file mode 100644 index 000000000..2a4b83278 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_cloudwatch_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_cloudwatch_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_cloudwatch_text; diff --git a/frontend/app/components/ui/Icons/integrations_datadog.tsx b/frontend/app/components/ui/Icons/integrations_datadog.tsx new file mode 100644 index 000000000..ede1a6404 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_datadog.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_datadog(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_datadog; diff --git a/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx b/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx new file mode 100644 index 000000000..762c7adb4 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_elasticsearch.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_elasticsearch(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_elasticsearch; diff --git a/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx b/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx new file mode 100644 index 000000000..507c4855e --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_elasticsearch_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_elasticsearch_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_elasticsearch_text; diff --git a/frontend/app/components/ui/Icons/integrations_github.tsx b/frontend/app/components/ui/Icons/integrations_github.tsx new file mode 100644 index 000000000..b105e6be5 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_github.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_github(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_github; diff --git a/frontend/app/components/ui/Icons/integrations_graphql.tsx b/frontend/app/components/ui/Icons/integrations_graphql.tsx new file mode 100644 index 000000000..cdc139256 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_graphql.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_graphql(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_graphql; diff --git a/frontend/app/components/ui/Icons/integrations_jira.tsx b/frontend/app/components/ui/Icons/integrations_jira.tsx new file mode 100644 index 000000000..4f79acaed --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_jira.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_jira(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_jira; diff --git a/frontend/app/components/ui/Icons/integrations_jira_text.tsx b/frontend/app/components/ui/Icons/integrations_jira_text.tsx new file mode 100644 index 000000000..cd02a4399 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_jira_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_jira_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_jira_text; diff --git a/frontend/app/components/ui/Icons/integrations_mobx.tsx b/frontend/app/components/ui/Icons/integrations_mobx.tsx new file mode 100644 index 000000000..677178069 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_mobx.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_mobx(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_mobx; diff --git a/frontend/app/components/ui/Icons/integrations_newrelic.tsx b/frontend/app/components/ui/Icons/integrations_newrelic.tsx new file mode 100644 index 000000000..d1b049e26 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_newrelic.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_newrelic(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_newrelic; diff --git a/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx b/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx new file mode 100644 index 000000000..0e4156176 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_newrelic_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_newrelic_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_newrelic_text; diff --git a/frontend/app/components/ui/Icons/integrations_ngrx.tsx b/frontend/app/components/ui/Icons/integrations_ngrx.tsx new file mode 100644 index 000000000..d8e7067dc --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_ngrx.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_ngrx(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_ngrx; diff --git a/frontend/app/components/ui/Icons/integrations_openreplay.tsx b/frontend/app/components/ui/Icons/integrations_openreplay.tsx new file mode 100644 index 000000000..256642d67 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_openreplay.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_openreplay(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_openreplay; diff --git a/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx b/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx new file mode 100644 index 000000000..d0d9e65cd --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_openreplay_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_openreplay_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_openreplay_text; diff --git a/frontend/app/components/ui/Icons/integrations_redux.tsx b/frontend/app/components/ui/Icons/integrations_redux.tsx new file mode 100644 index 000000000..0dd707f61 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_redux.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_redux(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_redux; diff --git a/frontend/app/components/ui/Icons/integrations_rollbar.tsx b/frontend/app/components/ui/Icons/integrations_rollbar.tsx new file mode 100644 index 000000000..70f9c0ba3 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_rollbar.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_rollbar(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_rollbar; diff --git a/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx b/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx new file mode 100644 index 000000000..43ba2a486 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_rollbar_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_rollbar_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_rollbar_text; diff --git a/frontend/app/components/ui/Icons/integrations_segment.tsx b/frontend/app/components/ui/Icons/integrations_segment.tsx new file mode 100644 index 000000000..9e37b4bcc --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_segment.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_segment(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_segment; diff --git a/frontend/app/components/ui/Icons/integrations_sentry.tsx b/frontend/app/components/ui/Icons/integrations_sentry.tsx new file mode 100644 index 000000000..e8a361a35 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_sentry.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_sentry(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_sentry; diff --git a/frontend/app/components/ui/Icons/integrations_sentry_text.tsx b/frontend/app/components/ui/Icons/integrations_sentry_text.tsx new file mode 100644 index 000000000..5b76c9987 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_sentry_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_sentry_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_sentry_text; diff --git a/frontend/app/components/ui/Icons/integrations_slack.tsx b/frontend/app/components/ui/Icons/integrations_slack.tsx new file mode 100644 index 000000000..e82006661 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_slack.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_slack(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_slack; diff --git a/frontend/app/components/ui/Icons/integrations_slack_bw.tsx b/frontend/app/components/ui/Icons/integrations_slack_bw.tsx new file mode 100644 index 000000000..081c0ebf6 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_slack_bw.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_slack_bw(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_slack_bw; diff --git a/frontend/app/components/ui/Icons/integrations_stackdriver.tsx b/frontend/app/components/ui/Icons/integrations_stackdriver.tsx new file mode 100644 index 000000000..ed98ee2d6 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_stackdriver.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_stackdriver(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_stackdriver; diff --git a/frontend/app/components/ui/Icons/integrations_sumologic.tsx b/frontend/app/components/ui/Icons/integrations_sumologic.tsx new file mode 100644 index 000000000..5cc4ec4ea --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_sumologic.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_sumologic(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_sumologic; diff --git a/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx b/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx new file mode 100644 index 000000000..eda7caa57 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_sumologic_text.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_sumologic_text(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_sumologic_text; diff --git a/frontend/app/components/ui/Icons/integrations_teams.tsx b/frontend/app/components/ui/Icons/integrations_teams.tsx new file mode 100644 index 000000000..34e530e30 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_teams.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_teams(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_teams; diff --git a/frontend/app/components/ui/Icons/integrations_teams_white.tsx b/frontend/app/components/ui/Icons/integrations_teams_white.tsx new file mode 100644 index 000000000..16cfa7ac9 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_teams_white.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_teams_white(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_teams_white; diff --git a/frontend/app/components/ui/Icons/integrations_vuejs.tsx b/frontend/app/components/ui/Icons/integrations_vuejs.tsx new file mode 100644 index 000000000..4025f7639 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_vuejs.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_vuejs(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_vuejs; diff --git a/frontend/app/components/ui/Icons/integrations_zustand.tsx b/frontend/app/components/ui/Icons/integrations_zustand.tsx new file mode 100644 index 000000000..64870ca40 --- /dev/null +++ b/frontend/app/components/ui/Icons/integrations_zustand.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Integrations_zustand(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Integrations_zustand; diff --git a/frontend/app/components/ui/Icons/journal_code.tsx b/frontend/app/components/ui/Icons/journal_code.tsx new file mode 100644 index 000000000..707a15e1e --- /dev/null +++ b/frontend/app/components/ui/Icons/journal_code.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Journal_code(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Journal_code; diff --git a/frontend/app/components/ui/Icons/key.tsx b/frontend/app/components/ui/Icons/key.tsx new file mode 100644 index 000000000..73c80780d --- /dev/null +++ b/frontend/app/components/ui/Icons/key.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Key(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Key; diff --git a/frontend/app/components/ui/Icons/layer_group.tsx b/frontend/app/components/ui/Icons/layer_group.tsx new file mode 100644 index 000000000..873dc08b5 --- /dev/null +++ b/frontend/app/components/ui/Icons/layer_group.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Layer_group(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Layer_group; diff --git a/frontend/app/components/ui/Icons/layers_half.tsx b/frontend/app/components/ui/Icons/layers_half.tsx new file mode 100644 index 000000000..d0310bda4 --- /dev/null +++ b/frontend/app/components/ui/Icons/layers_half.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Layers_half(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Layers_half; diff --git a/frontend/app/components/ui/Icons/lightbulb.tsx b/frontend/app/components/ui/Icons/lightbulb.tsx new file mode 100644 index 000000000..2784459f0 --- /dev/null +++ b/frontend/app/components/ui/Icons/lightbulb.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Lightbulb(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Lightbulb; diff --git a/frontend/app/components/ui/Icons/lightbulb_on.tsx b/frontend/app/components/ui/Icons/lightbulb_on.tsx new file mode 100644 index 000000000..904294fc0 --- /dev/null +++ b/frontend/app/components/ui/Icons/lightbulb_on.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Lightbulb_on(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Lightbulb_on; diff --git a/frontend/app/components/ui/Icons/link_45deg.tsx b/frontend/app/components/ui/Icons/link_45deg.tsx new file mode 100644 index 000000000..e3a22aaf2 --- /dev/null +++ b/frontend/app/components/ui/Icons/link_45deg.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Link_45deg(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Link_45deg; diff --git a/frontend/app/components/ui/Icons/list.tsx b/frontend/app/components/ui/Icons/list.tsx new file mode 100644 index 000000000..04f9c3e2a --- /dev/null +++ b/frontend/app/components/ui/Icons/list.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function List(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default List; diff --git a/frontend/app/components/ui/Icons/list_alt.tsx b/frontend/app/components/ui/Icons/list_alt.tsx new file mode 100644 index 000000000..8c2993dff --- /dev/null +++ b/frontend/app/components/ui/Icons/list_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function List_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default List_alt; diff --git a/frontend/app/components/ui/Icons/list_arrow.tsx b/frontend/app/components/ui/Icons/list_arrow.tsx new file mode 100644 index 000000000..bf747bacb --- /dev/null +++ b/frontend/app/components/ui/Icons/list_arrow.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function List_arrow(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default List_arrow; diff --git a/frontend/app/components/ui/Icons/list_ul.tsx b/frontend/app/components/ui/Icons/list_ul.tsx new file mode 100644 index 000000000..c02e4cf0e --- /dev/null +++ b/frontend/app/components/ui/Icons/list_ul.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function List_ul(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default List_ul; diff --git a/frontend/app/components/ui/Icons/lock_alt.tsx b/frontend/app/components/ui/Icons/lock_alt.tsx new file mode 100644 index 000000000..d7f8dbaa3 --- /dev/null +++ b/frontend/app/components/ui/Icons/lock_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Lock_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Lock_alt; diff --git a/frontend/app/components/ui/Icons/low_disc_space.tsx b/frontend/app/components/ui/Icons/low_disc_space.tsx new file mode 100644 index 000000000..4e9fc26bc --- /dev/null +++ b/frontend/app/components/ui/Icons/low_disc_space.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Low_disc_space(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Low_disc_space; diff --git a/frontend/app/components/ui/Icons/magic.tsx b/frontend/app/components/ui/Icons/magic.tsx new file mode 100644 index 000000000..010eece28 --- /dev/null +++ b/frontend/app/components/ui/Icons/magic.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Magic(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Magic; diff --git a/frontend/app/components/ui/Icons/map_marker_alt.tsx b/frontend/app/components/ui/Icons/map_marker_alt.tsx new file mode 100644 index 000000000..5e786b2b3 --- /dev/null +++ b/frontend/app/components/ui/Icons/map_marker_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Map_marker_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Map_marker_alt; diff --git a/frontend/app/components/ui/Icons/memory.tsx b/frontend/app/components/ui/Icons/memory.tsx new file mode 100644 index 000000000..23c3eb035 --- /dev/null +++ b/frontend/app/components/ui/Icons/memory.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Memory(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Memory; diff --git a/frontend/app/components/ui/Icons/memory_ios.tsx b/frontend/app/components/ui/Icons/memory_ios.tsx new file mode 100644 index 000000000..5333c6b60 --- /dev/null +++ b/frontend/app/components/ui/Icons/memory_ios.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Memory_ios(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Memory_ios; diff --git a/frontend/app/components/ui/Icons/mic.tsx b/frontend/app/components/ui/Icons/mic.tsx new file mode 100644 index 000000000..72fe44caf --- /dev/null +++ b/frontend/app/components/ui/Icons/mic.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Mic(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Mic; diff --git a/frontend/app/components/ui/Icons/mic_mute.tsx b/frontend/app/components/ui/Icons/mic_mute.tsx new file mode 100644 index 000000000..0d7fdbcfa --- /dev/null +++ b/frontend/app/components/ui/Icons/mic_mute.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Mic_mute(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Mic_mute; diff --git a/frontend/app/components/ui/Icons/minus.tsx b/frontend/app/components/ui/Icons/minus.tsx new file mode 100644 index 000000000..969f4bb1a --- /dev/null +++ b/frontend/app/components/ui/Icons/minus.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Minus(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Minus; diff --git a/frontend/app/components/ui/Icons/mobile.tsx b/frontend/app/components/ui/Icons/mobile.tsx new file mode 100644 index 000000000..dd97974fc --- /dev/null +++ b/frontend/app/components/ui/Icons/mobile.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Mobile(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Mobile; diff --git a/frontend/app/components/ui/Icons/mouse_alt.tsx b/frontend/app/components/ui/Icons/mouse_alt.tsx new file mode 100644 index 000000000..5c45602c2 --- /dev/null +++ b/frontend/app/components/ui/Icons/mouse_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Mouse_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Mouse_alt; diff --git a/frontend/app/components/ui/Icons/network.tsx b/frontend/app/components/ui/Icons/network.tsx new file mode 100644 index 000000000..c745a482e --- /dev/null +++ b/frontend/app/components/ui/Icons/network.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Network(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Network; diff --git a/frontend/app/components/ui/Icons/next1.tsx b/frontend/app/components/ui/Icons/next1.tsx new file mode 100644 index 000000000..d49719d7e --- /dev/null +++ b/frontend/app/components/ui/Icons/next1.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Next1(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Next1; diff --git a/frontend/app/components/ui/Icons/no_dashboard.tsx b/frontend/app/components/ui/Icons/no_dashboard.tsx new file mode 100644 index 000000000..f1250316f --- /dev/null +++ b/frontend/app/components/ui/Icons/no_dashboard.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function No_dashboard(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default No_dashboard; diff --git a/frontend/app/components/ui/Icons/no_metrics.tsx b/frontend/app/components/ui/Icons/no_metrics.tsx new file mode 100644 index 000000000..e7bc31a25 --- /dev/null +++ b/frontend/app/components/ui/Icons/no_metrics.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function No_metrics(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default No_metrics; diff --git a/frontend/app/components/ui/Icons/no_metrics_chart.tsx b/frontend/app/components/ui/Icons/no_metrics_chart.tsx new file mode 100644 index 000000000..33d249c02 --- /dev/null +++ b/frontend/app/components/ui/Icons/no_metrics_chart.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function No_metrics_chart(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default No_metrics_chart; diff --git a/frontend/app/components/ui/Icons/no_recordings.tsx b/frontend/app/components/ui/Icons/no_recordings.tsx new file mode 100644 index 000000000..fb202232d --- /dev/null +++ b/frontend/app/components/ui/Icons/no_recordings.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function No_recordings(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default No_recordings; diff --git a/frontend/app/components/ui/Icons/os.tsx b/frontend/app/components/ui/Icons/os.tsx new file mode 100644 index 000000000..a4cbab865 --- /dev/null +++ b/frontend/app/components/ui/Icons/os.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os; diff --git a/frontend/app/components/ui/Icons/os_android.tsx b/frontend/app/components/ui/Icons/os_android.tsx new file mode 100644 index 000000000..9b3da6710 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_android.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_android(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_android; diff --git a/frontend/app/components/ui/Icons/os_chrome_os.tsx b/frontend/app/components/ui/Icons/os_chrome_os.tsx new file mode 100644 index 000000000..6005ae422 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_chrome_os.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_chrome_os(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_chrome_os; diff --git a/frontend/app/components/ui/Icons/os_fedora.tsx b/frontend/app/components/ui/Icons/os_fedora.tsx new file mode 100644 index 000000000..f809ba87b --- /dev/null +++ b/frontend/app/components/ui/Icons/os_fedora.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_fedora(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_fedora; diff --git a/frontend/app/components/ui/Icons/os_ios.tsx b/frontend/app/components/ui/Icons/os_ios.tsx new file mode 100644 index 000000000..b27364460 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_ios.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_ios(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_ios; diff --git a/frontend/app/components/ui/Icons/os_linux.tsx b/frontend/app/components/ui/Icons/os_linux.tsx new file mode 100644 index 000000000..3f1a2f1a8 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_linux.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_linux(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_linux; diff --git a/frontend/app/components/ui/Icons/os_mac_os_x.tsx b/frontend/app/components/ui/Icons/os_mac_os_x.tsx new file mode 100644 index 000000000..22574c4f5 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_mac_os_x.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_mac_os_x(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_mac_os_x; diff --git a/frontend/app/components/ui/Icons/os_other.tsx b/frontend/app/components/ui/Icons/os_other.tsx new file mode 100644 index 000000000..efa3abc94 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_other.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_other(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_other; diff --git a/frontend/app/components/ui/Icons/os_ubuntu.tsx b/frontend/app/components/ui/Icons/os_ubuntu.tsx new file mode 100644 index 000000000..2fae02a35 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_ubuntu.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_ubuntu(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_ubuntu; diff --git a/frontend/app/components/ui/Icons/os_windows.tsx b/frontend/app/components/ui/Icons/os_windows.tsx new file mode 100644 index 000000000..1a9f9d308 --- /dev/null +++ b/frontend/app/components/ui/Icons/os_windows.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Os_windows(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Os_windows; diff --git a/frontend/app/components/ui/Icons/pause.tsx b/frontend/app/components/ui/Icons/pause.tsx new file mode 100644 index 000000000..903008b83 --- /dev/null +++ b/frontend/app/components/ui/Icons/pause.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pause(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pause; diff --git a/frontend/app/components/ui/Icons/pause_circle_fill.tsx b/frontend/app/components/ui/Icons/pause_circle_fill.tsx new file mode 100644 index 000000000..c5e1e6262 --- /dev/null +++ b/frontend/app/components/ui/Icons/pause_circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pause_circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pause_circle_fill; diff --git a/frontend/app/components/ui/Icons/pause_fill.tsx b/frontend/app/components/ui/Icons/pause_fill.tsx new file mode 100644 index 000000000..1f5b256d1 --- /dev/null +++ b/frontend/app/components/ui/Icons/pause_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pause_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pause_fill; diff --git a/frontend/app/components/ui/Icons/pdf_download.tsx b/frontend/app/components/ui/Icons/pdf_download.tsx new file mode 100644 index 000000000..16ea79523 --- /dev/null +++ b/frontend/app/components/ui/Icons/pdf_download.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pdf_download(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pdf_download; diff --git a/frontend/app/components/ui/Icons/pencil.tsx b/frontend/app/components/ui/Icons/pencil.tsx new file mode 100644 index 000000000..aa38965da --- /dev/null +++ b/frontend/app/components/ui/Icons/pencil.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pencil(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pencil; diff --git a/frontend/app/components/ui/Icons/pencil_stop.tsx b/frontend/app/components/ui/Icons/pencil_stop.tsx new file mode 100644 index 000000000..2913412e7 --- /dev/null +++ b/frontend/app/components/ui/Icons/pencil_stop.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pencil_stop(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pencil_stop; diff --git a/frontend/app/components/ui/Icons/people.tsx b/frontend/app/components/ui/Icons/people.tsx new file mode 100644 index 000000000..5d87a7560 --- /dev/null +++ b/frontend/app/components/ui/Icons/people.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function People(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default People; diff --git a/frontend/app/components/ui/Icons/percent.tsx b/frontend/app/components/ui/Icons/percent.tsx new file mode 100644 index 000000000..5ba7592f6 --- /dev/null +++ b/frontend/app/components/ui/Icons/percent.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Percent(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Percent; diff --git a/frontend/app/components/ui/Icons/performance_icon.tsx b/frontend/app/components/ui/Icons/performance_icon.tsx new file mode 100644 index 000000000..5034c1f92 --- /dev/null +++ b/frontend/app/components/ui/Icons/performance_icon.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Performance_icon(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Performance_icon; diff --git a/frontend/app/components/ui/Icons/person.tsx b/frontend/app/components/ui/Icons/person.tsx new file mode 100644 index 000000000..d79c8c048 --- /dev/null +++ b/frontend/app/components/ui/Icons/person.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Person(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Person; diff --git a/frontend/app/components/ui/Icons/person_border.tsx b/frontend/app/components/ui/Icons/person_border.tsx new file mode 100644 index 000000000..86e3ece4a --- /dev/null +++ b/frontend/app/components/ui/Icons/person_border.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Person_border(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Person_border; diff --git a/frontend/app/components/ui/Icons/person_fill.tsx b/frontend/app/components/ui/Icons/person_fill.tsx new file mode 100644 index 000000000..8be480aaa --- /dev/null +++ b/frontend/app/components/ui/Icons/person_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Person_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Person_fill; diff --git a/frontend/app/components/ui/Icons/pie_chart_fill.tsx b/frontend/app/components/ui/Icons/pie_chart_fill.tsx new file mode 100644 index 000000000..8884d673e --- /dev/null +++ b/frontend/app/components/ui/Icons/pie_chart_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pie_chart_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pie_chart_fill; diff --git a/frontend/app/components/ui/Icons/pin_fill.tsx b/frontend/app/components/ui/Icons/pin_fill.tsx new file mode 100644 index 000000000..bea503cc5 --- /dev/null +++ b/frontend/app/components/ui/Icons/pin_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pin_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pin_fill; diff --git a/frontend/app/components/ui/Icons/play.tsx b/frontend/app/components/ui/Icons/play.tsx new file mode 100644 index 000000000..7a66249da --- /dev/null +++ b/frontend/app/components/ui/Icons/play.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play; diff --git a/frontend/app/components/ui/Icons/play_circle.tsx b/frontend/app/components/ui/Icons/play_circle.tsx new file mode 100644 index 000000000..207bb8771 --- /dev/null +++ b/frontend/app/components/ui/Icons/play_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play_circle; diff --git a/frontend/app/components/ui/Icons/play_circle_bold.tsx b/frontend/app/components/ui/Icons/play_circle_bold.tsx new file mode 100644 index 000000000..45ea21684 --- /dev/null +++ b/frontend/app/components/ui/Icons/play_circle_bold.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play_circle_bold(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play_circle_bold; diff --git a/frontend/app/components/ui/Icons/play_circle_light.tsx b/frontend/app/components/ui/Icons/play_circle_light.tsx new file mode 100644 index 000000000..2c032ca8e --- /dev/null +++ b/frontend/app/components/ui/Icons/play_circle_light.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play_circle_light(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play_circle_light; diff --git a/frontend/app/components/ui/Icons/play_fill.tsx b/frontend/app/components/ui/Icons/play_fill.tsx new file mode 100644 index 000000000..d26ab8af3 --- /dev/null +++ b/frontend/app/components/ui/Icons/play_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play_fill; diff --git a/frontend/app/components/ui/Icons/play_fill_new.tsx b/frontend/app/components/ui/Icons/play_fill_new.tsx new file mode 100644 index 000000000..98c2475aa --- /dev/null +++ b/frontend/app/components/ui/Icons/play_fill_new.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play_fill_new(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play_fill_new; diff --git a/frontend/app/components/ui/Icons/play_hover.tsx b/frontend/app/components/ui/Icons/play_hover.tsx new file mode 100644 index 000000000..7a703b9b2 --- /dev/null +++ b/frontend/app/components/ui/Icons/play_hover.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Play_hover(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Play_hover; diff --git a/frontend/app/components/ui/Icons/plug.tsx b/frontend/app/components/ui/Icons/plug.tsx new file mode 100644 index 000000000..457414dda --- /dev/null +++ b/frontend/app/components/ui/Icons/plug.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Plug(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Plug; diff --git a/frontend/app/components/ui/Icons/plus.tsx b/frontend/app/components/ui/Icons/plus.tsx new file mode 100644 index 000000000..f438d0c29 --- /dev/null +++ b/frontend/app/components/ui/Icons/plus.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Plus(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Plus; diff --git a/frontend/app/components/ui/Icons/plus_circle.tsx b/frontend/app/components/ui/Icons/plus_circle.tsx new file mode 100644 index 000000000..bd0695408 --- /dev/null +++ b/frontend/app/components/ui/Icons/plus_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Plus_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Plus_circle; diff --git a/frontend/app/components/ui/Icons/plus_lg.tsx b/frontend/app/components/ui/Icons/plus_lg.tsx new file mode 100644 index 000000000..6e6928e15 --- /dev/null +++ b/frontend/app/components/ui/Icons/plus_lg.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Plus_lg(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Plus_lg; diff --git a/frontend/app/components/ui/Icons/pointer_sessions_search.tsx b/frontend/app/components/ui/Icons/pointer_sessions_search.tsx new file mode 100644 index 000000000..e54b655b7 --- /dev/null +++ b/frontend/app/components/ui/Icons/pointer_sessions_search.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pointer_sessions_search(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pointer_sessions_search; diff --git a/frontend/app/components/ui/Icons/prev1.tsx b/frontend/app/components/ui/Icons/prev1.tsx new file mode 100644 index 000000000..0d47a518a --- /dev/null +++ b/frontend/app/components/ui/Icons/prev1.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Prev1(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Prev1; diff --git a/frontend/app/components/ui/Icons/pulse.tsx b/frontend/app/components/ui/Icons/pulse.tsx new file mode 100644 index 000000000..0e82faf5d --- /dev/null +++ b/frontend/app/components/ui/Icons/pulse.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Pulse(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Pulse; diff --git a/frontend/app/components/ui/Icons/puzzle.tsx b/frontend/app/components/ui/Icons/puzzle.tsx new file mode 100644 index 000000000..2f3d20bf0 --- /dev/null +++ b/frontend/app/components/ui/Icons/puzzle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Puzzle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Puzzle; diff --git a/frontend/app/components/ui/Icons/puzzle_piece.tsx b/frontend/app/components/ui/Icons/puzzle_piece.tsx new file mode 100644 index 000000000..ba9a9fe24 --- /dev/null +++ b/frontend/app/components/ui/Icons/puzzle_piece.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Puzzle_piece(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Puzzle_piece; diff --git a/frontend/app/components/ui/Icons/question_circle.tsx b/frontend/app/components/ui/Icons/question_circle.tsx new file mode 100644 index 000000000..972407e1b --- /dev/null +++ b/frontend/app/components/ui/Icons/question_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Question_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Question_circle; diff --git a/frontend/app/components/ui/Icons/question_lg.tsx b/frontend/app/components/ui/Icons/question_lg.tsx new file mode 100644 index 000000000..3959d452d --- /dev/null +++ b/frontend/app/components/ui/Icons/question_lg.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Question_lg(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Question_lg; diff --git a/frontend/app/components/ui/Icons/quote_left.tsx b/frontend/app/components/ui/Icons/quote_left.tsx new file mode 100644 index 000000000..4319f4f59 --- /dev/null +++ b/frontend/app/components/ui/Icons/quote_left.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Quote_left(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Quote_left; diff --git a/frontend/app/components/ui/Icons/quote_right.tsx b/frontend/app/components/ui/Icons/quote_right.tsx new file mode 100644 index 000000000..9aff76100 --- /dev/null +++ b/frontend/app/components/ui/Icons/quote_right.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Quote_right(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Quote_right; diff --git a/frontend/app/components/ui/Icons/quotes.tsx b/frontend/app/components/ui/Icons/quotes.tsx new file mode 100644 index 000000000..54c70d6b4 --- /dev/null +++ b/frontend/app/components/ui/Icons/quotes.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Quotes(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Quotes; diff --git a/frontend/app/components/ui/Icons/record2.tsx b/frontend/app/components/ui/Icons/record2.tsx new file mode 100644 index 000000000..985b85f5a --- /dev/null +++ b/frontend/app/components/ui/Icons/record2.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Record2(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Record2; diff --git a/frontend/app/components/ui/Icons/record_btn.tsx b/frontend/app/components/ui/Icons/record_btn.tsx new file mode 100644 index 000000000..3056f7f27 --- /dev/null +++ b/frontend/app/components/ui/Icons/record_btn.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Record_btn(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Record_btn; diff --git a/frontend/app/components/ui/Icons/record_circle.tsx b/frontend/app/components/ui/Icons/record_circle.tsx new file mode 100644 index 000000000..10807a9fa --- /dev/null +++ b/frontend/app/components/ui/Icons/record_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Record_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Record_circle; diff --git a/frontend/app/components/ui/Icons/record_circle_fill.tsx b/frontend/app/components/ui/Icons/record_circle_fill.tsx new file mode 100644 index 000000000..a6c0f0452 --- /dev/null +++ b/frontend/app/components/ui/Icons/record_circle_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Record_circle_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Record_circle_fill; diff --git a/frontend/app/components/ui/Icons/redo.tsx b/frontend/app/components/ui/Icons/redo.tsx new file mode 100644 index 000000000..bd127473e --- /dev/null +++ b/frontend/app/components/ui/Icons/redo.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Redo(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Redo; diff --git a/frontend/app/components/ui/Icons/redo_back.tsx b/frontend/app/components/ui/Icons/redo_back.tsx new file mode 100644 index 000000000..e72740698 --- /dev/null +++ b/frontend/app/components/ui/Icons/redo_back.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Redo_back(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Redo_back; diff --git a/frontend/app/components/ui/Icons/redux.tsx b/frontend/app/components/ui/Icons/redux.tsx new file mode 100644 index 000000000..d4ffa51d4 --- /dev/null +++ b/frontend/app/components/ui/Icons/redux.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Redux(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Redux; diff --git a/frontend/app/components/ui/Icons/remote_control.tsx b/frontend/app/components/ui/Icons/remote_control.tsx new file mode 100644 index 000000000..73e2e69a5 --- /dev/null +++ b/frontend/app/components/ui/Icons/remote_control.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Remote_control(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Remote_control; diff --git a/frontend/app/components/ui/Icons/replay_10.tsx b/frontend/app/components/ui/Icons/replay_10.tsx new file mode 100644 index 000000000..3558fdd06 --- /dev/null +++ b/frontend/app/components/ui/Icons/replay_10.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Replay_10(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Replay_10; diff --git a/frontend/app/components/ui/Icons/resources_icon.tsx b/frontend/app/components/ui/Icons/resources_icon.tsx new file mode 100644 index 000000000..99c211f86 --- /dev/null +++ b/frontend/app/components/ui/Icons/resources_icon.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Resources_icon(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Resources_icon; diff --git a/frontend/app/components/ui/Icons/safe.tsx b/frontend/app/components/ui/Icons/safe.tsx new file mode 100644 index 000000000..e5a99cb08 --- /dev/null +++ b/frontend/app/components/ui/Icons/safe.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Safe(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Safe; diff --git a/frontend/app/components/ui/Icons/safe_fill.tsx b/frontend/app/components/ui/Icons/safe_fill.tsx new file mode 100644 index 000000000..9a6742b22 --- /dev/null +++ b/frontend/app/components/ui/Icons/safe_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Safe_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Safe_fill; diff --git a/frontend/app/components/ui/Icons/sandglass.tsx b/frontend/app/components/ui/Icons/sandglass.tsx new file mode 100644 index 000000000..ef4cc64eb --- /dev/null +++ b/frontend/app/components/ui/Icons/sandglass.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Sandglass(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Sandglass; diff --git a/frontend/app/components/ui/Icons/search.tsx b/frontend/app/components/ui/Icons/search.tsx new file mode 100644 index 000000000..19760749e --- /dev/null +++ b/frontend/app/components/ui/Icons/search.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Search(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Search; diff --git a/frontend/app/components/ui/Icons/search_notification.tsx b/frontend/app/components/ui/Icons/search_notification.tsx new file mode 100644 index 000000000..c4c46167e --- /dev/null +++ b/frontend/app/components/ui/Icons/search_notification.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Search_notification(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Search_notification; diff --git a/frontend/app/components/ui/Icons/server.tsx b/frontend/app/components/ui/Icons/server.tsx new file mode 100644 index 000000000..d4b5e9acc --- /dev/null +++ b/frontend/app/components/ui/Icons/server.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Server(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Server; diff --git a/frontend/app/components/ui/Icons/share_alt.tsx b/frontend/app/components/ui/Icons/share_alt.tsx new file mode 100644 index 000000000..7055f9f49 --- /dev/null +++ b/frontend/app/components/ui/Icons/share_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Share_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Share_alt; diff --git a/frontend/app/components/ui/Icons/shield_lock.tsx b/frontend/app/components/ui/Icons/shield_lock.tsx new file mode 100644 index 000000000..5f3db91ae --- /dev/null +++ b/frontend/app/components/ui/Icons/shield_lock.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Shield_lock(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Shield_lock; diff --git a/frontend/app/components/ui/Icons/side_menu_closed.tsx b/frontend/app/components/ui/Icons/side_menu_closed.tsx new file mode 100644 index 000000000..49d6c89f8 --- /dev/null +++ b/frontend/app/components/ui/Icons/side_menu_closed.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Side_menu_closed(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Side_menu_closed; diff --git a/frontend/app/components/ui/Icons/side_menu_open.tsx b/frontend/app/components/ui/Icons/side_menu_open.tsx new file mode 100644 index 000000000..078475bce --- /dev/null +++ b/frontend/app/components/ui/Icons/side_menu_open.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Side_menu_open(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Side_menu_open; diff --git a/frontend/app/components/ui/Icons/signpost_split.tsx b/frontend/app/components/ui/Icons/signpost_split.tsx new file mode 100644 index 000000000..3cd780361 --- /dev/null +++ b/frontend/app/components/ui/Icons/signpost_split.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Signpost_split(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Signpost_split; diff --git a/frontend/app/components/ui/Icons/signup.tsx b/frontend/app/components/ui/Icons/signup.tsx new file mode 100644 index 000000000..02535d962 --- /dev/null +++ b/frontend/app/components/ui/Icons/signup.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Signup(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Signup; diff --git a/frontend/app/components/ui/Icons/skip_forward.tsx b/frontend/app/components/ui/Icons/skip_forward.tsx new file mode 100644 index 000000000..2b31b3784 --- /dev/null +++ b/frontend/app/components/ui/Icons/skip_forward.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Skip_forward(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Skip_forward; diff --git a/frontend/app/components/ui/Icons/skip_forward_fill.tsx b/frontend/app/components/ui/Icons/skip_forward_fill.tsx new file mode 100644 index 000000000..4797d5571 --- /dev/null +++ b/frontend/app/components/ui/Icons/skip_forward_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Skip_forward_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Skip_forward_fill; diff --git a/frontend/app/components/ui/Icons/slack.tsx b/frontend/app/components/ui/Icons/slack.tsx new file mode 100644 index 000000000..0fc903e9a --- /dev/null +++ b/frontend/app/components/ui/Icons/slack.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Slack(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Slack; diff --git a/frontend/app/components/ui/Icons/slash_circle.tsx b/frontend/app/components/ui/Icons/slash_circle.tsx new file mode 100644 index 000000000..f48a8a734 --- /dev/null +++ b/frontend/app/components/ui/Icons/slash_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Slash_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Slash_circle; diff --git a/frontend/app/components/ui/Icons/sleep.tsx b/frontend/app/components/ui/Icons/sleep.tsx new file mode 100644 index 000000000..27f6ab2c9 --- /dev/null +++ b/frontend/app/components/ui/Icons/sleep.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Sleep(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Sleep; diff --git a/frontend/app/components/ui/Icons/sliders.tsx b/frontend/app/components/ui/Icons/sliders.tsx new file mode 100644 index 000000000..fa0957a52 --- /dev/null +++ b/frontend/app/components/ui/Icons/sliders.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Sliders(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Sliders; diff --git a/frontend/app/components/ui/Icons/social_slack.tsx b/frontend/app/components/ui/Icons/social_slack.tsx new file mode 100644 index 000000000..b44bb6b6a --- /dev/null +++ b/frontend/app/components/ui/Icons/social_slack.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Social_slack(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Social_slack; diff --git a/frontend/app/components/ui/Icons/social_trello.tsx b/frontend/app/components/ui/Icons/social_trello.tsx new file mode 100644 index 000000000..ad0f54b5b --- /dev/null +++ b/frontend/app/components/ui/Icons/social_trello.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Social_trello(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Social_trello; diff --git a/frontend/app/components/ui/Icons/speedometer2.tsx b/frontend/app/components/ui/Icons/speedometer2.tsx new file mode 100644 index 000000000..c9e9c25d8 --- /dev/null +++ b/frontend/app/components/ui/Icons/speedometer2.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Speedometer2(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Speedometer2; diff --git a/frontend/app/components/ui/Icons/spinner.tsx b/frontend/app/components/ui/Icons/spinner.tsx new file mode 100644 index 000000000..5c1baf371 --- /dev/null +++ b/frontend/app/components/ui/Icons/spinner.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Spinner(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Spinner; diff --git a/frontend/app/components/ui/Icons/star.tsx b/frontend/app/components/ui/Icons/star.tsx new file mode 100644 index 000000000..70bfc1e73 --- /dev/null +++ b/frontend/app/components/ui/Icons/star.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Star(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Star; diff --git a/frontend/app/components/ui/Icons/star_solid.tsx b/frontend/app/components/ui/Icons/star_solid.tsx new file mode 100644 index 000000000..df54b93bf --- /dev/null +++ b/frontend/app/components/ui/Icons/star_solid.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Star_solid(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Star_solid; diff --git a/frontend/app/components/ui/Icons/step_forward.tsx b/frontend/app/components/ui/Icons/step_forward.tsx new file mode 100644 index 000000000..3de62fd09 --- /dev/null +++ b/frontend/app/components/ui/Icons/step_forward.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Step_forward(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Step_forward; diff --git a/frontend/app/components/ui/Icons/stickies.tsx b/frontend/app/components/ui/Icons/stickies.tsx new file mode 100644 index 000000000..538de0953 --- /dev/null +++ b/frontend/app/components/ui/Icons/stickies.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Stickies(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Stickies; diff --git a/frontend/app/components/ui/Icons/stop_record_circle.tsx b/frontend/app/components/ui/Icons/stop_record_circle.tsx new file mode 100644 index 000000000..ba43a2450 --- /dev/null +++ b/frontend/app/components/ui/Icons/stop_record_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Stop_record_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Stop_record_circle; diff --git a/frontend/app/components/ui/Icons/stopwatch.tsx b/frontend/app/components/ui/Icons/stopwatch.tsx new file mode 100644 index 000000000..6462a2916 --- /dev/null +++ b/frontend/app/components/ui/Icons/stopwatch.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Stopwatch(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Stopwatch; diff --git a/frontend/app/components/ui/Icons/store.tsx b/frontend/app/components/ui/Icons/store.tsx new file mode 100644 index 000000000..f7bc5283e --- /dev/null +++ b/frontend/app/components/ui/Icons/store.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Store(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Store; diff --git a/frontend/app/components/ui/Icons/sync_alt.tsx b/frontend/app/components/ui/Icons/sync_alt.tsx new file mode 100644 index 000000000..68bb04f09 --- /dev/null +++ b/frontend/app/components/ui/Icons/sync_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Sync_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Sync_alt; diff --git a/frontend/app/components/ui/Icons/table.tsx b/frontend/app/components/ui/Icons/table.tsx new file mode 100644 index 000000000..f1404ce61 --- /dev/null +++ b/frontend/app/components/ui/Icons/table.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Table(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Table; diff --git a/frontend/app/components/ui/Icons/table_new.tsx b/frontend/app/components/ui/Icons/table_new.tsx new file mode 100644 index 000000000..e8d45b997 --- /dev/null +++ b/frontend/app/components/ui/Icons/table_new.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Table_new(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Table_new; diff --git a/frontend/app/components/ui/Icons/tablet_android.tsx b/frontend/app/components/ui/Icons/tablet_android.tsx new file mode 100644 index 000000000..c2675b767 --- /dev/null +++ b/frontend/app/components/ui/Icons/tablet_android.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Tablet_android(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Tablet_android; diff --git a/frontend/app/components/ui/Icons/tachometer_slow.tsx b/frontend/app/components/ui/Icons/tachometer_slow.tsx new file mode 100644 index 000000000..0a93f1fcf --- /dev/null +++ b/frontend/app/components/ui/Icons/tachometer_slow.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Tachometer_slow(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Tachometer_slow; diff --git a/frontend/app/components/ui/Icons/tachometer_slowest.tsx b/frontend/app/components/ui/Icons/tachometer_slowest.tsx new file mode 100644 index 000000000..3173b224a --- /dev/null +++ b/frontend/app/components/ui/Icons/tachometer_slowest.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Tachometer_slowest(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Tachometer_slowest; diff --git a/frontend/app/components/ui/Icons/tags.tsx b/frontend/app/components/ui/Icons/tags.tsx new file mode 100644 index 000000000..ee6db9f0c --- /dev/null +++ b/frontend/app/components/ui/Icons/tags.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Tags(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Tags; diff --git a/frontend/app/components/ui/Icons/team_funnel.tsx b/frontend/app/components/ui/Icons/team_funnel.tsx new file mode 100644 index 000000000..2d3a438e5 --- /dev/null +++ b/frontend/app/components/ui/Icons/team_funnel.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Team_funnel(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Team_funnel; diff --git a/frontend/app/components/ui/Icons/telephone.tsx b/frontend/app/components/ui/Icons/telephone.tsx new file mode 100644 index 000000000..1fd1bca15 --- /dev/null +++ b/frontend/app/components/ui/Icons/telephone.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Telephone(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Telephone; diff --git a/frontend/app/components/ui/Icons/telephone_fill.tsx b/frontend/app/components/ui/Icons/telephone_fill.tsx new file mode 100644 index 000000000..fa8cbf0a8 --- /dev/null +++ b/frontend/app/components/ui/Icons/telephone_fill.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Telephone_fill(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Telephone_fill; diff --git a/frontend/app/components/ui/Icons/terminal.tsx b/frontend/app/components/ui/Icons/terminal.tsx new file mode 100644 index 000000000..f020fc1ca --- /dev/null +++ b/frontend/app/components/ui/Icons/terminal.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Terminal(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Terminal; diff --git a/frontend/app/components/ui/Icons/text_paragraph.tsx b/frontend/app/components/ui/Icons/text_paragraph.tsx new file mode 100644 index 000000000..1b6f0d037 --- /dev/null +++ b/frontend/app/components/ui/Icons/text_paragraph.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Text_paragraph(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Text_paragraph; diff --git a/frontend/app/components/ui/Icons/thermometer_sun.tsx b/frontend/app/components/ui/Icons/thermometer_sun.tsx new file mode 100644 index 000000000..1b8d2a8c5 --- /dev/null +++ b/frontend/app/components/ui/Icons/thermometer_sun.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Thermometer_sun(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Thermometer_sun; diff --git a/frontend/app/components/ui/Icons/toggles.tsx b/frontend/app/components/ui/Icons/toggles.tsx new file mode 100644 index 000000000..867e7ae20 --- /dev/null +++ b/frontend/app/components/ui/Icons/toggles.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Toggles(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Toggles; diff --git a/frontend/app/components/ui/Icons/tools.tsx b/frontend/app/components/ui/Icons/tools.tsx new file mode 100644 index 000000000..9bac43844 --- /dev/null +++ b/frontend/app/components/ui/Icons/tools.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Tools(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Tools; diff --git a/frontend/app/components/ui/Icons/trash.tsx b/frontend/app/components/ui/Icons/trash.tsx new file mode 100644 index 000000000..64a7e08a8 --- /dev/null +++ b/frontend/app/components/ui/Icons/trash.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Trash(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Trash; diff --git a/frontend/app/components/ui/Icons/turtle.tsx b/frontend/app/components/ui/Icons/turtle.tsx new file mode 100644 index 000000000..b8dd0e15b --- /dev/null +++ b/frontend/app/components/ui/Icons/turtle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Turtle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Turtle; diff --git a/frontend/app/components/ui/Icons/user_alt.tsx b/frontend/app/components/ui/Icons/user_alt.tsx new file mode 100644 index 000000000..2f4b2dc08 --- /dev/null +++ b/frontend/app/components/ui/Icons/user_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function User_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default User_alt; diff --git a/frontend/app/components/ui/Icons/user_circle.tsx b/frontend/app/components/ui/Icons/user_circle.tsx new file mode 100644 index 000000000..bf391d693 --- /dev/null +++ b/frontend/app/components/ui/Icons/user_circle.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function User_circle(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default User_circle; diff --git a/frontend/app/components/ui/Icons/user_friends.tsx b/frontend/app/components/ui/Icons/user_friends.tsx new file mode 100644 index 000000000..4d9dfcb07 --- /dev/null +++ b/frontend/app/components/ui/Icons/user_friends.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function User_friends(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default User_friends; diff --git a/frontend/app/components/ui/Icons/users.tsx b/frontend/app/components/ui/Icons/users.tsx new file mode 100644 index 000000000..bc6a852d6 --- /dev/null +++ b/frontend/app/components/ui/Icons/users.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Users(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Users; diff --git a/frontend/app/components/ui/Icons/vendors_graphql.tsx b/frontend/app/components/ui/Icons/vendors_graphql.tsx new file mode 100644 index 000000000..2bc4fb492 --- /dev/null +++ b/frontend/app/components/ui/Icons/vendors_graphql.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Vendors_graphql(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Vendors_graphql; diff --git a/frontend/app/components/ui/Icons/vendors_mobx.tsx b/frontend/app/components/ui/Icons/vendors_mobx.tsx new file mode 100644 index 000000000..f14ef7f09 --- /dev/null +++ b/frontend/app/components/ui/Icons/vendors_mobx.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Vendors_mobx(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Vendors_mobx; diff --git a/frontend/app/components/ui/Icons/vendors_ngrx.tsx b/frontend/app/components/ui/Icons/vendors_ngrx.tsx new file mode 100644 index 000000000..bd1ffb82c --- /dev/null +++ b/frontend/app/components/ui/Icons/vendors_ngrx.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Vendors_ngrx(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Vendors_ngrx; diff --git a/frontend/app/components/ui/Icons/vendors_redux.tsx b/frontend/app/components/ui/Icons/vendors_redux.tsx new file mode 100644 index 000000000..42779a435 --- /dev/null +++ b/frontend/app/components/ui/Icons/vendors_redux.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Vendors_redux(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Vendors_redux; diff --git a/frontend/app/components/ui/Icons/vendors_vuex.tsx b/frontend/app/components/ui/Icons/vendors_vuex.tsx new file mode 100644 index 000000000..b24f9f29a --- /dev/null +++ b/frontend/app/components/ui/Icons/vendors_vuex.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Vendors_vuex(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Vendors_vuex; diff --git a/frontend/app/components/ui/Icons/web_vitals.tsx b/frontend/app/components/ui/Icons/web_vitals.tsx new file mode 100644 index 000000000..67697a12b --- /dev/null +++ b/frontend/app/components/ui/Icons/web_vitals.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Web_vitals(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Web_vitals; diff --git a/frontend/app/components/ui/Icons/wifi.tsx b/frontend/app/components/ui/Icons/wifi.tsx new file mode 100644 index 000000000..f88a4be9d --- /dev/null +++ b/frontend/app/components/ui/Icons/wifi.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Wifi(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Wifi; diff --git a/frontend/app/components/ui/Icons/window.tsx b/frontend/app/components/ui/Icons/window.tsx new file mode 100644 index 000000000..69a44780b --- /dev/null +++ b/frontend/app/components/ui/Icons/window.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Window(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Window; diff --git a/frontend/app/components/ui/Icons/window_alt.tsx b/frontend/app/components/ui/Icons/window_alt.tsx new file mode 100644 index 000000000..88623c453 --- /dev/null +++ b/frontend/app/components/ui/Icons/window_alt.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Window_alt(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Window_alt; diff --git a/frontend/app/components/ui/Icons/window_restore.tsx b/frontend/app/components/ui/Icons/window_restore.tsx new file mode 100644 index 000000000..de17e8cda --- /dev/null +++ b/frontend/app/components/ui/Icons/window_restore.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Window_restore(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Window_restore; diff --git a/frontend/app/components/ui/Icons/window_x.tsx b/frontend/app/components/ui/Icons/window_x.tsx new file mode 100644 index 000000000..4911aed21 --- /dev/null +++ b/frontend/app/components/ui/Icons/window_x.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Window_x(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Window_x; diff --git a/frontend/app/components/ui/Icons/zoom_in.tsx b/frontend/app/components/ui/Icons/zoom_in.tsx new file mode 100644 index 000000000..2716dff9c --- /dev/null +++ b/frontend/app/components/ui/Icons/zoom_in.tsx @@ -0,0 +1,19 @@ + +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function Zoom_in(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + + ); +} + +export default Zoom_in; diff --git a/frontend/app/components/ui/SVG.tsx b/frontend/app/components/ui/SVG.tsx index 54e517bc5..1acce18dc 100644 --- a/frontend/app/components/ui/SVG.tsx +++ b/frontend/app/components/ui/SVG.tsx @@ -1,10 +1,482 @@ +/* Auto-generated, do not edit */ import React from 'react'; +import { + Activity, +Alarm_clock, +Alarm_plus, +All_sessions, +Analytics, +Anchor, +Arrow_alt_square_right, +Arrow_bar_left, +Arrow_clockwise, +Arrow_counterclockwise, +Arrow_down_short, +Arrow_down_up, +Arrow_down, +Arrow_repeat, +Arrow_right_short, +Arrow_square_left, +Arrow_square_right, +Arrow_up_short, +Arrow_up, +Arrows_angle_extend, +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_fill, +Bell_plus, +Bell_slash, +Bell, +Binoculars, +Book_doc, +Book, +Bookmark, +Broadcast, +Browser_browser, +Browser_chrome, +Browser_edge, +Browser_electron, +Browser_facebook, +Browser_firefox, +Browser_ie, +Browser_opera, +Browser_safari, +Buildings, +Bullhorn, +Business_time, +Calendar_alt, +Calendar_check, +Calendar_day, +Calendar, +Call, +Camera_alt, +Camera_video_off, +Camera_video, +Camera, +Card_checklist, +Card_list, +Card_text, +Caret_down_fill, +Caret_left_fill, +Caret_right_fill, +Caret_up_fill, +Chat_dots, +Chat_left_text, +Chat_right_text, +Chat_square_quote, +Check_circle_fill, +Check_circle, +Check, +Chevron_double_left, +Chevron_double_right, +Chevron_down, +Chevron_left, +Chevron_right, +Chevron_up, +Circle_fill, +Circle, +Click_hesitation, +Click_rage, +Clipboard_check, +Clipboard_list_check, +Clock_history, +Clock, +Close, +Cloud_fog2_fill, +Code, +Cog, +Cogs, +Collection_play, +Collection, +Columns_gap_filled, +Columns_gap, +Console_error, +Console_exception, +Console_info, +Console_warning, +Console, +Controller, +Cookies, +Copy, +Credit_card_2_back, +Credit_card_front, +Cross, +Cubes, +Cursor_trash, +Dash, +Dashboard_icn, +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, +Dice_3, +Dizzy, +Door_closed, +Doublecheck, +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, +Expand_wide, +Explosion, +External_link_alt, +Eye_slash_fill, +Eye_slash, +Eye, +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_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_state_action, +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_new, +Funnel, +Gear_fill, +Gear, +Geo_alt_fill_custom, +Github, +Graph_up_arrow, +Graph_up, +Grid_1x2, +Grid_3x3, +Grid_check, +Grid_horizontal, +Grid, +Grip_horizontal, +Hash, +Hdd_stack, +Headset, +Heart_rate, +High_engagement, +History, +Hourglass_start, +Ic_errors, +Ic_network, +Ic_rage, +Ic_resources, +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_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, +Layer_group, +Layers_half, +Lightbulb_on, +Lightbulb, +Link_45deg, +List_alt, +List_arrow, +List_ul, +List, +Lock_alt, +Low_disc_space, +Magic, +Map_marker_alt, +Memory_ios, +Memory, +Mic_mute, +Mic, +Minus, +Mobile, +Mouse_alt, +Network, +Next1, +No_dashboard, +No_metrics_chart, +No_metrics, +No_recordings, +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_lg, +Plus, +Pointer_sessions_search, +Prev1, +Pulse, +Puzzle_piece, +Puzzle, +Question_circle, +Question_lg, +Quote_left, +Quote_right, +Quotes, +Record_btn, +Record_circle_fill, +Record_circle, +Record2, +Redo_back, +Redo, +Redux, +Remote_control, +Replay_10, +Resources_icon, +Safe_fill, +Safe, +Sandglass, +Search, +Search_notification, +Server, +Share_alt, +Shield_lock, +Side_menu_closed, +Side_menu_open, +Signpost_split, +Signup, +Skip_forward_fill, +Skip_forward, +Slack, +Slash_circle, +Sleep, +Sliders, +Social_slack, +Social_trello, +Speedometer2, +Spinner, +Star_solid, +Star, +Step_forward, +Stickies, +Stop_record_circle, +Stopwatch, +Store, +Sync_alt, +Table_new, +Table, +Tablet_android, +Tachometer_slow, +Tachometer_slowest, +Tags, +Team_funnel, +Telephone_fill, +Telephone, +Terminal, +Text_paragraph, +Thermometer_sun, +Toggles, +Tools, +Trash, +Turtle, +User_alt, +User_circle, +User_friends, +Users, +Vendors_graphql, +Vendors_mobx, +Vendors_ngrx, +Vendors_redux, +Vendors_vuex, +Web_vitals, +Wifi, +Window_alt, +Window_restore, +Window_x, +Window, +Zoom_in +} from './Icons' -export type IconNames = 'activity' | 'alarm-clock' | 'alarm-plus' | 'all-sessions' | 'analytics' | 'anchor' | 'arrow-alt-square-right' | 'arrow-bar-left' | 'arrow-clockwise' | 'arrow-counterclockwise' | 'arrow-down-short' | 'arrow-down-up' | 'arrow-down' | 'arrow-repeat' | 'arrow-right-short' | 'arrow-square-left' | 'arrow-square-right' | 'arrow-up-short' | 'arrow-up' | 'arrows-angle-extend' | '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-fill' | 'bell-plus' | 'bell-slash' | 'bell' | 'binoculars' | 'book-doc' | 'book' | 'bookmark' | 'broadcast' | 'browser/browser' | 'browser/chrome' | 'browser/edge' | 'browser/electron' | 'browser/facebook' | 'browser/firefox' | 'browser/ie' | 'browser/opera' | 'browser/safari' | 'buildings' | 'bullhorn' | 'business-time' | 'calendar-alt' | 'calendar-check' | 'calendar-day' | 'calendar' | 'call' | 'camera-alt' | 'camera-video-off' | 'camera-video' | 'camera' | 'card-checklist' | 'card-list' | 'card-text' | 'caret-down-fill' | 'caret-left-fill' | 'caret-right-fill' | 'caret-up-fill' | 'chat-dots' | 'chat-left-text' | 'chat-right-text' | 'chat-square-quote' | 'check-circle-fill' | 'check-circle' | 'check' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-fill' | 'circle' | 'click-hesitation' | 'click-rage' | 'clipboard-check' | 'clipboard-list-check' | 'clock-history' | 'clock' | 'close' | 'cloud-fog2-fill' | 'code' | 'cog' | 'cogs' | 'collection-play' | 'collection' | 'columns-gap-filled' | 'columns-gap' | 'console/error' | 'console/exception' | 'console/info' | 'console/warning' | 'console' | 'controller' | 'cookies' | 'copy' | 'credit-card-2-back' | 'credit-card-front' | 'cross' | 'cubes' | 'cursor-trash' | 'dash' | 'dashboard-icn' | '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' | 'dice-3' | 'dizzy' | 'door-closed' | 'doublecheck' | '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' | 'expand-wide' | 'explosion' | 'external-link-alt' | 'eye-slash-fill' | 'eye-slash' | 'eye' | '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/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/state-action' | '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-new' | 'funnel' | 'gear-fill' | 'gear' | 'geo-alt-fill-custom' | 'github' | 'graph-up-arrow' | 'graph-up' | 'grid-1x2' | 'grid-3x3' | 'grid-check' | 'grid-horizontal' | 'grid' | 'grip-horizontal' | 'hash' | 'hdd-stack' | 'headset' | 'heart-rate' | 'high-engagement' | 'history' | 'hourglass-start' | 'ic-errors' | 'ic-network' | 'ic-rage' | 'ic-resources' | '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/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' | 'layer-group' | 'layers-half' | 'lightbulb-on' | 'lightbulb' | 'link-45deg' | 'list-alt' | 'list-arrow' | 'list-ul' | 'list' | 'lock-alt' | 'low-disc-space' | 'magic' | 'map-marker-alt' | 'memory-ios' | 'memory' | 'mic-mute' | 'mic' | 'minus' | 'mobile' | 'mouse-alt' | 'network' | 'next1' | 'no-dashboard' | 'no-metrics-chart' | 'no-metrics' | 'no-recordings' | '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-lg' | 'plus' | 'pointer-sessions-search' | 'prev1' | 'pulse' | 'puzzle-piece' | 'puzzle' | 'question-circle' | 'question-lg' | 'quote-left' | 'quote-right' | 'quotes' | 'record-btn' | 'record-circle-fill' | 'record-circle' | 'record2' | 'redo-back' | 'redo' | 'redux' | 'remote-control' | 'replay-10' | 'resources-icon' | 'safe-fill' | 'safe' | 'sandglass' | 'search' | 'search_notification' | 'server' | 'share-alt' | 'shield-lock' | 'side_menu_closed' | 'side_menu_open' | 'signpost-split' | 'signup' | 'skip-forward-fill' | 'skip-forward' | 'slack' | 'slash-circle' | 'sleep' | 'sliders' | 'social/slack' | 'social/trello' | 'speedometer2' | 'spinner' | 'star-solid' | 'star' | 'step-forward' | 'stickies' | 'stop-record-circle' | 'stopwatch' | 'store' | 'sync-alt' | 'table-new' | 'table' | 'tablet-android' | 'tachometer-slow' | 'tachometer-slowest' | 'tags' | 'team-funnel' | 'telephone-fill' | 'telephone' | 'terminal' | 'text-paragraph' | 'thermometer-sun' | 'toggles' | 'tools' | 'trash' | 'turtle' | 'user-alt' | 'user-circle' | 'user-friends' | 'users' | 'vendors/graphql' | 'vendors/mobx' | 'vendors/ngrx' | 'vendors/redux' | 'vendors/vuex' | 'web-vitals' | 'wifi' | 'window-alt' | 'window-restore' | 'window-x' | 'window' | 'zoom-in'; + +// export type IconNames = 'activity' | 'alarm_clock' | 'alarm_plus' | 'all_sessions' | 'analytics' | 'anchor' | 'arrow_alt_square_right' | 'arrow_bar_left' | 'arrow_clockwise' | 'arrow_counterclockwise' | 'arrow_down_short' | 'arrow_down_up' | 'arrow_down' | 'arrow_repeat' | 'arrow_right_short' | 'arrow_square_left' | 'arrow_square_right' | 'arrow_up_short' | 'arrow_up' | 'arrows_angle_extend' | '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_fill' | 'bell_plus' | 'bell_slash' | 'bell' | 'binoculars' | 'book_doc' | 'book' | 'bookmark' | 'broadcast' | 'browser/browser' | 'browser/chrome' | 'browser/edge' | 'browser/electron' | 'browser/facebook' | 'browser/firefox' | 'browser/ie' | 'browser/opera' | 'browser/safari' | 'buildings' | 'bullhorn' | 'business_time' | 'calendar_alt' | 'calendar_check' | 'calendar_day' | 'calendar' | 'call' | 'camera_alt' | 'camera_video_off' | 'camera_video' | 'camera' | 'card_checklist' | 'card_list' | 'card_text' | 'caret_down_fill' | 'caret_left_fill' | 'caret_right_fill' | 'caret_up_fill' | 'chat_dots' | 'chat_left_text' | 'chat_right_text' | 'chat_square_quote' | 'check_circle_fill' | 'check_circle' | 'check' | 'chevron_double_left' | 'chevron_double_right' | 'chevron_down' | 'chevron_left' | 'chevron_right' | 'chevron_up' | 'circle_fill' | 'circle' | 'click_hesitation' | 'click_rage' | 'clipboard_check' | 'clipboard_list_check' | 'clock_history' | 'clock' | 'close' | 'cloud_fog2_fill' | 'code' | 'cog' | 'cogs' | 'collection_play' | 'collection' | 'columns_gap_filled' | 'columns_gap' | 'console/error' | 'console/exception' | 'console/info' | 'console/warning' | 'console' | 'controller' | 'cookies' | 'copy' | 'credit_card_2_back' | 'credit_card_front' | 'cross' | 'cubes' | 'cursor_trash' | 'dash' | 'dashboard_icn' | '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' | 'dice_3' | 'dizzy' | 'door_closed' | 'doublecheck' | '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' | 'expand_wide' | 'explosion' | 'external_link_alt' | 'eye_slash_fill' | 'eye_slash' | 'eye' | '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/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/state_action' | '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_new' | 'funnel' | 'gear_fill' | 'gear' | 'geo_alt_fill_custom' | 'github' | 'graph_up_arrow' | 'graph_up' | 'grid_1x2' | 'grid_3x3' | 'grid_check' | 'grid_horizontal' | 'grid' | 'grip_horizontal' | 'hash' | 'hdd_stack' | 'headset' | 'heart_rate' | 'high_engagement' | 'history' | 'hourglass_start' | 'ic_errors' | 'ic_network' | 'ic_rage' | 'ic_resources' | '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/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' | 'layer_group' | 'layers_half' | 'lightbulb_on' | 'lightbulb' | 'link_45deg' | 'list_alt' | 'list_arrow' | 'list_ul' | 'list' | 'lock_alt' | 'low_disc_space' | 'magic' | 'map_marker_alt' | 'memory_ios' | 'memory' | 'mic_mute' | 'mic' | 'minus' | 'mobile' | 'mouse_alt' | 'network' | 'next1' | 'no_dashboard' | 'no_metrics_chart' | 'no_metrics' | 'no_recordings' | '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_lg' | 'plus' | 'pointer_sessions_search' | 'prev1' | 'pulse' | 'puzzle_piece' | 'puzzle' | 'question_circle' | 'question_lg' | 'quote_left' | 'quote_right' | 'quotes' | 'record_btn' | 'record_circle_fill' | 'record_circle' | 'record2' | 'redo_back' | 'redo' | 'redux' | 'remote_control' | 'replay_10' | 'resources_icon' | 'safe_fill' | 'safe' | 'sandglass' | 'search' | 'search_notification' | 'server' | 'share_alt' | 'shield_lock' | 'side_menu_closed' | 'side_menu_open' | 'signpost_split' | 'signup' | 'skip_forward_fill' | 'skip_forward' | 'slack' | 'slash_circle' | 'sleep' | 'sliders' | 'social/slack' | 'social/trello' | 'speedometer2' | 'spinner' | 'star_solid' | 'star' | 'step_forward' | 'stickies' | 'stop_record_circle' | 'stopwatch' | 'store' | 'sync_alt' | 'table_new' | 'table' | 'tablet_android' | 'tachometer_slow' | 'tachometer_slowest' | 'tags' | 'team_funnel' | 'telephone_fill' | 'telephone' | 'terminal' | 'text_paragraph' | 'thermometer_sun' | 'toggles' | 'tools' | 'trash' | 'turtle' | 'user_alt' | 'user_circle' | 'user_friends' | 'users' | 'vendors/graphql' | 'vendors/mobx' | 'vendors/ngrx' | 'vendors/redux' | 'vendors/vuex' | 'web_vitals' | 'wifi' | 'window_alt' | 'window_restore' | 'window_x' | 'window' | 'zoom_in'; +export type OldIconNames = 'activity' | 'alarm-clock' | 'alarm-plus' | 'all-sessions' | 'analytics' | 'anchor' | 'arrow-alt-square-right' | 'arrow-bar-left' | 'arrow-clockwise' | 'arrow-counterclockwise' | 'arrow-down-short' | 'arrow-down-up' | 'arrow-down' | 'arrow-repeat' | 'arrow-right-short' | 'arrow-square-left' | 'arrow-square-right' | 'arrow-up-short' | 'arrow-up' | 'arrows-angle-extend' | '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-fill' | 'bell-plus' | 'bell-slash' | 'bell' | 'binoculars' | 'book-doc' | 'book' | 'bookmark' | 'broadcast' | 'browser/browser' | 'browser/chrome' | 'browser/edge' | 'browser/electron' | 'browser/facebook' | 'browser/firefox' | 'browser/ie' | 'browser/opera' | 'browser/safari' | 'buildings' | 'bullhorn' | 'business-time' | 'calendar-alt' | 'calendar-check' | 'calendar-day' | 'calendar' | 'call' | 'camera-alt' | 'camera-video-off' | 'camera-video' | 'camera' | 'card-checklist' | 'card-list' | 'card-text' | 'caret-down-fill' | 'caret-left-fill' | 'caret-right-fill' | 'caret-up-fill' | 'chat-dots' | 'chat-left-text' | 'chat-right-text' | 'chat-square-quote' | 'check-circle-fill' | 'check-circle' | 'check' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-fill' | 'circle' | 'click-hesitation' | 'click-rage' | 'clipboard-check' | 'clipboard-list-check' | 'clock-history' | 'clock' | 'close' | 'cloud-fog2-fill' | 'code' | 'cog' | 'cogs' | 'collection-play' | 'collection' | 'columns-gap-filled' | 'columns-gap' | 'console/error' | 'console/exception' | 'console/info' | 'console/warning' | 'console' | 'controller' | 'cookies' | 'copy' | 'credit-card-2-back' | 'credit-card-front' | 'cross' | 'cubes' | 'cursor-trash' | 'dash' | 'dashboard-icn' | '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' | 'dice-3' | 'dizzy' | 'door-closed' | 'doublecheck' | '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' | 'expand-wide' | 'explosion' | 'external-link-alt' | 'eye-slash-fill' | 'eye-slash' | 'eye' | '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/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/state-action' | '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-new' | 'funnel' | 'gear-fill' | 'gear' | 'geo-alt-fill-custom' | 'github' | 'graph-up-arrow' | 'graph-up' | 'grid-1x2' | 'grid-3x3' | 'grid-check' | 'grid-horizontal' | 'grid' | 'grip-horizontal' | 'hash' | 'hdd-stack' | 'headset' | 'heart-rate' | 'high-engagement' | 'history' | 'hourglass-start' | 'ic-errors' | 'ic-network' | 'ic-rage' | 'ic-resources' | '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/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' | 'layer-group' | 'layers-half' | 'lightbulb-on' | 'lightbulb' | 'link-45deg' | 'list-alt' | 'list-arrow' | 'list-ul' | 'list' | 'lock-alt' | 'low-disc-space' | 'magic' | 'map-marker-alt' | 'memory-ios' | 'memory' | 'mic-mute' | 'mic' | 'minus' | 'mobile' | 'mouse-alt' | 'network' | 'next1' | 'no-dashboard' | 'no-metrics-chart' | 'no-metrics' | 'no-recordings' | '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-lg' | 'plus' | 'pointer-sessions-search' | 'prev1' | 'pulse' | 'puzzle-piece' | 'puzzle' | 'question-circle' | 'question-lg' | 'quote-left' | 'quote-right' | 'quotes' | 'record-btn' | 'record-circle-fill' | 'record-circle' | 'record2' | 'redo-back' | 'redo' | 'redux' | 'remote-control' | 'replay-10' | 'resources-icon' | 'safe-fill' | 'safe' | 'sandglass' | 'search' | 'search_notification' | 'server' | 'share-alt' | 'shield-lock' | 'side_menu_closed' | 'side_menu_open' | 'signpost-split' | 'signup' | 'skip-forward-fill' | 'skip-forward' | 'slack' | 'slash-circle' | 'sleep' | 'sliders' | 'social/slack' | 'social/trello' | 'speedometer2' | 'spinner' | 'star-solid' | 'star' | 'step-forward' | 'stickies' | 'stop-record-circle' | 'stopwatch' | 'store' | 'sync-alt' | 'table-new' | 'table' | 'tablet-android' | 'tachometer-slow' | 'tachometer-slowest' | 'tags' | 'team-funnel' | 'telephone-fill' | 'telephone' | 'terminal' | 'text-paragraph' | 'thermometer-sun' | 'toggles' | 'tools' | 'trash' | 'turtle' | 'user-alt' | 'user-circle' | 'user-friends' | 'users' | 'vendors/graphql' | 'vendors/mobx' | 'vendors/ngrx' | 'vendors/redux' | 'vendors/vuex' | 'web-vitals' | 'wifi' | 'window-alt' | 'window-restore' | 'window-x' | 'window' | 'zoom-in'; interface Props { - name: IconNames; + name: OldIconNames; size?: number | string; width?: number | string; height?: number | string; @@ -15,473 +487,1408 @@ interface Props { const SVG = (props: Props) => { const { name, size = 14, width = size, height = size, fill = '' } = props; switch (name) { - case 'activity': return ; - case 'alarm-clock': return ; - case 'alarm-plus': return ; - case 'all-sessions': return ; - case 'analytics': return ; - case 'anchor': return ; - case 'arrow-alt-square-right': return ; - case 'arrow-bar-left': return ; - case 'arrow-clockwise': return ; - case 'arrow-counterclockwise': return ; - case 'arrow-down-short': return ; - case 'arrow-down-up': return ; - case 'arrow-down': return ; - case 'arrow-repeat': return ; - case 'arrow-right-short': return ; - case 'arrow-square-left': return ; - case 'arrow-square-right': return ; - case 'arrow-up-short': return ; - case 'arrow-up': return ; - case 'arrows-angle-extend': return ; - case 'avatar/icn_avatar1': return ; - case 'avatar/icn_avatar10': return ; - case 'avatar/icn_avatar11': return ; - case 'avatar/icn_avatar12': return ; - case 'avatar/icn_avatar13': return ; - case 'avatar/icn_avatar14': return ; - case 'avatar/icn_avatar15': return ; - case 'avatar/icn_avatar16': return ; - case 'avatar/icn_avatar17': return ; - case 'avatar/icn_avatar18': return ; - case 'avatar/icn_avatar19': return ; - case 'avatar/icn_avatar2': return ; - case 'avatar/icn_avatar20': return ; - case 'avatar/icn_avatar21': return ; - case 'avatar/icn_avatar22': return ; - case 'avatar/icn_avatar23': return ; - case 'avatar/icn_avatar3': return ; - case 'avatar/icn_avatar4': return ; - case 'avatar/icn_avatar5': return ; - case 'avatar/icn_avatar6': return ; - case 'avatar/icn_avatar7': return ; - case 'avatar/icn_avatar8': return ; - case 'avatar/icn_avatar9': return ; - case 'ban': return ; - case 'bar-chart-line': return ; - case 'bar-pencil': return ; - case 'battery-charging': return ; - case 'battery': return ; - case 'bell-fill': return ; - case 'bell-plus': return ; - case 'bell-slash': return ; - case 'bell': return ; - case 'binoculars': return ; - case 'book-doc': return ; - case 'book': return ; - case 'bookmark': return ; - case 'broadcast': return ; - case 'browser/browser': return ; - case 'browser/chrome': return ; - case 'browser/edge': return ; - case 'browser/electron': return ; - case 'browser/facebook': return ; - case 'browser/firefox': return ; - case 'browser/ie': return ; - case 'browser/opera': return ; - case 'browser/safari': return ; - case 'buildings': return ; - case 'bullhorn': return ; - case 'business-time': return ; - case 'calendar-alt': return ; - case 'calendar-check': return ; - case 'calendar-day': return ; - case 'calendar': return ; - case 'call': return ; - case 'camera-alt': return ; - case 'camera-video-off': return ; - case 'camera-video': return ; - case 'camera': return ; - case 'card-checklist': return ; - case 'card-list': return ; - case 'card-text': return ; - case 'caret-down-fill': return ; - case 'caret-left-fill': return ; - case 'caret-right-fill': return ; - case 'caret-up-fill': return ; - case 'chat-dots': return ; - case 'chat-left-text': return ; - case 'chat-right-text': return ; - case 'chat-square-quote': return ; - case 'check-circle-fill': return ; - case 'check-circle': return ; - case 'check': return ; - case 'chevron-double-left': return ; - case 'chevron-double-right': return ; - case 'chevron-down': return ; - case 'chevron-left': return ; - case 'chevron-right': return ; - case 'chevron-up': return ; - case 'circle-fill': return ; - case 'circle': return ; - case 'click-hesitation': return ; - case 'click-rage': return ; - case 'clipboard-check': return ; - case 'clipboard-list-check': return ; - case 'clock-history': return ; - case 'clock': return ; - case 'close': return ; - case 'cloud-fog2-fill': return ; - case 'code': return ; - case 'cog': return ; - case 'cogs': return ; - case 'collection-play': return ; - case 'collection': return ; - case 'columns-gap-filled': return ; - case 'columns-gap': return ; - case 'console/error': return ; - case 'console/exception': return ; - case 'console/info': return ; - case 'console/warning': return ; - case 'console': return ; - case 'controller': return ; - case 'cookies': return ; - case 'copy': return ; - case 'credit-card-2-back': return ; - case 'credit-card-front': return ; - case 'cross': return ; - case 'cubes': return ; - case 'cursor-trash': return ; - case 'dash': return ; - case 'dashboard-icn': return ; - case 'db-icons/icn-card-clickMap': return ; - case 'db-icons/icn-card-errors': return ; - case 'db-icons/icn-card-funnel': return ; - case 'db-icons/icn-card-funnels': return ; - case 'db-icons/icn-card-insights': return ; - case 'db-icons/icn-card-library': return ; - case 'db-icons/icn-card-mapchart': return ; - case 'db-icons/icn-card-pathAnalysis': return ; - case 'db-icons/icn-card-performance': return ; - case 'db-icons/icn-card-resources': return ; - case 'db-icons/icn-card-table': return ; - case 'db-icons/icn-card-timeseries': return ; - case 'db-icons/icn-card-webVitals': return ; - case 'desktop': return ; - case 'device': return ; - case 'diagram-3': return ; - case 'dice-3': return ; - case 'dizzy': return ; - case 'door-closed': return ; - case 'doublecheck': return ; - case 'download': return ; - case 'drag': return ; - case 'edit': return ; - case 'ellipsis-v': return ; - case 'emoji-dizzy': return ; - case 'enter': return ; - case 'envelope-check': return ; - case 'envelope-paper': return ; - case 'envelope-x': return ; - case 'envelope': return ; - case 'errors-icon': return ; - case 'event/click': return ; - case 'event/click_hesitation': return ; - case 'event/clickrage': return ; - case 'event/code': return ; - case 'event/i-cursor': return ; - case 'event/input': return ; - case 'event/input_hesitation': return ; - case 'event/link': return ; - case 'event/location': return ; - case 'event/mouse_thrashing': return ; - case 'event/resize': return ; - case 'event/view': return ; - case 'exclamation-circle-fill': return ; - case 'exclamation-circle': return ; - case 'exclamation-triangle': return ; - case 'expand-wide': return ; - case 'explosion': return ; - case 'external-link-alt': return ; - case 'eye-slash-fill': return ; - case 'eye-slash': return ; - case 'eye': return ; - case 'fetch': return ; - case 'fflag-multi': return ; - case 'fflag-single': return ; - case 'file-bar-graph': return ; - case 'file-code': return ; - case 'file-medical-alt': return ; - case 'file-pdf': return ; - case 'file': return ; - case 'files': return ; - case 'filetype-js': return ; - case 'filetype-pdf': return ; - case 'filter': return ; - case 'filters/arrow-return-right': return ; - case 'filters/browser': return ; - case 'filters/click': return ; - case 'filters/clickrage': return ; - case 'filters/code': return ; - case 'filters/console': return ; - case 'filters/country': return ; - case 'filters/cpu-load': return ; - case 'filters/custom': return ; - case 'filters/device': return ; - case 'filters/dom-complete': return ; - case 'filters/duration': return ; - case 'filters/error': return ; - case 'filters/fetch-failed': return ; - case 'filters/fetch': return ; - case 'filters/file-code': return ; - case 'filters/graphql': return ; - case 'filters/i-cursor': return ; - case 'filters/input': return ; - case 'filters/lcpt': return ; - case 'filters/link': return ; - case 'filters/location': return ; - case 'filters/memory-load': return ; - case 'filters/metadata': return ; - case 'filters/os': return ; - case 'filters/perfromance-network-request': return ; - case 'filters/platform': return ; - case 'filters/referrer': return ; - case 'filters/resize': return ; - case 'filters/rev-id': return ; - case 'filters/state-action': return ; - case 'filters/ttfb': return ; - case 'filters/user-alt': return ; - case 'filters/userid': return ; - case 'filters/view': return ; - case 'flag-na': return ; - case 'folder-plus': return ; - case 'folder2': return ; - case 'fullscreen': return ; - case 'funnel/cpu-fill': return ; - case 'funnel/cpu': return ; - case 'funnel/dizzy': return ; - case 'funnel/emoji-angry-fill': return ; - case 'funnel/emoji-angry': return ; - case 'funnel/emoji-dizzy-fill': return ; - case 'funnel/exclamation-circle-fill': return ; - case 'funnel/exclamation-circle': return ; - case 'funnel/file-earmark-break-fill': return ; - case 'funnel/file-earmark-break': return ; - case 'funnel/file-earmark-minus-fill': return ; - case 'funnel/file-earmark-minus': return ; - case 'funnel/file-medical-alt': return ; - case 'funnel/file-x': return ; - case 'funnel/hdd-fill': return ; - case 'funnel/hourglass-top': return ; - case 'funnel/image-fill': return ; - case 'funnel/image': return ; - case 'funnel/microchip': return ; - case 'funnel/mouse': return ; - case 'funnel/patch-exclamation-fill': return ; - case 'funnel/sd-card': return ; - case 'funnel-fill': return ; - case 'funnel-new': return ; - case 'funnel': return ; - case 'gear-fill': return ; - case 'gear': return ; - case 'geo-alt-fill-custom': return ; - case 'github': return ; - case 'graph-up-arrow': return ; - case 'graph-up': return ; - case 'grid-1x2': return ; - case 'grid-3x3': return ; - case 'grid-check': return ; - case 'grid-horizontal': return ; - case 'grid': return ; - case 'grip-horizontal': return ; - case 'hash': return ; - case 'hdd-stack': return ; - case 'headset': return ; - case 'heart-rate': return ; - case 'high-engagement': return ; - case 'history': return ; - case 'hourglass-start': return ; - case 'ic-errors': return ; - case 'ic-network': return ; - case 'ic-rage': return ; - case 'ic-resources': return ; - case 'id-card': return ; - case 'image': return ; - case 'info-circle-fill': return ; - case 'info-circle': return ; - case 'info-square': return ; - case 'info': return ; - case 'input-hesitation': return ; - case 'inspect': return ; - case 'integrations/assist': return ; - case 'integrations/bugsnag-text': return ; - case 'integrations/bugsnag': return ; - case 'integrations/cloudwatch-text': return ; - case 'integrations/cloudwatch': return ; - case 'integrations/datadog': return ; - case 'integrations/elasticsearch-text': return ; - case 'integrations/elasticsearch': return ; - case 'integrations/github': return ; - case 'integrations/graphql': return ; - case 'integrations/jira-text': return ; - case 'integrations/jira': return ; - case 'integrations/mobx': return ; - case 'integrations/newrelic-text': return ; - case 'integrations/newrelic': return ; - case 'integrations/ngrx': return ; - case 'integrations/openreplay-text': return ; - case 'integrations/openreplay': return ; - case 'integrations/redux': return ; - case 'integrations/rollbar-text': return ; - case 'integrations/rollbar': return ; - case 'integrations/segment': return ; - case 'integrations/sentry-text': return ; - case 'integrations/sentry': return ; - case 'integrations/slack-bw': return ; - case 'integrations/slack': return ; - case 'integrations/stackdriver': return ; - case 'integrations/sumologic-text': return ; - case 'integrations/sumologic': return ; - case 'integrations/teams-white': return ; - case 'integrations/teams': return ; - case 'integrations/vuejs': return ; - case 'integrations/zustand': return ; - case 'journal-code': return ; - case 'key': return ; - case 'layer-group': return ; - case 'layers-half': return ; - case 'lightbulb-on': return ; - case 'lightbulb': return ; - case 'link-45deg': return ; - case 'list-alt': return ; - case 'list-arrow': return ; - case 'list-ul': return ; - case 'list': return ; - case 'lock-alt': return ; - case 'low-disc-space': return ; - case 'magic': return ; - case 'map-marker-alt': return ; - case 'memory-ios': return ; - case 'memory': return ; - case 'mic-mute': return ; - case 'mic': return ; - case 'minus': return ; - case 'mobile': return ; - case 'mouse-alt': return ; - case 'network': return ; - case 'next1': return ; - case 'no-dashboard': return ; - case 'no-metrics-chart': return ; - case 'no-metrics': return ; - case 'no-recordings': return ; - case 'os/android': return ; - case 'os/chrome_os': return ; - case 'os/fedora': return ; - case 'os/ios': return ; - case 'os/linux': return ; - case 'os/mac_os_x': return ; - case 'os/other': return ; - case 'os/ubuntu': return ; - case 'os/windows': return ; - case 'os': return ; - case 'pause-circle-fill': return ; - case 'pause-fill': return ; - case 'pause': return ; - case 'pdf-download': return ; - case 'pencil-stop': return ; - case 'pencil': return ; - case 'people': return ; - case 'percent': return ; - case 'performance-icon': return ; - case 'person-border': return ; - case 'person-fill': return ; - case 'person': return ; - case 'pie-chart-fill': return ; - case 'pin-fill': return ; - case 'play-circle-bold': return ; - case 'play-circle-light': return ; - case 'play-circle': return ; - case 'play-fill-new': return ; - case 'play-fill': return ; - case 'play-hover': return ; - case 'play': return ; - case 'plug': return ; - case 'plus-circle': return ; - case 'plus-lg': return ; - case 'plus': return ; - case 'pointer-sessions-search': return ; - case 'prev1': return ; - case 'pulse': return ; - case 'puzzle-piece': return ; - case 'puzzle': return ; - case 'question-circle': return ; - case 'question-lg': return ; - case 'quote-left': return ; - case 'quote-right': return ; - case 'quotes': return ; - case 'record-btn': return ; - case 'record-circle-fill': return ; - case 'record-circle': return ; - case 'record2': return ; - case 'redo-back': return ; - case 'redo': return ; - case 'redux': return ; - case 'remote-control': return ; - case 'replay-10': return ; - case 'resources-icon': return ; - case 'safe-fill': return ; - case 'safe': return ; - case 'sandglass': return ; - case 'search': return ; - case 'search_notification': return ; - case 'server': return ; - case 'share-alt': return ; - case 'shield-lock': return ; - case 'side_menu_closed': return ; - case 'side_menu_open': return ; - case 'signpost-split': return ; - case 'signup': return ; - case 'skip-forward-fill': return ; - case 'skip-forward': return ; - case 'slack': return ; - case 'slash-circle': return ; - case 'sleep': return ; - case 'sliders': return ; - case 'social/slack': return ; - case 'social/trello': return ; - case 'speedometer2': return ; - case 'spinner': return ; - case 'star-solid': return ; - case 'star': return ; - case 'step-forward': return ; - case 'stickies': return ; - case 'stop-record-circle': return ; - case 'stopwatch': return ; - case 'store': return ; - case 'sync-alt': return ; - case 'table-new': return ; - case 'table': return ; - case 'tablet-android': return ; - case 'tachometer-slow': return ; - case 'tachometer-slowest': return ; - case 'tags': return ; - case 'team-funnel': return ; - case 'telephone-fill': return ; - case 'telephone': return ; - case 'terminal': return ; - case 'text-paragraph': return ; - case 'thermometer-sun': return ; - case 'toggles': return ; - case 'tools': return ; - case 'trash': return ; - case 'turtle': return ; - case 'user-alt': return ; - case 'user-circle': return ; - case 'user-friends': return ; - case 'users': return ; - case 'vendors/graphql': return ; - case 'vendors/mobx': return ; - case 'vendors/ngrx': return ; - case 'vendors/redux': return ; - case 'vendors/vuex': return ; - case 'web-vitals': return ; - case 'wifi': return ; - case 'window-alt': return ; - case 'window-restore': return ; - case 'window-x': return ; - case 'window': return ; - case 'zoom-in': return ; + + + case 'activity': return ; + + // case 'alarm-clock': + case 'alarm-clock': return ; + + // case 'alarm-plus': + case 'alarm-plus': return ; + + // case 'all-sessions': + case 'all-sessions': return ; + + + case 'analytics': return ; + + + case 'anchor': return ; + + // case 'arrow-alt-square-right': + case 'arrow-alt-square-right': return ; + + // case 'arrow-bar-left': + case 'arrow-bar-left': return ; + + // case 'arrow-clockwise': + case 'arrow-clockwise': return ; + + // case 'arrow-counterclockwise': + case 'arrow-counterclockwise': return ; + + // case 'arrow-down-short': + case 'arrow-down-short': return ; + + // case 'arrow-down-up': + case 'arrow-down-up': return ; + + // case 'arrow-down': + case 'arrow-down': return ; + + // case 'arrow-repeat': + case 'arrow-repeat': return ; + + // case 'arrow-right-short': + case 'arrow-right-short': return ; + + // case 'arrow-square-left': + case 'arrow-square-left': return ; + + // case 'arrow-square-right': + case 'arrow-square-right': return ; + + // case 'arrow-up-short': + case 'arrow-up-short': return ; + + // case 'arrow-up': + case 'arrow-up': return ; + + // case 'arrows-angle-extend': + case 'arrows-angle-extend': return ; + + // case 'avatar/icn_avatar1': + case 'avatar/icn_avatar1': return ; + + // case 'avatar/icn_avatar10': + case 'avatar/icn_avatar10': return ; + + // case 'avatar/icn_avatar11': + case 'avatar/icn_avatar11': return ; + + // case 'avatar/icn_avatar12': + case 'avatar/icn_avatar12': return ; + + // case 'avatar/icn_avatar13': + case 'avatar/icn_avatar13': return ; + + // case 'avatar/icn_avatar14': + case 'avatar/icn_avatar14': return ; + + // case 'avatar/icn_avatar15': + case 'avatar/icn_avatar15': return ; + + // case 'avatar/icn_avatar16': + case 'avatar/icn_avatar16': return ; + + // case 'avatar/icn_avatar17': + case 'avatar/icn_avatar17': return ; + + // case 'avatar/icn_avatar18': + case 'avatar/icn_avatar18': return ; + + // case 'avatar/icn_avatar19': + case 'avatar/icn_avatar19': return ; + + // case 'avatar/icn_avatar2': + case 'avatar/icn_avatar2': return ; + + // case 'avatar/icn_avatar20': + case 'avatar/icn_avatar20': return ; + + // case 'avatar/icn_avatar21': + case 'avatar/icn_avatar21': return ; + + // case 'avatar/icn_avatar22': + case 'avatar/icn_avatar22': return ; + + // case 'avatar/icn_avatar23': + case 'avatar/icn_avatar23': return ; + + // case 'avatar/icn_avatar3': + case 'avatar/icn_avatar3': return ; + + // case 'avatar/icn_avatar4': + case 'avatar/icn_avatar4': return ; + + // case 'avatar/icn_avatar5': + case 'avatar/icn_avatar5': return ; + + // case 'avatar/icn_avatar6': + case 'avatar/icn_avatar6': return ; + + // case 'avatar/icn_avatar7': + case 'avatar/icn_avatar7': return ; + + // case 'avatar/icn_avatar8': + case 'avatar/icn_avatar8': return ; + + // case 'avatar/icn_avatar9': + case 'avatar/icn_avatar9': return ; + + + case 'ban': return ; + + // case 'bar-chart-line': + case 'bar-chart-line': return ; + + // case 'bar-pencil': + case 'bar-pencil': return ; + + // case 'battery-charging': + case 'battery-charging': return ; + + + case 'battery': return ; + + // case 'bell-fill': + case 'bell-fill': return ; + + // case 'bell-plus': + case 'bell-plus': return ; + + // case 'bell-slash': + case 'bell-slash': return ; + + + case 'bell': return ; + + + case 'binoculars': return ; + + // case 'book-doc': + case 'book-doc': return ; + + + case 'book': return ; + + + case 'bookmark': return ; + + + case 'broadcast': return ; + + // case 'browser/browser': + case 'browser/browser': return ; + + // case 'browser/chrome': + case 'browser/chrome': return ; + + // case 'browser/edge': + case 'browser/edge': return ; + + // case 'browser/electron': + case 'browser/electron': return ; + + // case 'browser/facebook': + case 'browser/facebook': return ; + + // case 'browser/firefox': + case 'browser/firefox': return ; + + // case 'browser/ie': + case 'browser/ie': return ; + + // case 'browser/opera': + case 'browser/opera': return ; + + // case 'browser/safari': + case 'browser/safari': return ; + + + case 'buildings': return ; + + + case 'bullhorn': return ; + + // case 'business-time': + case 'business-time': return ; + + // case 'calendar-alt': + case 'calendar-alt': return ; + + // case 'calendar-check': + case 'calendar-check': return ; + + // case 'calendar-day': + case 'calendar-day': return ; + + + case 'calendar': return ; + + + case 'call': return ; + + // case 'camera-alt': + case 'camera-alt': return ; + + // case 'camera-video-off': + case 'camera-video-off': return ; + + // case 'camera-video': + case 'camera-video': return ; + + + case 'camera': return ; + + // case 'card-checklist': + case 'card-checklist': return ; + + // case 'card-list': + case 'card-list': return ; + + // case 'card-text': + case 'card-text': return ; + + // case 'caret-down-fill': + case 'caret-down-fill': return ; + + // case 'caret-left-fill': + case 'caret-left-fill': return ; + + // case 'caret-right-fill': + case 'caret-right-fill': return ; + + // case 'caret-up-fill': + case 'caret-up-fill': return ; + + // case 'chat-dots': + case 'chat-dots': return ; + + // case 'chat-left-text': + case 'chat-left-text': return ; + + // case 'chat-right-text': + case 'chat-right-text': return ; + + // case 'chat-square-quote': + case 'chat-square-quote': return ; + + // case 'check-circle-fill': + case 'check-circle-fill': return ; + + // case 'check-circle': + case 'check-circle': return ; + + + case 'check': return ; + + // case 'chevron-double-left': + case 'chevron-double-left': return ; + + // case 'chevron-double-right': + case 'chevron-double-right': return ; + + // case 'chevron-down': + case 'chevron-down': return ; + + // case 'chevron-left': + case 'chevron-left': return ; + + // case 'chevron-right': + case 'chevron-right': return ; + + // case 'chevron-up': + case 'chevron-up': return ; + + // case 'circle-fill': + case 'circle-fill': return ; + + + case 'circle': return ; + + // case 'click-hesitation': + case 'click-hesitation': return ; + + // case 'click-rage': + case 'click-rage': return ; + + // case 'clipboard-check': + case 'clipboard-check': return ; + + // case 'clipboard-list-check': + case 'clipboard-list-check': return ; + + // case 'clock-history': + case 'clock-history': return ; + + + case 'clock': return ; + + + case 'close': return ; + + // case 'cloud-fog2-fill': + case 'cloud-fog2-fill': return ; + + + case 'code': return ; + + + case 'cog': return ; + + + case 'cogs': return ; + + // case 'collection-play': + case 'collection-play': return ; + + + case 'collection': return ; + + // case 'columns-gap-filled': + case 'columns-gap-filled': return ; + + // case 'columns-gap': + case 'columns-gap': return ; + + // case 'console/error': + case 'console/error': return ; + + // case 'console/exception': + case 'console/exception': return ; + + // case 'console/info': + case 'console/info': return ; + + // case 'console/warning': + 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 'credit-card-front': + case 'credit-card-front': return ; + + + case 'cross': return ; + + + case 'cubes': return ; + + // case 'cursor-trash': + case 'cursor-trash': return ; + + + case 'dash': return ; + + // case 'dashboard-icn': + case 'dashboard-icn': return ; + + // case 'db-icons/icn-card-clickMap': + 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-funnel': + 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-insights': + 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-mapchart': + 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-performance': + 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-table': + 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-webVitals': + case 'db-icons/icn-card-webVitals': return ; + + + case 'desktop': return ; + + + case 'device': return ; + + // case 'diagram-3': + case 'diagram-3': return ; + + // case 'dice-3': + case 'dice-3': return ; + + + case 'dizzy': return ; + + // case 'door-closed': + case 'door-closed': return ; + + + case 'doublecheck': return ; + + + case 'download': return ; + + + case 'drag': return ; + + + case 'edit': return ; + + // case 'ellipsis-v': + case 'ellipsis-v': return ; + + // case 'emoji-dizzy': + case 'emoji-dizzy': return ; + + + case 'enter': return ; + + // case 'envelope-check': + case 'envelope-check': return ; + + // case 'envelope-paper': + case 'envelope-paper': return ; + + // case 'envelope-x': + case 'envelope-x': return ; + + + case 'envelope': return ; + + // case 'errors-icon': + case 'errors-icon': return ; + + // case 'event/click': + case 'event/click': return ; + + // case 'event/click_hesitation': + case 'event/click_hesitation': return ; + + // case 'event/clickrage': + case 'event/clickrage': return ; + + // case 'event/code': + case 'event/code': return ; + + // case 'event/i-cursor': + case 'event/i-cursor': return ; + + // case 'event/input': + case 'event/input': return ; + + // case 'event/input_hesitation': + case 'event/input_hesitation': return ; + + // case 'event/link': + case 'event/link': return ; + + // case 'event/location': + case 'event/location': return ; + + // case 'event/mouse_thrashing': + case 'event/mouse_thrashing': return ; + + // case 'event/resize': + case 'event/resize': return ; + + // case 'event/view': + case 'event/view': return ; + + // case 'exclamation-circle-fill': + case 'exclamation-circle-fill': return ; + + // case 'exclamation-circle': + case 'exclamation-circle': return ; + + // case 'exclamation-triangle': + case 'exclamation-triangle': return ; + + // case 'expand-wide': + case 'expand-wide': return ; + + + case 'explosion': return ; + + // case 'external-link-alt': + case 'external-link-alt': return ; + + // case 'eye-slash-fill': + case 'eye-slash-fill': return ; + + // case 'eye-slash': + case 'eye-slash': return ; + + + case 'eye': return ; + + + case 'fetch': return ; + + // case 'fflag-multi': + case 'fflag-multi': return ; + + // case 'fflag-single': + case 'fflag-single': return ; + + // case 'file-bar-graph': + case 'file-bar-graph': return ; + + // case 'file-code': + case 'file-code': return ; + + // case 'file-medical-alt': + case 'file-medical-alt': return ; + + // case 'file-pdf': + case 'file-pdf': return ; + + + case 'file': return ; + + + case 'files': return ; + + // case 'filetype-js': + case 'filetype-js': return ; + + // case 'filetype-pdf': + case 'filetype-pdf': return ; + + + case 'filter': return ; + + // case 'filters/arrow-return-right': + case 'filters/arrow-return-right': return ; + + // case 'filters/browser': + case 'filters/browser': return ; + + // case 'filters/click': + case 'filters/click': return ; + + // case 'filters/clickrage': + case 'filters/clickrage': return ; + + // case 'filters/code': + case 'filters/code': return ; + + // case 'filters/console': + case 'filters/console': return ; + + // case 'filters/country': + case 'filters/country': return ; + + // case 'filters/cpu-load': + case 'filters/cpu-load': return ; + + // case 'filters/custom': + case 'filters/custom': return ; + + // case 'filters/device': + case 'filters/device': return ; + + // case 'filters/dom-complete': + case 'filters/dom-complete': return ; + + // case 'filters/duration': + case 'filters/duration': return ; + + // case 'filters/error': + case 'filters/error': return ; + + // case 'filters/fetch-failed': + case 'filters/fetch-failed': return ; + + // case 'filters/fetch': + case 'filters/fetch': return ; + + // case 'filters/file-code': + case 'filters/file-code': return ; + + // case 'filters/graphql': + case 'filters/graphql': return ; + + // case 'filters/i-cursor': + case 'filters/i-cursor': return ; + + // case 'filters/input': + case 'filters/input': return ; + + // case 'filters/lcpt': + case 'filters/lcpt': return ; + + // case 'filters/link': + case 'filters/link': return ; + + // case 'filters/location': + case 'filters/location': return ; + + // case 'filters/memory-load': + case 'filters/memory-load': return ; + + // case 'filters/metadata': + case 'filters/metadata': return ; + + // case 'filters/os': + case 'filters/os': return ; + + // case 'filters/perfromance-network-request': + case 'filters/perfromance-network-request': return ; + + // case 'filters/platform': + case 'filters/platform': return ; + + // case 'filters/referrer': + case 'filters/referrer': return ; + + // case 'filters/resize': + case 'filters/resize': return ; + + // case 'filters/rev-id': + case 'filters/rev-id': return ; + + // case 'filters/state-action': + case 'filters/state-action': return ; + + // case 'filters/ttfb': + case 'filters/ttfb': return ; + + // case 'filters/user-alt': + case 'filters/user-alt': return ; + + // case 'filters/userid': + case 'filters/userid': return ; + + // case 'filters/view': + case 'filters/view': return ; + + // case 'flag-na': + case 'flag-na': return ; + + // case 'folder-plus': + case 'folder-plus': return ; + + + case 'folder2': return ; + + + case 'fullscreen': return ; + + // case 'funnel/cpu-fill': + case 'funnel/cpu-fill': return ; + + // case 'funnel/cpu': + case 'funnel/cpu': return ; + + // case 'funnel/dizzy': + case 'funnel/dizzy': return ; + + // case 'funnel/emoji-angry-fill': + case 'funnel/emoji-angry-fill': return ; + + // case 'funnel/emoji-angry': + case 'funnel/emoji-angry': return ; + + // case 'funnel/emoji-dizzy-fill': + case 'funnel/emoji-dizzy-fill': return ; + + // case 'funnel/exclamation-circle-fill': + case 'funnel/exclamation-circle-fill': return ; + + // case 'funnel/exclamation-circle': + case 'funnel/exclamation-circle': return ; + + // case 'funnel/file-earmark-break-fill': + case 'funnel/file-earmark-break-fill': return ; + + // case 'funnel/file-earmark-break': + case 'funnel/file-earmark-break': return ; + + // case 'funnel/file-earmark-minus-fill': + case 'funnel/file-earmark-minus-fill': return ; + + // case 'funnel/file-earmark-minus': + case 'funnel/file-earmark-minus': return ; + + // case 'funnel/file-medical-alt': + case 'funnel/file-medical-alt': return ; + + // case 'funnel/file-x': + case 'funnel/file-x': return ; + + // case 'funnel/hdd-fill': + case 'funnel/hdd-fill': return ; + + // case 'funnel/hourglass-top': + case 'funnel/hourglass-top': return ; + + // case 'funnel/image-fill': + case 'funnel/image-fill': return ; + + // case 'funnel/image': + case 'funnel/image': return ; + + // case 'funnel/microchip': + case 'funnel/microchip': return ; + + // case 'funnel/mouse': + case 'funnel/mouse': return ; + + // case 'funnel/patch-exclamation-fill': + case 'funnel/patch-exclamation-fill': return ; + + // case 'funnel/sd-card': + case 'funnel/sd-card': return ; + + // case 'funnel-fill': + case 'funnel-fill': return ; + + // case 'funnel-new': + case 'funnel-new': return ; + + + case 'funnel': return ; + + // case 'gear-fill': + case 'gear-fill': return ; + + + case 'gear': return ; + + // case 'geo-alt-fill-custom': + case 'geo-alt-fill-custom': return ; + + + case 'github': return ; + + // case 'graph-up-arrow': + case 'graph-up-arrow': return ; + + // case 'graph-up': + case 'graph-up': return ; + + // case 'grid-1x2': + case 'grid-1x2': return ; + + // case 'grid-3x3': + case 'grid-3x3': return ; + + // case 'grid-check': + case 'grid-check': return ; + + // case 'grid-horizontal': + case 'grid-horizontal': return ; + + + case 'grid': return ; + + // case 'grip-horizontal': + case 'grip-horizontal': return ; + + + case 'hash': return ; + + // case 'hdd-stack': + case 'hdd-stack': return ; + + + case 'headset': return ; + + // case 'heart-rate': + case 'heart-rate': return ; + + // case 'high-engagement': + case 'high-engagement': return ; + + + case 'history': return ; + + // case 'hourglass-start': + case 'hourglass-start': return ; + + // case 'ic-errors': + case 'ic-errors': return ; + + // case 'ic-network': + case 'ic-network': return ; + + // case 'ic-rage': + case 'ic-rage': return ; + + // case 'ic-resources': + case 'ic-resources': return ; + + // case 'id-card': + case 'id-card': return ; + + + case 'image': return ; + + // case 'info-circle-fill': + case 'info-circle-fill': return ; + + // case 'info-circle': + case 'info-circle': return ; + + // case 'info-square': + case 'info-square': return ; + + + case 'info': return ; + + // case 'input-hesitation': + case 'input-hesitation': return ; + + + case 'inspect': return ; + + // case 'integrations/assist': + case 'integrations/assist': return ; + + // case 'integrations/bugsnag-text': + case 'integrations/bugsnag-text': return ; + + // case 'integrations/bugsnag': + case 'integrations/bugsnag': return ; + + // case 'integrations/cloudwatch-text': + case 'integrations/cloudwatch-text': return ; + + // case 'integrations/cloudwatch': + case 'integrations/cloudwatch': return ; + + // case 'integrations/datadog': + case 'integrations/datadog': return ; + + // case 'integrations/elasticsearch-text': + case 'integrations/elasticsearch-text': return ; + + // case 'integrations/elasticsearch': + case 'integrations/elasticsearch': return ; + + // case 'integrations/github': + case 'integrations/github': return ; + + // case 'integrations/graphql': + case 'integrations/graphql': return ; + + // case 'integrations/jira-text': + case 'integrations/jira-text': return ; + + // case 'integrations/jira': + case 'integrations/jira': return ; + + // case 'integrations/mobx': + case 'integrations/mobx': return ; + + // case 'integrations/newrelic-text': + case 'integrations/newrelic-text': return ; + + // case 'integrations/newrelic': + case 'integrations/newrelic': return ; + + // case 'integrations/ngrx': + case 'integrations/ngrx': return ; + + // case 'integrations/openreplay-text': + case 'integrations/openreplay-text': return ; + + // case 'integrations/openreplay': + case 'integrations/openreplay': return ; + + // case 'integrations/redux': + case 'integrations/redux': return ; + + // case 'integrations/rollbar-text': + case 'integrations/rollbar-text': return ; + + // case 'integrations/rollbar': + case 'integrations/rollbar': return ; + + // case 'integrations/segment': + case 'integrations/segment': return ; + + // case 'integrations/sentry-text': + case 'integrations/sentry-text': return ; + + // case 'integrations/sentry': + case 'integrations/sentry': return ; + + // case 'integrations/slack-bw': + case 'integrations/slack-bw': return ; + + // case 'integrations/slack': + case 'integrations/slack': return ; + + // case 'integrations/stackdriver': + case 'integrations/stackdriver': return ; + + // case 'integrations/sumologic-text': + case 'integrations/sumologic-text': return ; + + // case 'integrations/sumologic': + case 'integrations/sumologic': return ; + + // case 'integrations/teams-white': + case 'integrations/teams-white': return ; + + // case 'integrations/teams': + case 'integrations/teams': return ; + + // case 'integrations/vuejs': + case 'integrations/vuejs': return ; + + // case 'integrations/zustand': + case 'integrations/zustand': return ; + + // case 'journal-code': + case 'journal-code': return ; + + + case 'key': return ; + + // case 'layer-group': + case 'layer-group': return ; + + // case 'layers-half': + case 'layers-half': return ; + + // case 'lightbulb-on': + case 'lightbulb-on': return ; + + + case 'lightbulb': return ; + + // case 'link-45deg': + case 'link-45deg': return ; + + // case 'list-alt': + case 'list-alt': return ; + + // case 'list-arrow': + case 'list-arrow': return ; + + // case 'list-ul': + case 'list-ul': return ; + + + case 'list': return ; + + // case 'lock-alt': + case 'lock-alt': return ; + + // case 'low-disc-space': + case 'low-disc-space': return ; + + + case 'magic': return ; + + // case 'map-marker-alt': + case 'map-marker-alt': return ; + + // case 'memory-ios': + case 'memory-ios': return ; + + + case 'memory': return ; + + // case 'mic-mute': + case 'mic-mute': return ; + + + case 'mic': return ; + + + case 'minus': return ; + + + case 'mobile': return ; + + // case 'mouse-alt': + case 'mouse-alt': return ; + + + case 'network': return ; + + + case 'next1': return ; + + // case 'no-dashboard': + case 'no-dashboard': return ; + + // case 'no-metrics-chart': + case 'no-metrics-chart': return ; + + // case 'no-metrics': + case 'no-metrics': return ; + + // case 'no-recordings': + case 'no-recordings': return ; + + // case 'os/android': + case 'os/android': return ; + + // case 'os/chrome_os': + case 'os/chrome_os': return ; + + // case 'os/fedora': + case 'os/fedora': return ; + + // case 'os/ios': + case 'os/ios': return ; + + // case 'os/linux': + case 'os/linux': return ; + + // case 'os/mac_os_x': + case 'os/mac_os_x': return ; + + // case 'os/other': + case 'os/other': return ; + + // case 'os/ubuntu': + case 'os/ubuntu': return ; + + // case 'os/windows': + case 'os/windows': return ; + + + case 'os': return ; + + // case 'pause-circle-fill': + case 'pause-circle-fill': return ; + + // case 'pause-fill': + case 'pause-fill': return ; + + + case 'pause': return ; + + // case 'pdf-download': + case 'pdf-download': return ; + + // case 'pencil-stop': + case 'pencil-stop': return ; + + + case 'pencil': return ; + + + case 'people': return ; + + + case 'percent': return ; + + // case 'performance-icon': + case 'performance-icon': return ; + + // case 'person-border': + case 'person-border': return ; + + // case 'person-fill': + case 'person-fill': return ; + + + case 'person': return ; + + // case 'pie-chart-fill': + case 'pie-chart-fill': return ; + + // case 'pin-fill': + case 'pin-fill': return ; + + // case 'play-circle-bold': + case 'play-circle-bold': return ; + + // case 'play-circle-light': + case 'play-circle-light': return ; + + // case 'play-circle': + case 'play-circle': return ; + + // case 'play-fill-new': + case 'play-fill-new': return ; + + // case 'play-fill': + case 'play-fill': return ; + + // case 'play-hover': + case 'play-hover': return ; + + + case 'play': return ; + + + case 'plug': return ; + + // case 'plus-circle': + case 'plus-circle': return ; + + // case 'plus-lg': + case 'plus-lg': return ; + + + case 'plus': return ; + + // case 'pointer-sessions-search': + case 'pointer-sessions-search': return ; + + + case 'prev1': return ; + + + case 'pulse': return ; + + // case 'puzzle-piece': + case 'puzzle-piece': return ; + + + case 'puzzle': return ; + + // case 'question-circle': + case 'question-circle': return ; + + // case 'question-lg': + case 'question-lg': return ; + + // case 'quote-left': + case 'quote-left': return ; + + // case 'quote-right': + case 'quote-right': return ; + + + case 'quotes': return ; + + // case 'record-btn': + case 'record-btn': return ; + + // case 'record-circle-fill': + case 'record-circle-fill': return ; + + // case 'record-circle': + case 'record-circle': return ; + + + case 'record2': return ; + + // case 'redo-back': + case 'redo-back': return ; + + + case 'redo': return ; + + + case 'redux': return ; + + // case 'remote-control': + case 'remote-control': return ; + + // case 'replay-10': + case 'replay-10': return ; + + // case 'resources-icon': + case 'resources-icon': return ; + + // case 'safe-fill': + case 'safe-fill': return ; + + + case 'safe': return ; + + + case 'sandglass': return ; + + + case 'search': return ; + + + case 'search_notification': return ; + + + case 'server': return ; + + // case 'share-alt': + case 'share-alt': return ; + + // case 'shield-lock': + 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 'skip-forward-fill': + case 'skip-forward-fill': return ; + + // case 'skip-forward': + case 'skip-forward': return ; + + + case 'slack': return ; + + // case 'slash-circle': + case 'slash-circle': return ; + + + case 'sleep': return ; + + + case 'sliders': return ; + + // case 'social/slack': + case 'social/slack': return ; + + // case 'social/trello': + case 'social/trello': return ; + + + case 'speedometer2': return ; + + + case 'spinner': return ; + + // case 'star-solid': + case 'star-solid': return ; + + + case 'star': return ; + + // case 'step-forward': + case 'step-forward': return ; + + + case 'stickies': return ; + + // case 'stop-record-circle': + case 'stop-record-circle': return ; + + + case 'stopwatch': return ; + + + case 'store': return ; + + // case 'sync-alt': + case 'sync-alt': return ; + + // case 'table-new': + case 'table-new': return ; + + + case 'table': return ; + + // case 'tablet-android': + case 'tablet-android': return ; + + // case 'tachometer-slow': + case 'tachometer-slow': return ; + + // case 'tachometer-slowest': + case 'tachometer-slowest': return ; + + + case 'tags': return ; + + // case 'team-funnel': + case 'team-funnel': return ; + + // case 'telephone-fill': + case 'telephone-fill': return ; + + + case 'telephone': return ; + + + case 'terminal': return ; + + // case 'text-paragraph': + case 'text-paragraph': return ; + + // case 'thermometer-sun': + 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-circle': + case 'user-circle': return ; + + // case 'user-friends': + case 'user-friends': return ; + + + case 'users': return ; + + // case 'vendors/graphql': + case 'vendors/graphql': return ; + + // case 'vendors/mobx': + case 'vendors/mobx': return ; + + // case 'vendors/ngrx': + case 'vendors/ngrx': return ; + + // case 'vendors/redux': + case 'vendors/redux': return ; + + // case 'vendors/vuex': + case 'vendors/vuex': return ; + + // case 'web-vitals': + case 'web-vitals': return ; + + + case 'wifi': return ; + + // case 'window-alt': + case 'window-alt': return ; + + // case 'window-restore': + case 'window-restore': return ; + + // case 'window-x': + case 'window-x': return ; + + + case 'window': return ; + + // case 'zoom-in': + case 'zoom-in': return ; + default: return ; // if (window.ENV.PRODUCTION) return null; diff --git a/frontend/package.json b/frontend/package.json index b5eef6c49..390c4f95a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -10,7 +10,7 @@ "lint": "eslint --fix app; exit 0", "tsc": "tsc --noEmit --w --incremental false", "gen:constants": "node ./scripts/constants.js", - "gen:icons": "node ./scripts/icons.ts", + "gen:icons": "node ./scripts/icons.js", "gen:colors": "node ./scripts/colors.js", "storybook": "start-storybook -p 6006", "flow": "flow", diff --git a/frontend/scripts/icons.js b/frontend/scripts/icons.js new file mode 100644 index 000000000..50389745d --- /dev/null +++ b/frontend/scripts/icons.js @@ -0,0 +1,144 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const { optimize } = require('svgo'); +const fs = require('fs'); +const { collectFilenames } = require('./fs'); + +const svgRE = /\.svg$/; +const ICONS_DIRNAME = 'app/svg/icons'; +const UI_DIRNAME = 'app/components/ui'; +const icons = collectFilenames(ICONS_DIRNAME, n => svgRE.test(n)); + +const getDirectories = source => + fs.readdirSync(source, { withFileTypes: true }) + .filter(dirent => dirent.isDirectory()) + .map(dirent => dirent.name) +const titleCase = (string) => { + return string[0].toUpperCase() + string.slice(1).toLowerCase(); +} + +const plugins = (removeFill = true) => { + return { + plugins: [ + { + name: 'preset-default', + params: { + overrides: { + inlineStyles: { + onlyMatchedOnce: false + } + } + } + }, + { + name: 'removeAttrs', + params: { + attrs: ['xml', 'class', 'style', 'data-name', 'dataName', 'svg:width', 'svg:height', 'fill-rule', 'clip-path'] + } + }, + { + name: 'addAttributesToSVGElement', + params: { + attributes: ['width={ `${ width }px` }', 'height={ `${ height }px` }', !removeFill ? 'fill={ `${ fill }` }' : ''] + } + }, + { name: 'removeXMLNS' } + ] + }; +}; + +const iconPaths = []; +const dirs = getDirectories(ICONS_DIRNAME); + +fs.mkdirSync(`${UI_DIRNAME}/Icons`, { recursive: true }); +dirs.forEach((dir) => { + fs.mkdirSync(`${UI_DIRNAME}/Icons/${dir.replaceAll('-', '_')}`, { recursive: true }); +}) + +icons.forEach((icon) => { + const fileName = icon.slice(0, -4).replaceAll('-', '_').replaceAll('/', '_'); + const name = fileName + const path = `${UI_DIRNAME}/Icons/${name}.tsx` + iconPaths.push({ path: `./Icons/${name}`, name, oldName: icon.slice(0, -4), fileName }); + const svg = fs.readFileSync(`${ICONS_DIRNAME}/${icon}`, 'utf-8'); + const canOptimize = !icon.includes('integrations'); + const { data } = optimize(svg, plugins(canOptimize)); + fs.writeFileSync(path, ` +/* Auto-generated, do not edit */ +import React from 'react'; + +interface Props { + size?: number | string; + width?: number | string; + height?: number | string; + fill?: string; +} + +function ${titleCase(fileName)}(props: Props) { + const { size = 14, width = size, height = size, fill = '' } = props; + return ( + ${data.replaceAll(/xlink\:href/g, 'xlinkHref') + .replaceAll(/xmlns\:xlink/g, 'xmlnsXlink') + .replaceAll(/clip\-path/g, 'clipPath') + .replaceAll(/clip\-rule/g, 'clipRule') + // hack to keep fill rule for some icons like stop recording square + .replaceAll(/clipRule="evenoddCustomFill"/g, 'clipRule="evenodd" fillRule="evenodd"') + .replaceAll(/fill-rule/g, 'fillRule') + .replaceAll(/fill-opacity/g, 'fillOpacity') + .replaceAll(/stop-color/g, 'stopColor') + .replaceAll(/stroke-width/g, 'strokeWidth') + .replaceAll(/stroke-linecap/g, 'strokeLinecap') + .replaceAll(/stroke-linejoin/g, 'strokeLinejoin') + .replaceAll(/stroke-miterlimit/g, 'strokeMiterlimit') + .replaceAll(/xml:space="preserve"/g, '') + } + ); +} + +export default ${titleCase(fileName)}; +`) +}) + +fs.writeFileSync(`${UI_DIRNAME}/Icons/index.ts`, ` +/* Auto-generated, do not edit */ +${iconPaths.map((icon) => `export { default as ${titleCase(icon.fileName)} } from './${icon.fileName}';`).join('\n')} +`); + +// MAIN FILE +fs.writeFileSync(`${UI_DIRNAME}/SVG.tsx`, ` +/* Auto-generated, do not edit */ +import React from 'react'; +import { +${iconPaths.map(icon => ` ${titleCase(icon.fileName)}`).join(',\n')} +} from './Icons' + + +// export type IconNames = ${icons.map((icon) => '\'' + icon.slice(0, -4).replaceAll('-', '_') + '\'').join(' | ')}; +export type OldIconNames = ${icons.map((icon) => '\'' + icon.slice(0, -4) + '\'').join(' | ')}; + +interface Props { + name: OldIconNames; + 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) { +${iconPaths.map(icon => { + return ` + ${icon.oldName !== icon.name ? `// case '${icon.oldName}':` : ''} + case '${icon.oldName}': return <${titleCase(icon.fileName)} width={ width } height={ height } fill={ fill } />; + `} +).join('')} +default: + return ; + // if (window.ENV.PRODUCTION) return null; + // throw "unknown icon name " + name; + } +} +SVG.displayName = 'SVG'; +export default SVG; +`); diff --git a/frontend/scripts/icons.ts b/frontend/scripts/icons.ts deleted file mode 100644 index 6d754013c..000000000 --- a/frontend/scripts/icons.ts +++ /dev/null @@ -1,113 +0,0 @@ -/* eslint-disable @typescript-eslint/no-var-requires */ -const { optimize } = require('svgo'); -const fs = require('fs'); -const { collectFilenames } = require('./fs'); - -const svgRE = /\.svg$/; -const ICONS_DIRNAME = 'app/svg/icons'; -const UI_DIRNAME = 'app/components/ui'; -const icons = collectFilenames(ICONS_DIRNAME, n => svgRE.test(n)); -const basePlugins = { - plugins: [ - // { name: 'preset-default' }, - { - name: 'removeAttrs', - params: { - attrs: ['fill-rule', 'clip-rule', 'fill', 'class'] - } - }, - 'removeTitle', - 'removeComments', - 'removeXMLProcInst', - 'removeXMLNS', - 'mergeStyles', - 'inlineStyles', - 'removeStyleElement' - ] -}; -const plugins = (removeFill = true) => { - return { - plugins: [ - { - name: 'preset-default', - params: { - overrides: { - inlineStyles: { - onlyMatchedOnce: false - } - } - } - }, - { - name: 'removeAttrs', - params: { - attrs: ['xml', 'class', 'style', 'data-name', 'dataName', 'svg:width', 'svg:height', 'fill-rule', 'clip-path'] - } - }, - { - name: 'addAttributesToSVGElement', - params: { - attributes: ['width={ `${ width }px` }', 'height={ `${ height }px` }', !removeFill ? 'fill={ `${ fill }` }' : ''] - } - }, - { name: 'removeXMLNS' } - // { name: 'replaceDashes', params: { - // type: 'perItem', - // fn: (item) => { - // item.eachAttr(attr => { - // attr.name = attr.name.replace(/-([a-z])/g, gr => gr[1].toUpperCase()) - // }) - // } - // } }, - - ] - }; -}; -fs.writeFileSync(`${UI_DIRNAME}/SVG.tsx`, ` -import React from 'react'; - -export type IconNames = ${icons.map((icon) => '\'' + icon.slice(0, -4) + '\'').join(' | ')}; - -interface Props { - 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) { -${icons.map(icon => { - const svg = fs.readFileSync(`${ICONS_DIRNAME}/${icon}`, 'utf-8'); - const canOptimize = !icon.includes('integrations'); - const { data } = optimize(svg, plugins(canOptimize)); - return ` case '${icon.slice(0, -4)}': return ${data.replace(/xlink\:href/g, 'xlinkHref') - .replace(/xmlns\:xlink/g, 'xmlnsXlink') - .replace(/clip\-path/g, 'clipPath') - .replace(/clip\-rule/g, 'clipRule') - // hack to keep fill rule for some icons like stop recording square - .replace(/clipRule="evenoddCustomFill"/g, 'clipRule="evenodd" fillRule="evenodd"') - .replace(/fill-rule/g, 'fillRule') - .replace(/fill-opacity/g, 'fillOpacity') - .replace(/stop-color/g, 'stopColor') - .replace(/stroke-width/g, 'strokeWidth') - .replace(/stroke-linecap/g, 'strokeLinecap') - .replace(/stroke-linejoin/g, 'strokeLinejoin') - .replace(/stroke-miterlimit/g, 'strokeMiterlimit') - .replace(/xml:space="preserve"/g, '')};`; -}) - .join('\n')} -default: - return ; - // if (window.ENV.PRODUCTION) return null; - // throw "unknown icon name " + name; - } -} -SVG.displayName = 'SVG'; -export default SVG; -`); -// }) -// .catch(console.error);