Update build artifacts

This commit is contained in:
sammarks 2023-01-26 18:36:43 +00:00 committed by github-actions[bot]
parent 601886da2b
commit c3ffb2239f
77 changed files with 2534 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Agile extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Agile({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5 19H22M22 19L19.5 16.5M22 19L19.5 21.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 2L9.5 4.5L12 7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.5 4.5C14.6421 4.5 18 7.85786 18 12C18 16.1421 14.6421 19.5 10.5 19.5H2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.75583 5.5C4.51086 6.79595 3 9.22154 3 12C3 13.6884 3.55792 15.2465 4.49945 16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,38 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BrightCrown extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BrightCrown({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3057_14630)">
<path d="M22 12L23 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 2V1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 23V22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 20L19 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 4L19 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 20L5 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 4L5 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 12L2 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.8 15.5L18 8.5L13.8 10.6L12 8.5L10.2 10.6L6 8.5L7.2 15.5H16.8Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_3057_14630">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,38 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BrightStar extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BrightStar({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3057_14628)">
<path d="M9.95242 9.62272L11.5109 6.31816C11.711 5.89395 12.289 5.89395 12.4891 6.31816L14.0476 9.62272L17.5329 10.1559C17.9801 10.2243 18.1583 10.7996 17.8346 11.1296L15.313 13.7001L15.9081 17.3314C15.9845 17.7978 15.5168 18.1534 15.1167 17.9331L12 16.2177L8.88328 17.9331C8.48316 18.1534 8.01545 17.7978 8.09187 17.3314L8.68695 13.7001L6.16545 11.1296C5.8417 10.7996 6.01993 10.2243 6.46711 10.1559L9.95242 9.62272Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 12L23 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 2V1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 23V22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 20L19 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 4L19 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 20L5 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 4L5 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 12L2 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_3057_14628">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,27 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CalendarMinus extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CalendarMinus({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13 21H5C3.89543 21 3 20.1046 3 19V10H21V13M15 4V2M15 4V6M15 4H10.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 10V6C3 4.89543 3.89543 4 5 4H7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 2V6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 10V6C21 4.89543 20.1046 4 19 4H18.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.9922 18H21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,27 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CalendarPlus extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CalendarPlus({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13 21H5C3.89543 21 3 20.1046 3 19V10H21V13M15 4V2M15 4V6M15 4H10.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 10V6C3 4.89543 3.89543 4 5 4H7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 2V6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 10V6C21 4.89543 20.1046 4 19 4H18.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.9922 18H17.9922M21 18H17.9922M17.9922 18V15M17.9922 18V21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Community extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Community({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 18V17C7 14.2386 9.23858 12 12 12V12C14.7614 12 17 14.2386 17 17V18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 18V17C1 15.3431 2.34315 14 4 14V14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23 18V17C23 15.3431 21.6569 14 20 14V14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 12C13.6569 12 15 10.6569 15 9C15 7.34315 13.6569 6 12 6C10.3431 6 9 7.34315 9 9C9 10.6569 10.3431 12 12 12Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 14C5.10457 14 6 13.1046 6 12C6 10.8954 5.10457 10 4 10C2.89543 10 2 10.8954 2 12C2 13.1046 2.89543 14 4 14Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 14C21.1046 14 22 13.1046 22 12C22 10.8954 21.1046 10 20 10C18.8954 10 18 10.8954 18 12C18 13.1046 18.8954 14 20 14Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,23 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Crown extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Crown({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.2 17L21 7L14.7 10L12 7L9.3 10L3 7L4.8 17H19.2Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,24 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CrownCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CrownCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.8 15.5L18 8.5L13.8 10.6L12 8.5L10.2 10.6L6 8.5L7.2 15.5H16.8Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GitCherryPickCommit extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GitCherryPickCommit({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17 11V10C17 8.89543 16.1046 8 15 8H12M7 11V10C7 8.89543 7.89543 8 9 8H12M12 8V4" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 20C13.6569 20 15 18.6569 15 17C15 15.3431 13.6569 14 12 14C10.3431 14 9 15.3431 9 17C9 18.6569 10.3431 20 12 20Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 17H3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 17H21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,27 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GitPullRequestClosed extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GitPullRequestClosed({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21C19.1046 21 20 20.1046 20 19C20 17.8954 19.1046 17 18 17C16.8954 17 16 17.8954 16 19C16 20.1046 16.8954 21 18 21Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 21C7.10457 21 8 20.1046 8 19C8 17.8954 7.10457 17 6 17C4.89543 17 4 17.8954 4 19C4 20.1046 4.89543 21 6 21Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 11V17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 17V7C18 7 18 5 16 5H12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 7.24264L6.12132 5.12132M6.12132 5.12132L8.24264 3M6.12132 5.12132L4 3M6.12132 5.12132L8.24264 7.24264" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -39,6 +39,7 @@ export './add_square.dart';
export './add_to_cart.dart';
export './add_user.dart';
export './african_tree.dart';
export './agile.dart';
export './air_conditioner.dart';
export './airplane.dart';
export './airplane_helix.dart';
@ -175,6 +176,8 @@ export './brain_electricity.dart';
export './brain_research.dart';
export './brain_warning.dart';
export './bread_slice.dart';
export './bright_crown.dart';
export './bright_star.dart';
export './brightness.dart';
export './brightness_window.dart';
export './bubble_download.dart';
@ -191,6 +194,8 @@ export './bus_stop.dart';
export './cable_tag.dart';
export './calculator.dart';
export './calendar.dart';
export './calendar_minus.dart';
export './calendar_plus.dart';
export './camera.dart';
export './cancel.dart';
export './candlestick_chart.dart';
@ -254,6 +259,7 @@ export './color_filter.dart';
export './color_picker.dart';
export './color_picker_empty.dart';
export './combine.dart';
export './community.dart';
export './compact_disc.dart';
export './compass.dart';
export './compress.dart';
@ -281,6 +287,8 @@ export './crop_rotate_bl.dart';
export './crop_rotate_br.dart';
export './crop_rotate_tl.dart';
export './crop_rotate_tr.dart';
export './crown.dart';
export './crown_circle.dart';
export './css_3.dart';
export './cursor_pointer.dart';
export './cut.dart';
@ -494,6 +502,7 @@ export './gas_tank_drop.dart';
export './gif_format.dart';
export './gift.dart';
export './git_branch.dart';
export './git_cherry_pick_commit.dart';
export './git_command.dart';
export './git_commit.dart';
export './git_compare.dart';
@ -502,6 +511,7 @@ export './git_hub.dart';
export './git_lab_full.dart';
export './git_merge.dart';
export './git_pull_request.dart';
export './git_pull_request_closed.dart';
export './github_circle.dart';
export './glass_empty.dart';
export './glass_half.dart';
@ -609,6 +619,7 @@ export './key_alt_back.dart';
export './key_alt_minus.dart';
export './key_alt_plus.dart';
export './key_alt_remove.dart';
export './key_command.dart';
export './keyframe.dart';
export './keyframe_align_center.dart';
export './keyframe_align_horizontal.dart';
@ -629,6 +640,7 @@ export './layout_right.dart';
export './leaderboard.dart';
export './leaderboard_star.dart';
export './leaf.dart';
export './learning.dart';
export './left_round_arrow.dart';
export './lens.dart';
export './lifebelt.dart';
@ -693,6 +705,7 @@ export './media_video.dart';
export './media_video_folder.dart';
export './media_video_list.dart';
export './medium.dart';
export './medium_priority.dart';
export './megaphone.dart';
export './menu.dart';
export './menu_scale.dart';
@ -776,6 +789,7 @@ export './numbered_list_right.dart';
export './octagon.dart';
export './off_tag.dart';
export './oil_industry.dart';
export './okrs.dart';
export './on_tag.dart';
export './one_finger_select_hand_gesture.dart';
export './one_point_circle.dart';
@ -875,6 +889,7 @@ export './position_align.dart';
export './potion.dart';
export './pound.dart';
export './precision_tool.dart';
export './presentation.dart';
export './printer.dart';
export './printer_alt.dart';
export './printing_page.dart';
@ -1022,6 +1037,7 @@ export './sidebar_collapse.dart';
export './sidebar_expand.dart';
export './sigma_function.dart';
export './simple_cart.dart';
export './sine_wave.dart';
export './single_tap_gesture.dart';
export './skateboard.dart';
export './skateboarding.dart';
@ -1054,6 +1070,7 @@ export './sphere.dart';
export './spiral.dart';
export './spock_hand_gesture.dart';
export './square.dart';
export './square_wave.dart';
export './stackoverflow.dart';
export './star.dart';
export './star_dashed.dart';
@ -1063,6 +1080,7 @@ export './stat_up.dart';
export './stats_down_square.dart';
export './stats_report.dart';
export './stats_up_square.dart';
export './strategy.dart';
export './stretching.dart';
export './stroller.dart';
export './style_border.dart';
@ -1084,6 +1102,7 @@ export './switch_off.dart';
export './switch_on.dart';
export './system_restart.dart';
export './system_shut.dart';
export './t_shirt.dart';
export './table.dart';
export './table_2_columns.dart';
export './table_rows.dart';
@ -1164,8 +1183,11 @@ export './user.dart';
export './user_bag.dart';
export './user_cart.dart';
export './user_circle.dart';
export './user_crown.dart';
export './user_love.dart';
export './user_scan.dart';
export './user_square.dart';
export './user_star.dart';
export './vegan.dart';
export './vegan_circle.dart';
export './vegan_square.dart';
@ -1176,6 +1198,7 @@ export './vertical_split.dart';
export './vials.dart';
export './video_camera.dart';
export './video_camera_off.dart';
export './video_projector.dart';
export './view_360.dart';
export './view_columns_2.dart';
export './view_columns_3.dart';
@ -1217,6 +1240,7 @@ export './wifi_signal_none.dart';
export './wifi_tag.dart';
export './wind.dart';
export './windows.dart';
export './women_t_shirt.dart';
export './wrap_text.dart';
export './wrench.dart';
export './wristwatch.dart';

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class KeyCommand extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const KeyCommand({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 6V18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 6V18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 6C9 4.34315 7.65685 3 6 3C4.34315 3 3 4.34315 3 6C3 7.65685 4.34315 9 6 9H18C19.6569 9 21 7.65685 21 6C21 4.34315 19.6569 3 18 3C16.3431 3 15 4.34315 15 6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 18C9 19.6569 7.65685 21 6 21C4.34315 21 3 19.6569 3 18C3 16.3431 4.34315 15 6 15H18C19.6569 15 21 16.3431 21 18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Learning extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Learning({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.81818 22L6.81822 19.143C6.51904 16.1656 3.00001 14.5717 3.00001 10.0004C3 5.42914 5.72738 1.94374 11.1819 2.00069C15.1094 2.04169 18.8182 4.28632 18.8182 8.8576L21 12.286C21 14.5717 18.8182 14.5717 18.8182 14.5717C18.8182 14.5717 19.3636 20.2858 14.4545 20.2858L14.4545 22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 12C12.1046 12 13 11.1046 13 10C13 8.89543 12.1046 8 11 8C10.6357 8 10.2942 8.09739 10 8.26756C9.4022 8.61337 9 9.25972 9 10C9 10.7403 9.4022 11.3866 10 11.7324C10.2942 11.9026 10.6357 12 11 12Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 13C12.6569 13 14 11.6569 14 10C14 8.34315 12.6569 7 11 7C9.34315 7 8 8.34315 8 10C8 11.6569 9.34315 13 11 13Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="0.3 2"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,32 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class MediumPriority extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const MediumPriority({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2475_13213)">
<path d="M11.5757 1.42426C11.81 1.18995 12.1899 1.18995 12.4243 1.42426L22.5757 11.5757C22.81 11.81 22.8101 12.1899 22.5757 12.4243L12.4243 22.5757C12.19 22.81 11.8101 22.8101 11.5757 22.5757L1.42426 12.4243C1.18995 12.19 1.18995 11.8101 1.42426 11.5757L11.5757 1.42426Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 12H10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14 12H18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_2475_13213">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Okrs extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Okrs({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 14C19.1046 14 20 13.1046 20 12C20 10.8954 19.1046 10 18 10C16.8954 10 16 10.8954 16 12C16 13.1046 16.8954 14 18 14Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 7C19.1046 7 20 6.10457 20 5C20 3.89543 19.1046 3 18 3C16.8954 3 16 3.89543 16 5C16 6.10457 16.8954 7 18 7Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 5L13 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 12L13 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 19L13 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 21.2426L18.1213 19.1213M18.1213 19.1213L20.2426 17M18.1213 19.1213L16 17M18.1213 19.1213L20.2426 21.2426" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Presentation extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Presentation({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22 4.6V17.4C22 17.7314 21.7314 18 21.4 18H2.6C2.26863 18 2 17.7314 2 17.4V4.6C2 4.26863 2.26863 4 2.6 4H21.4C21.7314 4 22 4.26863 22 4.6Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.5 21.5L12 18L15.5 21.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 2V4" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 12V14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 10V14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 8V14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,27 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SineWave extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SineWave({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 12C3.00015 8.14286 4.28571 3 6.85714 3C10.7143 2.9999 13.2857 21 17.1429 21C19.7143 21 21 15.8571 21 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 12H5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19 12H21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.5 12H16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 12H8.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SquareWave extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SquareWave({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 12H6L6 4L12 4L12 20L18 20L18 12H21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.5 12H15.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.5 12H9.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Strategy extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Strategy({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 20.5C7 11 11.5 8 20 6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.9086 3.80941L20.3946 5.90126L18.3028 10.3873" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 7C6.10457 7 7 6.10457 7 5C7 3.89543 6.10457 3 5 3C3.89543 3 3 3.89543 3 5C3 6.10457 3.89543 7 5 7Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 20.2426L18.1213 18.1213M18.1213 18.1213L20.2426 16M18.1213 18.1213L16 16M18.1213 18.1213L20.2426 20.2426" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TShirt extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TShirt({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 4H9C9 4 9 7 12 7C15 7 15 4 15 4H18M18 11V19.4C18 19.7314 17.7314 20 17.4 20H6.6C6.26863 20 6 19.7314 6 19.4L6 11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 4L22.4429 5.77717C22.7506 5.90023 22.9002 6.24942 22.7772 6.55709L21.1509 10.6228C21.0597 10.8506 20.8391 11 20.5938 11H18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5.99993 4L1.55701 5.77717C1.24934 5.90023 1.09969 6.24942 1.22276 6.55709L2.84906 10.6228C2.94018 10.8506 3.1608 11 3.40615 11H5.99993" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UserCrown extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UserCrown({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 12C14.2091 12 16 10.2091 16 8C16 5.79086 14.2091 4 12 4C9.79086 4 8 5.79086 8 8C8 10.2091 9.79086 12 12 12Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 20V19C5 15.134 8.13401 12 12 12C13.0736 12 14.0907 12.2417 15 12.6736" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 22L22 16L18.5 17.8L17 16L15.5 17.8L12 16L13 22H21Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UserLove extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UserLove({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 12C14.2091 12 16 10.2091 16 8C16 5.79086 14.2091 4 12 4C9.79086 4 8 5.79086 8 8C8 10.2091 9.79086 12 12 12Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 17.2798C22 17.8812 21.7625 18.4588 21.3383 18.8861C20.3619 19.8701 19.415 20.8961 18.4021 21.8443C18.17 22.0585 17.8017 22.0507 17.5795 21.8268L14.6615 18.8861C13.7795 17.9972 13.7795 16.5623 14.6615 15.6734C15.5522 14.7758 17.0032 14.7758 17.8938 15.6734L17.9999 15.7803L18.1059 15.6734C18.533 15.2429 19.1146 15 19.7221 15C20.3297 15 20.9113 15.2428 21.3383 15.6734C21.7625 16.1007 22 16.6784 22 17.2798Z" stroke="currentColor" stroke-linejoin="round"/>
<path d="M5 20V19C5 15.134 8.13401 12 12 12C13.0736 12 14.0907 12.2417 15 12.6736" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UserStar extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UserStar({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 12C14.2091 12 16 10.2091 16 8C16 5.79086 14.2091 4 12 4C9.79086 4 8 5.79086 8 8C8 10.2091 9.79086 12 12 12Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 20V19C5 15.134 8.13401 12 12 12C13.0736 12 14.0907 12.2417 15 12.6736" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.6349 16.4151L17.674 14.2121C17.8073 13.9293 18.1927 13.9293 18.326 14.2121L19.3651 16.4151L21.6886 16.7706C21.9867 16.8162 22.1055 17.1997 21.8897 17.4198L20.2087 19.1334L20.6054 21.5543C20.6564 21.8652 20.3446 22.1022 20.0778 21.9554L18 20.8118L15.9222 21.9554C15.6554 22.1022 15.3436 21.8652 15.3946 21.5543L15.7913 19.1334L14.1103 17.4198C13.8945 17.1997 14.0133 16.8162 14.3114 16.7706L16.6349 16.4151Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,32 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class VideoProjector extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const VideoProjector({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 19H6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 19H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2 16.4V7.6C2 7.26863 2.26863 7 2.6 7H21.4C21.7314 7 22 7.26863 22 7.6V16.4C22 16.7314 21.7314 17 21.4 17H2.6C2.26863 17 2 16.7314 2 16.4Z" stroke="currentColor"/>
<path d="M5 10.01L5.01 9.99889" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 10.01L8.01 9.99889" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 10.01L11.01 9.99889" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 14.01L5.01 13.9989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 14.01L8.01 13.9989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11 14.01L11.01 13.9989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 14C18.1046 14 19 13.1046 19 12C19 10.8954 18.1046 10 17 10C15.8954 10 15 10.8954 15 12C15 13.1046 15.8954 14 17 14Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WomenTShirt extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WomenTShirt({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21H6C6 21 7.66042 16.1746 7.5 13C7.3995 11.0112 5.97606 9.92113 6.5 8C6.72976 7.15753 7.5 6 7.5 6C7.5 6 9 7 12 7C15 7 16.5 6 16.5 6C16.5 6 17.2702 7.15753 17.5 8C18.0239 9.92113 16.6005 11.0112 16.5 13C16.3396 16.1746 18 21 18 21Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.49988 6.00002V3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.5 6.00002V3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,46 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAgile(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M17.5 19H22m0 0l-2.5-2.5M22 19l-2.5 2.5M12 2L9.5 4.5 12 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M10.5 4.5a7.5 7.5 0 010 15H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M6.756 5.5A7.497 7.497 0 003 12c0 1.688.558 3.246 1.5 4.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAgile);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgBrightCrown(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<G
clipPath="url(#bright-crown_svg__clip0_3057_14630)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M22 12h1M12 2V1M12 23v-1M20 20l-1-1M20 4l-1 1M4 20l1-1M4 4l1 1M1 12h1M16.8 15.5l1.2-7-4.2 2.1L12 8.5l-1.8 2.1L6 8.5l1.2 7h9.6z" />
</G>
<Defs>
<ClipPath id="bright-crown_svg__clip0_3057_14630">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBrightCrown);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgBrightStar(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<G
clipPath="url(#bright-star_svg__clip0_3057_14628)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M9.952 9.623l1.559-3.305a.535.535 0 01.978 0l1.559 3.305 3.485.533c.447.068.625.644.302.974l-2.522 2.57.595 3.631c.077.467-.391.822-.791.602L12 16.218l-3.117 1.715c-.4.22-.868-.135-.791-.602l.595-3.63-2.522-2.571c-.323-.33-.145-.906.302-.974l3.485-.533zM22 12h1M12 2V1M12 23v-1M20 20l-1-1M20 4l-1 1M4 20l1-1M4 4l1 1M1 12h1" />
</G>
<Defs>
<ClipPath id="bright-star_svg__clip0_3057_14628">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBrightStar);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCalendarMinus(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13 21H5a2 2 0 01-2-2v-9h18v3m-6-9V2m0 2v2m0-2h-4.5M3 10V6a2 2 0 012-2h2M7 2v4M21 10V6a2 2 0 00-2-2h-.5M14.992 18H21"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCalendarMinus);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCalendarPlus(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13 21H5a2 2 0 01-2-2v-9h18v3m-6-9V2m0 2v2m0-2h-4.5M3 10V6a2 2 0 012-2h2M7 2v4M21 10V6a2 2 0 00-2-2h-.5M14.992 18h3M21 18h-3.008m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCalendarPlus);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCommunity(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 18v-1a5 5 0 015-5v0a5 5 0 015 5v1M1 18v-1a3 3 0 013-3v0M23 18v-1a3 3 0 00-3-3v0M12 12a3 3 0 100-6 3 3 0 000 6zM4 14a2 2 0 100-4 2 2 0 000 4zM20 14a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCommunity);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCrown(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M19.2 17L21 7l-6.3 3L12 7l-2.7 3L3 7l1.8 10h14.4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCrown);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCrownCircle(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16.8 15.5l1.2-7-4.2 2.1L12 8.5l-1.8 2.1L6 8.5l1.2 7h9.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCrownCircle);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgGitCherryPickCommit(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M17 11v-1a2 2 0 00-2-2h-3m-5 3v-1a2 2 0 012-2h3m0 0V4M12 20a3 3 0 100-6 3 3 0 000 6zM9 17H3M15 17h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCherryPickCommit);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgGitPullRequestClosed(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 21a2 2 0 100-4 2 2 0 000 4zM6 21a2 2 0 100-4 2 2 0 000 4zM6 11v6M18 17V7s0-2-2-2h-4M4 7.243L6.121 5.12m0 0L8.243 3M6.12 5.121L4 3m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGitPullRequestClosed);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgKeyCommand(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M9 6v12M15 6v12M9 6a3 3 0 10-3 3h12a3 3 0 10-3-3M9 18a3 3 0 11-3-3h12a3 3 0 11-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgKeyCommand);
export default ForwardRef;

View file

@ -0,0 +1,47 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgLearning(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6.818 22v-2.857C6.52 16.166 3 14.572 3 10c0-4.57 2.727-8.056 8.182-8 3.927.042 7.636 2.286 7.636 6.858L21 12.286c0 2.286-2.182 2.286-2.182 2.286s.546 5.714-4.364 5.714V22"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11 12a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11 13a3 3 0 100-6 3 3 0 000 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="0.3 2"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgLearning);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgMediumPriority(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<G
clipPath="url(#medium-priority_svg__clip0_2475_13213)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M11.576 1.424a.6.6 0 01.848 0l10.152 10.152a.6.6 0 010 .848L12.424 22.576a.6.6 0 01-.848 0L1.424 12.424a.6.6 0 010-.848L11.576 1.424zM6 12h4M14 12h4" />
</G>
<Defs>
<ClipPath id="medium-priority_svg__clip0_2475_13213">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgMediumPriority);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgOkrs(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 14a2 2 0 100-4 2 2 0 000 4zM18 7a2 2 0 100-4 2 2 0 000 4zM3 5h10M3 12h10M3 19h10M16 21.243l2.121-2.122m0 0L20.243 17m-2.122 2.121L16 17m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgOkrs);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgPresentation(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M22 4.6v12.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6V4.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6zM8.5 21.5L12 18l3.5 3.5M12 2v2M9 12v2M12 10v4M15 8v6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPresentation);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSineWave(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 12c0-3.857 1.286-9 3.857-9 3.857 0 6.429 18 10.286 18C19.714 21 21 15.857 21 12M3 12h2M19 12h2M15.5 12h1M7.5 12h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSineWave);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSquareWave(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 12h3V4h6v16h6v-8h3M14.5 12h1M8.5 12h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSquareWave);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgStrategy(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6 20.5C7 11 11.5 8 20 6M15.909 3.81L20.395 5.9l-2.092 4.486M5 7a2 2 0 100-4 2 2 0 000 4zM16 20.243l2.121-2.122m0 0L20.243 16m-2.122 2.121L16 16m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgStrategy);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgTShirt(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6 4h3s0 3 3 3 3-3 3-3h3m0 7v8.4a.6.6 0 01-.6.6H6.6a.6.6 0 01-.6-.6V11M18 4l4.443 1.777a.6.6 0 01.334.78l-1.626 4.066a.6.6 0 01-.557.377H18M6 4L1.557 5.777a.6.6 0 00-.334.78l1.626 4.066a.6.6 0 00.557.377H6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTShirt);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgUserCrown(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 20v-1a7 7 0 0110-6.326M21 22l1-6-3.5 1.8L17 16l-1.5 1.8L12 16l1 6h8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgUserCrown);
export default ForwardRef;

View file

@ -0,0 +1,45 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgUserLove(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M22 17.28a2.28 2.28 0 01-.662 1.606c-.976.984-1.923 2.01-2.936 2.958a.597.597 0 01-.823-.017l-2.918-2.94a2.281 2.281 0 010-3.214 2.277 2.277 0 013.233 0l.106.107.106-.107A2.277 2.277 0 0122 17.28z"
stroke="currentColor"
strokeLinejoin="round"
/>
<Path
d="M5 20v-1a7 7 0 0110-6.326"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgUserLove);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgUserStar(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 20v-1a7 7 0 0110-6.326M16.635 16.415l1.039-2.203a.357.357 0 01.652 0l1.04 2.203 2.323.356c.298.045.416.429.2.649l-1.68 1.713.396 2.421c.051.311-.26.548-.527.401L18 20.812l-2.078 1.143c-.267.147-.578-.09-.527-.4l.396-2.422-1.68-1.713c-.216-.22-.098-.604.2-.65l2.324-.355z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgUserStar);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgVideoProjector(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 19h2M18 19h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 16.4V7.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6v8.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M5 10.01l.01-.011M8 10.01l.01-.011M11 10.01l.01-.011M5 14.01l.01-.011M8 14.01l.01-.011M11 14.01l.01-.011M17 14a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgVideoProjector);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgWomenTShirt(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 21H6s1.66-4.825 1.5-8c-.1-1.989-1.524-3.079-1-5 .23-.842 1-2 1-2S9 7 12 7s4.5-1 4.5-1 .77 1.158 1 2c.524 1.921-.9 3.011-1 5-.16 3.175 1.5 8 1.5 8zM7.5 6V3M16.5 6V3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWomenTShirt);
export default ForwardRef;

View file

@ -37,6 +37,7 @@ export { default as AddSquare } from './AddSquare'
export { default as AddToCart } from './AddToCart'
export { default as AddUser } from './AddUser'
export { default as AfricanTree } from './AfricanTree'
export { default as Agile } from './Agile'
export { default as AirConditioner } from './AirConditioner'
export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg'
export { default as AirplaneHelix } from './AirplaneHelix'
@ -173,6 +174,8 @@ export { default as BrainResearch } from './BrainResearch'
export { default as BrainWarning } from './BrainWarning'
export { default as Brain } from './Brain'
export { default as BreadSlice } from './BreadSlice'
export { default as BrightCrown } from './BrightCrown'
export { default as BrightStar } from './BrightStar'
export { default as BrightnessWindow } from './BrightnessWindow'
export { default as Brightness } from './Brightness'
export { default as BubbleDownload } from './BubbleDownload'
@ -188,6 +191,8 @@ export { default as BusStop } from './BusStop'
export { default as Bus } from './Bus'
export { default as CableTag } from './CableTag'
export { default as Calculator } from './Calculator'
export { default as CalendarMinus } from './CalendarMinus'
export { default as CalendarPlus } from './CalendarPlus'
export { default as Calendar } from './Calendar'
export { default as Camera } from './Camera'
export { default as Cancel } from './Cancel'
@ -252,6 +257,7 @@ export { default as ColorFilter } from './ColorFilter'
export { default as ColorPickerEmpty } from './ColorPickerEmpty'
export { default as ColorPicker } from './ColorPicker'
export { default as Combine } from './Combine'
export { default as Community } from './Community'
export { default as CompactDisc } from './CompactDisc'
export { default as Compass } from './Compass'
export { default as CompressLines } from './CompressLines'
@ -279,6 +285,8 @@ export { default as CropRotateBr } from './CropRotateBr'
export { default as CropRotateTl } from './CropRotateTl'
export { default as CropRotateTr } from './CropRotateTr'
export { default as Crop } from './Crop'
export { default as CrownCircle } from './CrownCircle'
export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
@ -492,11 +500,13 @@ export { default as Gas } from './Gas'
export { default as GifFormat } from './GifFormat'
export { default as Gift } from './Gift'
export { default as GitBranch } from './GitBranch'
export { default as GitCherryPickCommit } from './GitCherryPickCommit'
export { default as GitCommand } from './GitCommand'
export { default as GitCommit } from './GitCommit'
export { default as GitCompare } from './GitCompare'
export { default as GitFork } from './GitFork'
export { default as GitMerge } from './GitMerge'
export { default as GitPullRequestClosed } from './GitPullRequestClosed'
export { default as GitPullRequest } from './GitPullRequest'
export { default as GitHub } from './GitHub'
export { default as GitLabFull } from './GitLabFull'
@ -607,6 +617,7 @@ export { default as KeyAltMinus } from './KeyAltMinus'
export { default as KeyAltPlus } from './KeyAltPlus'
export { default as KeyAltRemove } from './KeyAltRemove'
export { default as KeyAlt } from './KeyAlt'
export { default as KeyCommand } from './KeyCommand'
export { default as KeyframeAlignCenter } from './KeyframeAlignCenter'
export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal'
export { default as KeyframeAlignVertical } from './KeyframeAlignVertical'
@ -627,6 +638,7 @@ export { default as LayoutRight } from './LayoutRight'
export { default as LeaderboardStar } from './LeaderboardStar'
export { default as Leaderboard } from './Leaderboard'
export { default as Leaf } from './Leaf'
export { default as Learning } from './Learning'
export { default as LeftRoundArrow } from './LeftRoundArrow'
export { default as Lens } from './Lens'
export { default as Lifebelt } from './Lifebelt'
@ -690,6 +702,7 @@ export { default as MediaImage } from './MediaImage'
export { default as MediaVideoFolder } from './MediaVideoFolder'
export { default as MediaVideoList } from './MediaVideoList'
export { default as MediaVideo } from './MediaVideo'
export { default as MediumPriority } from './MediumPriority'
export { default as Medium } from './Medium'
export { default as Megaphone } from './Megaphone'
export { default as MenuScale } from './MenuScale'
@ -774,6 +787,7 @@ export { default as NumberedListRight } from './NumberedListRight'
export { default as Octagon } from './Octagon'
export { default as OffTag } from './OffTag'
export { default as OilIndustry } from './OilIndustry'
export { default as Okrs } from './Okrs'
export { default as OnTag } from './OnTag'
export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'
export { default as OnePointCircle } from './OnePointCircle'
@ -873,6 +887,7 @@ export { default as Position } from './Position'
export { default as Potion } from './Potion'
export { default as Pound } from './Pound'
export { default as PrecisionTool } from './PrecisionTool'
export { default as Presentation } from './Presentation'
export { default as PrinterAlt } from './PrinterAlt'
export { default as Printer } from './Printer'
export { default as PrintingPage } from './PrintingPage'
@ -1020,6 +1035,7 @@ export { default as SidebarCollapse } from './SidebarCollapse'
export { default as SidebarExpand } from './SidebarExpand'
export { default as SigmaFunction } from './SigmaFunction'
export { default as SimpleCart } from './SimpleCart'
export { default as SineWave } from './SineWave'
export { default as SingleTapGesture } from './SingleTapGesture'
export { default as Skateboard } from './Skateboard'
export { default as Skateboarding } from './Skateboarding'
@ -1051,6 +1067,7 @@ export { default as Spades } from './Spades'
export { default as Sphere } from './Sphere'
export { default as Spiral } from './Spiral'
export { default as SpockHandGesture } from './SpockHandGesture'
export { default as SquareWave } from './SquareWave'
export { default as Square } from './Square'
export { default as Stackoverflow } from './Stackoverflow'
export { default as StarDashed } from './StarDashed'
@ -1061,6 +1078,7 @@ export { default as StatUp } from './StatUp'
export { default as StatsDownSquare } from './StatsDownSquare'
export { default as StatsReport } from './StatsReport'
export { default as StatsUpSquare } from './StatsUpSquare'
export { default as Strategy } from './Strategy'
export { default as Stretching } from './Stretching'
export { default as Stroller } from './Stroller'
export { default as StyleBorder } from './StyleBorder'
@ -1082,6 +1100,7 @@ export { default as SwitchOff } from './SwitchOff'
export { default as SwitchOn } from './SwitchOn'
export { default as SystemRestart } from './SystemRestart'
export { default as SystemShut } from './SystemShut'
export { default as TShirt } from './TShirt'
export { default as Table2Columns } from './Table2Columns'
export { default as TableRows } from './TableRows'
export { default as Table } from './Table'
@ -1161,8 +1180,11 @@ export { default as Usb } from './Usb'
export { default as UserBag } from './UserBag'
export { default as UserCart } from './UserCart'
export { default as UserCircle } from './UserCircle'
export { default as UserCrown } from './UserCrown'
export { default as UserLove } from './UserLove'
export { default as UserScan } from './UserScan'
export { default as UserSquare } from './UserSquare'
export { default as UserStar } from './UserStar'
export { default as User } from './User'
export { default as VeganCircle } from './VeganCircle'
export { default as VeganSquare } from './VeganSquare'
@ -1174,6 +1196,7 @@ export { default as VerticalSplit } from './VerticalSplit'
export { default as Vials } from './Vials'
export { default as VideoCameraOff } from './VideoCameraOff'
export { default as VideoCamera } from './VideoCamera'
export { default as VideoProjector } from './VideoProjector'
export { default as ViewColumns2 } from './ViewColumns2'
export { default as ViewColumns3 } from './ViewColumns3'
export { default as ViewGrid } from './ViewGrid'
@ -1215,6 +1238,7 @@ export { default as WifiTag } from './WifiTag'
export { default as Wifi } from './Wifi'
export { default as Wind } from './Wind'
export { default as Windows } from './Windows'
export { default as WomenTShirt } from './WomenTShirt'
export { default as WrapText } from './WrapText'
export { default as Wrench } from './Wrench'
export { default as Wristwatch } from './Wristwatch'

View file

@ -0,0 +1,46 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAgile(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M17.5 19H22m0 0l-2.5-2.5M22 19l-2.5 2.5M12 2L9.5 4.5 12 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10.5 4.5a7.5 7.5 0 010 15H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6.756 5.5A7.497 7.497 0 003 12c0 1.688.558 3.246 1.5 4.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAgile);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgBrightCrown(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<g
clipPath="url(#bright-crown_svg__clip0_3057_14630)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M22 12h1M12 2V1M12 23v-1M20 20l-1-1M20 4l-1 1M4 20l1-1M4 4l1 1M1 12h1M16.8 15.5l1.2-7-4.2 2.1L12 8.5l-1.8 2.1L6 8.5l1.2 7h9.6z" />
</g>
<defs>
<clipPath id="bright-crown_svg__clip0_3057_14630">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBrightCrown);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgBrightStar(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<g
clipPath="url(#bright-star_svg__clip0_3057_14628)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M9.952 9.623l1.559-3.305a.535.535 0 01.978 0l1.559 3.305 3.485.533c.447.068.625.644.302.974l-2.522 2.57.595 3.631c.077.467-.391.822-.791.602L12 16.218l-3.117 1.715c-.4.22-.868-.135-.791-.602l.595-3.63-2.522-2.571c-.323-.33-.145-.906.302-.974l3.485-.533zM22 12h1M12 2V1M12 23v-1M20 20l-1-1M20 4l-1 1M4 20l1-1M4 4l1 1M1 12h1" />
</g>
<defs>
<clipPath id="bright-star_svg__clip0_3057_14628">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBrightStar);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCalendarMinus(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13 21H5a2 2 0 01-2-2v-9h18v3m-6-9V2m0 2v2m0-2h-4.5M3 10V6a2 2 0 012-2h2M7 2v4M21 10V6a2 2 0 00-2-2h-.5M14.992 18H21"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCalendarMinus);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCalendarPlus(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13 21H5a2 2 0 01-2-2v-9h18v3m-6-9V2m0 2v2m0-2h-4.5M3 10V6a2 2 0 012-2h2M7 2v4M21 10V6a2 2 0 00-2-2h-.5M14.992 18h3M21 18h-3.008m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCalendarPlus);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCommunity(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 18v-1a5 5 0 015-5v0a5 5 0 015 5v1M1 18v-1a3 3 0 013-3v0M23 18v-1a3 3 0 00-3-3v0M12 12a3 3 0 100-6 3 3 0 000 6zM4 14a2 2 0 100-4 2 2 0 000 4zM20 14a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCommunity);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCrown(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M19.2 17L21 7l-6.3 3L12 7l-2.7 3L3 7l1.8 10h14.4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCrown);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCrownCircle(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16.8 15.5l1.2-7-4.2 2.1L12 8.5l-1.8 2.1L6 8.5l1.2 7h9.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCrownCircle);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgGitCherryPickCommit(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M17 11v-1a2 2 0 00-2-2h-3m-5 3v-1a2 2 0 012-2h3m0 0V4M12 20a3 3 0 100-6 3 3 0 000 6zM9 17H3M15 17h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCherryPickCommit);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgGitPullRequestClosed(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M18 21a2 2 0 100-4 2 2 0 000 4zM6 21a2 2 0 100-4 2 2 0 000 4zM6 11v6M18 17V7s0-2-2-2h-4M4 7.243L6.121 5.12m0 0L8.243 3M6.12 5.121L4 3m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGitPullRequestClosed);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgKeyCommand(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M9 6v12M15 6v12M9 6a3 3 0 10-3 3h12a3 3 0 10-3-3M9 18a3 3 0 11-3-3h12a3 3 0 11-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgKeyCommand);
export default ForwardRef;

View file

@ -0,0 +1,47 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgLearning(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M6.818 22v-2.857C6.52 16.166 3 14.572 3 10c0-4.57 2.727-8.056 8.182-8 3.927.042 7.636 2.286 7.636 6.858L21 12.286c0 2.286-2.182 2.286-2.182 2.286s.546 5.714-4.364 5.714V22"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11 12a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11 13a3 3 0 100-6 3 3 0 000 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="0.3 2"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgLearning);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgMediumPriority(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<g
clipPath="url(#medium-priority_svg__clip0_2475_13213)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M11.576 1.424a.6.6 0 01.848 0l10.152 10.152a.6.6 0 010 .848L12.424 22.576a.6.6 0 01-.848 0L1.424 12.424a.6.6 0 010-.848L11.576 1.424zM6 12h4M14 12h4" />
</g>
<defs>
<clipPath id="medium-priority_svg__clip0_2475_13213">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMediumPriority);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgOkrs(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M18 14a2 2 0 100-4 2 2 0 000 4zM18 7a2 2 0 100-4 2 2 0 000 4zM3 5h10M3 12h10M3 19h10M16 21.243l2.121-2.122m0 0L20.243 17m-2.122 2.121L16 17m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgOkrs);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgPresentation(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M22 4.6v12.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6V4.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6zM8.5 21.5L12 18l3.5 3.5M12 2v2M9 12v2M12 10v4M15 8v6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPresentation);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgSineWave(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 12c0-3.857 1.286-9 3.857-9 3.857 0 6.429 18 10.286 18C19.714 21 21 15.857 21 12M3 12h2M19 12h2M15.5 12h1M7.5 12h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSineWave);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgSquareWave(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 12h3V4h6v16h6v-8h3M14.5 12h1M8.5 12h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSquareWave);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgStrategy(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M6 20.5C7 11 11.5 8 20 6M15.909 3.81L20.395 5.9l-2.092 4.486M5 7a2 2 0 100-4 2 2 0 000 4zM16 20.243l2.121-2.122m0 0L20.243 16m-2.122 2.121L16 16m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgStrategy);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgTShirt(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M6 4h3s0 3 3 3 3-3 3-3h3m0 7v8.4a.6.6 0 01-.6.6H6.6a.6.6 0 01-.6-.6V11M18 4l4.443 1.777a.6.6 0 01.334.78l-1.626 4.066a.6.6 0 01-.557.377H18M6 4L1.557 5.777a.6.6 0 00-.334.78l1.626 4.066a.6.6 0 00.557.377H6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgTShirt);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgUserCrown(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M5 20v-1a7 7 0 0110-6.326M21 22l1-6-3.5 1.8L17 16l-1.5 1.8L12 16l1 6h8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgUserCrown);
export default ForwardRef;

View file

@ -0,0 +1,45 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgUserLove(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M22 17.28a2.28 2.28 0 01-.662 1.606c-.976.984-1.923 2.01-2.936 2.958a.597.597 0 01-.823-.017l-2.918-2.94a2.281 2.281 0 010-3.214 2.277 2.277 0 013.233 0l.106.107.106-.107A2.277 2.277 0 0122 17.28z"
stroke="currentColor"
strokeLinejoin="round"
/>
<path
d="M5 20v-1a7 7 0 0110-6.326"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgUserLove);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgUserStar(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M5 20v-1a7 7 0 0110-6.326M16.635 16.415l1.039-2.203a.357.357 0 01.652 0l1.04 2.203 2.323.356c.298.045.416.429.2.649l-1.68 1.713.396 2.421c.051.311-.26.548-.527.401L18 20.812l-2.078 1.143c-.267.147-.578-.09-.527-.4l.396-2.422-1.68-1.713c-.216-.22-.098-.604.2-.65l2.324-.355z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgUserStar);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgVideoProjector(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M4 19h2M18 19h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 16.4V7.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6v8.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M5 10.01l.01-.011M8 10.01l.01-.011M11 10.01l.01-.011M5 14.01l.01-.011M8 14.01l.01-.011M11 14.01l.01-.011M17 14a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgVideoProjector);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgWomenTShirt(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M18 21H6s1.66-4.825 1.5-8c-.1-1.989-1.524-3.079-1-5 .23-.842 1-2 1-2S9 7 12 7s4.5-1 4.5-1 .77 1.158 1 2c.524 1.921-.9 3.011-1 5-.16 3.175 1.5 8 1.5 8zM7.5 6V3M16.5 6V3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgWomenTShirt);
export default ForwardRef;

View file

@ -37,6 +37,7 @@ export { default as AddSquare } from './AddSquare'
export { default as AddToCart } from './AddToCart'
export { default as AddUser } from './AddUser'
export { default as AfricanTree } from './AfricanTree'
export { default as Agile } from './Agile'
export { default as AirConditioner } from './AirConditioner'
export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg'
export { default as AirplaneHelix } from './AirplaneHelix'
@ -173,6 +174,8 @@ export { default as BrainResearch } from './BrainResearch'
export { default as BrainWarning } from './BrainWarning'
export { default as Brain } from './Brain'
export { default as BreadSlice } from './BreadSlice'
export { default as BrightCrown } from './BrightCrown'
export { default as BrightStar } from './BrightStar'
export { default as BrightnessWindow } from './BrightnessWindow'
export { default as Brightness } from './Brightness'
export { default as BubbleDownload } from './BubbleDownload'
@ -188,6 +191,8 @@ export { default as BusStop } from './BusStop'
export { default as Bus } from './Bus'
export { default as CableTag } from './CableTag'
export { default as Calculator } from './Calculator'
export { default as CalendarMinus } from './CalendarMinus'
export { default as CalendarPlus } from './CalendarPlus'
export { default as Calendar } from './Calendar'
export { default as Camera } from './Camera'
export { default as Cancel } from './Cancel'
@ -252,6 +257,7 @@ export { default as ColorFilter } from './ColorFilter'
export { default as ColorPickerEmpty } from './ColorPickerEmpty'
export { default as ColorPicker } from './ColorPicker'
export { default as Combine } from './Combine'
export { default as Community } from './Community'
export { default as CompactDisc } from './CompactDisc'
export { default as Compass } from './Compass'
export { default as CompressLines } from './CompressLines'
@ -279,6 +285,8 @@ export { default as CropRotateBr } from './CropRotateBr'
export { default as CropRotateTl } from './CropRotateTl'
export { default as CropRotateTr } from './CropRotateTr'
export { default as Crop } from './Crop'
export { default as CrownCircle } from './CrownCircle'
export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
@ -492,11 +500,13 @@ export { default as Gas } from './Gas'
export { default as GifFormat } from './GifFormat'
export { default as Gift } from './Gift'
export { default as GitBranch } from './GitBranch'
export { default as GitCherryPickCommit } from './GitCherryPickCommit'
export { default as GitCommand } from './GitCommand'
export { default as GitCommit } from './GitCommit'
export { default as GitCompare } from './GitCompare'
export { default as GitFork } from './GitFork'
export { default as GitMerge } from './GitMerge'
export { default as GitPullRequestClosed } from './GitPullRequestClosed'
export { default as GitPullRequest } from './GitPullRequest'
export { default as GitHub } from './GitHub'
export { default as GitLabFull } from './GitLabFull'
@ -607,6 +617,7 @@ export { default as KeyAltMinus } from './KeyAltMinus'
export { default as KeyAltPlus } from './KeyAltPlus'
export { default as KeyAltRemove } from './KeyAltRemove'
export { default as KeyAlt } from './KeyAlt'
export { default as KeyCommand } from './KeyCommand'
export { default as KeyframeAlignCenter } from './KeyframeAlignCenter'
export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal'
export { default as KeyframeAlignVertical } from './KeyframeAlignVertical'
@ -627,6 +638,7 @@ export { default as LayoutRight } from './LayoutRight'
export { default as LeaderboardStar } from './LeaderboardStar'
export { default as Leaderboard } from './Leaderboard'
export { default as Leaf } from './Leaf'
export { default as Learning } from './Learning'
export { default as LeftRoundArrow } from './LeftRoundArrow'
export { default as Lens } from './Lens'
export { default as Lifebelt } from './Lifebelt'
@ -690,6 +702,7 @@ export { default as MediaImage } from './MediaImage'
export { default as MediaVideoFolder } from './MediaVideoFolder'
export { default as MediaVideoList } from './MediaVideoList'
export { default as MediaVideo } from './MediaVideo'
export { default as MediumPriority } from './MediumPriority'
export { default as Medium } from './Medium'
export { default as Megaphone } from './Megaphone'
export { default as MenuScale } from './MenuScale'
@ -774,6 +787,7 @@ export { default as NumberedListRight } from './NumberedListRight'
export { default as Octagon } from './Octagon'
export { default as OffTag } from './OffTag'
export { default as OilIndustry } from './OilIndustry'
export { default as Okrs } from './Okrs'
export { default as OnTag } from './OnTag'
export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'
export { default as OnePointCircle } from './OnePointCircle'
@ -873,6 +887,7 @@ export { default as Position } from './Position'
export { default as Potion } from './Potion'
export { default as Pound } from './Pound'
export { default as PrecisionTool } from './PrecisionTool'
export { default as Presentation } from './Presentation'
export { default as PrinterAlt } from './PrinterAlt'
export { default as Printer } from './Printer'
export { default as PrintingPage } from './PrintingPage'
@ -1020,6 +1035,7 @@ export { default as SidebarCollapse } from './SidebarCollapse'
export { default as SidebarExpand } from './SidebarExpand'
export { default as SigmaFunction } from './SigmaFunction'
export { default as SimpleCart } from './SimpleCart'
export { default as SineWave } from './SineWave'
export { default as SingleTapGesture } from './SingleTapGesture'
export { default as Skateboard } from './Skateboard'
export { default as Skateboarding } from './Skateboarding'
@ -1051,6 +1067,7 @@ export { default as Spades } from './Spades'
export { default as Sphere } from './Sphere'
export { default as Spiral } from './Spiral'
export { default as SpockHandGesture } from './SpockHandGesture'
export { default as SquareWave } from './SquareWave'
export { default as Square } from './Square'
export { default as Stackoverflow } from './Stackoverflow'
export { default as StarDashed } from './StarDashed'
@ -1061,6 +1078,7 @@ export { default as StatUp } from './StatUp'
export { default as StatsDownSquare } from './StatsDownSquare'
export { default as StatsReport } from './StatsReport'
export { default as StatsUpSquare } from './StatsUpSquare'
export { default as Strategy } from './Strategy'
export { default as Stretching } from './Stretching'
export { default as Stroller } from './Stroller'
export { default as StyleBorder } from './StyleBorder'
@ -1082,6 +1100,7 @@ export { default as SwitchOff } from './SwitchOff'
export { default as SwitchOn } from './SwitchOn'
export { default as SystemRestart } from './SystemRestart'
export { default as SystemShut } from './SystemShut'
export { default as TShirt } from './TShirt'
export { default as Table2Columns } from './Table2Columns'
export { default as TableRows } from './TableRows'
export { default as Table } from './Table'
@ -1161,8 +1180,11 @@ export { default as Usb } from './Usb'
export { default as UserBag } from './UserBag'
export { default as UserCart } from './UserCart'
export { default as UserCircle } from './UserCircle'
export { default as UserCrown } from './UserCrown'
export { default as UserLove } from './UserLove'
export { default as UserScan } from './UserScan'
export { default as UserSquare } from './UserSquare'
export { default as UserStar } from './UserStar'
export { default as User } from './User'
export { default as VeganCircle } from './VeganCircle'
export { default as VeganSquare } from './VeganSquare'
@ -1174,6 +1196,7 @@ export { default as VerticalSplit } from './VerticalSplit'
export { default as Vials } from './Vials'
export { default as VideoCameraOff } from './VideoCameraOff'
export { default as VideoCamera } from './VideoCamera'
export { default as VideoProjector } from './VideoProjector'
export { default as ViewColumns2 } from './ViewColumns2'
export { default as ViewColumns3 } from './ViewColumns3'
export { default as ViewGrid } from './ViewGrid'
@ -1215,6 +1238,7 @@ export { default as WifiTag } from './WifiTag'
export { default as Wifi } from './Wifi'
export { default as Wind } from './Wind'
export { default as Windows } from './Windows'
export { default as WomenTShirt } from './WomenTShirt'
export { default as WrapText } from './WrapText'
export { default as Wrench } from './Wrench'
export { default as Wristwatch } from './Wristwatch'