Update build artifacts

This commit is contained in:
lucaburgio 2022-09-10 07:28:29 +00:00 committed by github-actions[bot]
parent 6cd887c742
commit d730622b5b
116 changed files with 4003 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,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AddPageAlt extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AddPageAlt({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 12V2.6C4 2.26863 4.26863 2 4.6 2H16.2515C16.4106 2 16.5632 2.06321 16.6757 2.17574L19.8243 5.32426C19.9368 5.43679 20 5.5894 20 5.74853V21.4C20 21.7314 19.7314 22 19.4 22H11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 2V5.4C16 5.73137 16.2686 6 16.6 6H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.99219 19H4.99219M7.99219 19H4.99219M4.99219 19V16M4.99219 19V22" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,29 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AngleTool extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AngleTool({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 21L3 3L9 3V15L21 15V21H3Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 19V21" stroke="currentColor" stroke-linecap="round"/>
<path d="M9 19V21" stroke="currentColor" stroke-linecap="round"/>
<path d="M3 7H5" stroke="currentColor" stroke-linecap="round"/>
<path d="M3 11H5" stroke="currentColor" stroke-linecap="round"/>
<path d="M3 15H5" stroke="currentColor" stroke-linecap="round"/>
<path d="M17 19V21" stroke="currentColor" stroke-linecap="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 AviFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AviFormat({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 9L13.5 15L15 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 15V9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M6 15V12M6 12V10.5C6 9.67157 6.67157 9 7.5 9V9C8.32843 9 9 9.67157 9 10.5L9 12M6 12H9M9 12L9 15" 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 BreadSlice extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BreadSlice({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.00009 20V9C7.00009 9 3.00004 4 9.50009 4H17.0001C24.0002 4 20.0001 9 20.0001 9V18C20.0001 19.1046 19.1047 20 18.0001 20H7.00009Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.00009 20H6.00009C4.89552 20 4.00009 19.1046 4.00009 18V9C4.00009 9 4.00543e-05 4 6.50009 4H10.0001" 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 ClosedCaptions extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ClosedCaptions({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="M1 15V9C1 5.68629 3.68629 3 7 3H17C20.3137 3 23 5.68629 23 9V15C23 18.3137 20.3137 21 17 21H7C3.68629 21 1 18.3137 1 15Z" stroke="currentColor"/>
<path d="M10.5 10L10.3284 9.82843C9.79799 9.29799 9.07857 9 8.32843 9V9C6.76633 9 5.5 10.2663 5.5 11.8284V12.1716C5.5 13.7337 6.76633 15 8.32843 15V15C9.07857 15 9.79799 14.702 10.3284 14.1716L10.5 14" stroke="currentColor" stroke-linecap="round"/>
<path d="M18.5 10L18.3284 9.82843C17.798 9.29799 17.0786 9 16.3284 9V9C14.7663 9 13.5 10.2663 13.5 11.8284V12.1716C13.5 13.7337 14.7663 15 16.3284 15V15C17.0786 15 17.798 14.702 18.3284 14.1716L18.5 14" stroke="currentColor" stroke-linecap="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 Clutery extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Clutery({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 20H9M12 20H9M9 20V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 20V12C17 12 19.5 11 19.5 9C19.5 7.24264 19.5 4.5 19.5 4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 8.5V4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.49999 11C5.49991 13.1281 8.99999 15 8.99999 15C8.99999 15 12.5001 13.1281 13.5 11C14.5795 8.70257 13.5 4.5 13.5 4.5L4.49999 4.5C4.49999 4.5 3.42047 8.70257 4.49999 11Z" 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 CoffeeCup extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CoffeeCup({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 11.6V15C17 18.3137 14.3137 21 11 21H9C5.68629 21 3 18.3137 3 15V11.6C3 11.2686 3.26863 11 3.6 11H16.4C16.7314 11 17 11.2686 17 11.6Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 9C12 8 12.7143 7 14.1429 7V7C15.7208 7 17 5.72081 17 4.14286V3.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 9V8.5C8 6.84315 9.34315 5.5 11 5.5V5.5C12.1046 5.5 13 4.60457 13 3.5V3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 11H18.5C19.8807 11 21 12.1193 21 13.5C21 14.8807 19.8807 16 18.5 16H17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,33 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class DesignNib extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const DesignNib({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_2585_14438)">
<path d="M17.6744 11.4075L15.7691 17.1233C15.7072 17.309 15.5586 17.4529 15.3709 17.5087L3.69348 20.9803C3.22819 21.1186 2.79978 20.676 2.95328 20.2155L6.74467 8.84131C6.79981 8.67588 6.92419 8.54263 7.08543 8.47624L12.472 6.25822C12.696 6.166 12.9535 6.21749 13.1248 6.38876L17.5294 10.7935C17.6901 10.9542 17.7463 11.1919 17.6744 11.4075Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.2959 20.6016L9.65986 14.2376" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.7917 11.0557L20.6202 8.22724C21.4012 7.44619 21.4012 6.17986 20.6202 5.39881L18.4989 3.27749C17.7178 2.49645 16.4515 2.49645 15.6704 3.27749L12.842 6.10592" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.7814 12.1163C11.1956 11.5305 10.2458 11.5305 9.66004 12.1163C9.07426 12.7021 9.07426 13.6519 9.66004 14.2376C10.2458 14.8234 11.1956 14.8234 11.7814 14.2376C12.3671 13.6519 12.3671 12.7021 11.7814 12.1163Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_2585_14438">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</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 Forward extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Forward({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 10L8 10C0 10 0 21 8 21M22 10L15 3M22 10L15 17" 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 ForwardMessage extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ForwardMessage({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 8L12 11L17 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 20H4C2.89543 20 2 19.1046 2 18V6C2 4.89543 2.89543 4 4 4H20C21.1046 4 22 4.89543 22 6V12.8571" stroke="currentColor" stroke-linecap="round"/>
<path d="M22 17.1111H15.7C12.1 17.1111 12.1 22 15.7 22M22 17.1111L18.85 14M22 17.1111L18.85 20.2222" 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 GifFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GifFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M15.5 15L15.5 9H18.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.5 12H17.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 15L12 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.5 9H5.5L5.5 15L8.5 15V12.6" 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 Hammer extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Hammer({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="M10.6337 11.0555L2.14839 19.5407L4.26971 21.6621L12.755 13.1768" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.6337 11.0555L12.0479 9.64124C12.0479 9.64124 12.4015 6.45926 8.86595 2.92373L9.92661 1.86307L18.4119 7.51992L17.3512 8.58058L18.7654 9.99479L19.8261 8.93413L22.301 11.409L17.3512 16.3588L14.8764 13.8839L15.937 12.8232L14.5228 11.409L12.755 13.1768L10.6337 11.0555Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -32,6 +32,7 @@ export './add_lens.dart';
export './add_media_image.dart';
export './add_media_video.dart';
export './add_page.dart';
export './add_page_alt.dart';
export './add_pin_alt.dart';
export './add_selection.dart';
export './add_square.dart';
@ -58,6 +59,7 @@ export './align_left_box.dart';
export './align_right.dart';
export './align_right_box.dart';
export './align_top_box.dart';
export './angle_tool.dart';
export './antenna.dart';
export './antenna_off.dart';
export './antenna_signal.dart';
@ -96,6 +98,7 @@ export './atom.dart';
export './attachment.dart';
export './augmented_reality.dart';
export './auto_flash.dart';
export './avi_format.dart';
export './axes.dart';
export './backward_15_seconds.dart';
export './bag.dart';
@ -156,6 +159,7 @@ export './bowling_ball.dart';
export './box.dart';
export './box_iso.dart';
export './boxing_glove.dart';
export './bread_slice.dart';
export './brightness.dart';
export './brightness_window.dart';
export './bubble_download.dart';
@ -207,6 +211,7 @@ export './city.dart';
export './clean_water.dart';
export './clipboard_check.dart';
export './clock_outline.dart';
export './closed_captions.dart';
export './closet.dart';
export './cloud.dart';
export './cloud_book_alt.dart';
@ -217,10 +222,12 @@ export './cloud_error.dart';
export './cloud_sunny.dart';
export './cloud_sync.dart';
export './cloud_upload.dart';
export './clutery.dart';
export './code.dart';
export './code_brackets.dart';
export './code_brackets_square.dart';
export './codepen.dart';
export './coffee_cup.dart';
export './coin.dart';
export './collage_frame.dart';
export './collapse.dart';
@ -289,6 +296,7 @@ export './delete_circled_outline.dart';
export './delivery.dart';
export './delivery_truck.dart';
export './depth.dart';
export './design_nib.dart';
export './design_pencil.dart';
export './desk.dart';
export './dialpad.dart';
@ -441,7 +449,9 @@ export './folder_settings.dart';
export './font_size.dart';
export './football.dart';
export './football_ball.dart';
export './forward.dart';
export './forward_15_seconds.dart';
export './forward_message.dart';
export './forward_outline.dart';
export './frame.dart';
export './frame_alt.dart';
@ -457,6 +467,7 @@ export './garage.dart';
export './gas.dart';
export './gas_tank.dart';
export './gas_tank_drop.dart';
export './gif_format.dart';
export './gift.dart';
export './git_branch.dart';
export './git_command.dart';
@ -496,6 +507,7 @@ export './group.dart';
export './gym.dart';
export './half_cookie.dart';
export './half_moon.dart';
export './hammer.dart';
export './hand_brake.dart';
export './handbag.dart';
export './hard_drive.dart';
@ -559,6 +571,8 @@ export './italic.dart';
export './italic_square_outline.dart';
export './journal.dart';
export './journal_page.dart';
export './jpeg_format.dart';
export './jpg_format.dart';
export './kanban_board.dart';
export './key_alt.dart';
export './key_alt_back.dart';
@ -597,6 +611,7 @@ export './link.dart';
export './linked_in.dart';
export './linux.dart';
export './list.dart';
export './list_select.dart';
export './load_action_floppy.dart';
export './lock.dart';
export './lock_key.dart';
@ -622,7 +637,9 @@ export './mac_os_window.dart';
export './magnet.dart';
export './magnet_energy.dart';
export './mail.dart';
export './mail_in.dart';
export './mail_opened.dart';
export './mail_out.dart';
export './male.dart';
export './map.dart';
export './map_issue.dart';
@ -684,6 +701,7 @@ export './move_right.dart';
export './move_ruler.dart';
export './move_up.dart';
export './movie.dart';
export './mpeg_format.dart';
export './multi_bubble.dart';
export './multi_mac_os_window.dart';
export './multi_window.dart';
@ -718,6 +736,8 @@ export './no_lock.dart';
export './no_smoking.dart';
export './no_smoking_circled.dart';
export './notes.dart';
export './npm.dart';
export './npm_square.dart';
export './numbered_list_left.dart';
export './numbered_list_right.dart';
export './octagon.dart';
@ -807,6 +827,7 @@ export './plug_type_c.dart';
export './plug_type_g.dart';
export './plug_type_l.dart';
export './plus.dart';
export './png_format.dart';
export './pocket.dart';
export './podcast.dart';
export './pokeball.dart';
@ -831,6 +852,7 @@ export './question_square_outline.dart';
export './quote.dart';
export './quote_message.dart';
export './rain.dart';
export './raw_format.dart';
export './receive_dollars.dart';
export './receive_euros.dart';
export './receive_pounds.dart';
@ -857,6 +879,7 @@ export './remove_link.dart';
export './remove_media_image.dart';
export './remove_media_video.dart';
export './remove_page.dart';
export './remove_page_alt.dart';
export './remove_pin.dart';
export './remove_pin_alt.dart';
export './remove_selection.dart';
@ -864,6 +887,8 @@ export './remove_square.dart';
export './remove_user.dart';
export './repeat.dart';
export './repeat_once.dart';
export './reply.dart';
export './reply_to_message.dart';
export './report_columns.dart';
export './reports.dart';
export './repository.dart';
@ -897,6 +922,7 @@ export './scanning.dart';
export './scarf.dart';
export './scissor.dart';
export './scissor_alt.dart';
export './screenshot.dart';
export './sea_and_sun.dart';
export './sea_waves.dart';
export './search.dart';
@ -908,8 +934,11 @@ export './security_pass.dart';
export './select_window.dart';
export './selection.dart';
export './selective_tool.dart';
export './send.dart';
export './send_diagonal.dart';
export './send_dollars.dart';
export './send_euros.dart';
export './send_mail.dart';
export './send_pounds.dart';
export './send_yens.dart';
export './server.dart';
@ -997,9 +1026,11 @@ export './stats_square_up.dart';
export './stretching.dart';
export './stroller.dart';
export './style_border.dart';
export './submit_document.dart';
export './substract.dart';
export './suggestion.dart';
export './sun_light.dart';
export './svg_format.dart';
export './swimming.dart';
export './swipe_down_gesture.dart';
export './swipe_left_gesture.dart';
@ -1026,15 +1057,19 @@ export './terminal_simple.dart';
export './test_tube.dart';
export './text.dart';
export './text_alt.dart';
export './text_box.dart';
export './text_size.dart';
export './three_points_circle.dart';
export './three_stars.dart';
export './thumbs_down.dart';
export './thumbs_up.dart';
export './thunderstorm.dart';
export './tif_format.dart';
export './tiff_format.dart';
export './tik_tok.dart';
export './timer.dart';
export './timer_off.dart';
export './tools.dart';
export './tournament.dart';
export './tower.dart';
export './tower_check.dart';
@ -1126,6 +1161,7 @@ export './watering_soil.dart';
export './web_window.dart';
export './web_window_close.dart';
export './web_window_energy_consumption.dart';
export './webp_format.dart';
export './weight.dart';
export './weight_alt.dart';
export './white_flag.dart';
@ -1138,6 +1174,7 @@ export './wifi_signal_none.dart';
export './wind.dart';
export './windows.dart';
export './wrap_text.dart';
export './wrench.dart';
export './wristwatch.dart';
export './www.dart';
export './xbox_a.dart';

View file

@ -0,0 +1,29 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class JpegFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const JpegFormat({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 15V12M7 12V9H10L10 12H7Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 9H13L13 15L16 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 9H19V15L22 15V12.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 9C4 9 4 11.4 4 13.2C4 15 2 15 2 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 12H15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="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 JpgFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const JpgFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M10 15V12M10 12V9H13L13 12H10Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19 9H16L16 15L19 15V12.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 9C7 9 7 11.4 7 13.2C7 15 5 15 5 15" 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 ListSelect extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ListSelect({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 6L20 6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 6.01L5.01 5.99889" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 12.01L5.01 11.9989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.80005 17.8L4.60005 18.6L6.60004 16.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 12L20 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 18L20 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 MailIn extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const MailIn({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="M5 9L9.5 12L14 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 19H3C1.89543 19 1 18.1046 1 17V7C1 5.89543 1.89543 5 3 5H16C17.1046 5 18 5.89543 18 7V9" stroke="currentColor" stroke-linecap="round"/>
<path d="M23 14H17M17 14L20 11M17 14L20 17" 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 MailOut extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const MailOut({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="M5 9L9.5 12L14 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 19H3C1.89543 19 1 18.1046 1 17V7C1 5.89543 1.89543 5 3 5H16C17.1046 5 18 5.89543 18 7V9" stroke="currentColor" stroke-linecap="round"/>
<path d="M17 14H23M23 14L20 11M23 14L20 17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,29 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class MpegFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const MpegFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M7.5 15V12M7.5 12V9H10.5L10.5 12H7.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.5 15L1.5 9L3 12L4.5 9L4.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.5 9H13.5L13.5 15L16.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.5 9H19.5V15L22.5 15V12.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.5 12H15.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,29 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Npm extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Npm({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="M1 8L23 8V15L11 15V17L7.5 17V15L1 15V8Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 8L7.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.5 8V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 11V15" stroke="currentColor" stroke-linecap="round"/>
<path d="M5 11V15" stroke="currentColor" stroke-linecap="round"/>
<path d="M11 11V12" stroke="currentColor" stroke-linecap="round"/>
<path d="M20.5 11V15" stroke="currentColor" stroke-linecap="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 NpmSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const NpmSquare({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="M8 16H16L16 8H8L8 16Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 11V16" stroke="currentColor" stroke-linecap="round"/>
<path d="M21 3.6V20.4C21 20.7314 20.7314 21 20.4 21H3.6C3.26863 21 3 20.7314 3 20.4V3.6C3 3.26863 3.26863 3 3.6 3H20.4C20.7314 3 21 3.26863 21 3.6Z" 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 PngFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PngFormat({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.5 15V12M4.5 12V9H7.5L7.5 12H4.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.5 15L10.5 9L13.5 15V9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 9H16.5V15L19.5 15V12.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="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 RawFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const RawFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M16.5 9V15L18 12L19.5 15V9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.5 15V12M10.5 12V10.5C10.5 9.67157 11.1716 9 12 9V9C12.8284 9 13.5 9.67157 13.5 10.5L13.5 12M10.5 12H13.5M13.5 12L13.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.5 15V12V9H6.9C7.23137 9 7.5 9.26863 7.5 9.6L7.5 10.5C7.5 11.3284 6.82843 12 6 12V12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.5 12H6V12C6.82843 12 7.5 12.6716 7.5 13.5L7.5 15" 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 RemovePageAlt extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const RemovePageAlt({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 12V2.6C4 2.26863 4.26863 2 4.6 2H16.2515C16.4106 2 16.5632 2.06321 16.6757 2.17574L19.8243 5.32426C19.9368 5.43679 20 5.5894 20 5.74853V21.4C20 21.7314 19.7314 22 19.4 22H11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 2V5.4C16 5.73137 16.2686 6 16.6 6H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.99219 19H7.99219" 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 Reply extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Reply({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="M2 10C2 10 13 10 16 10C24 10 24 21 16 21M2 10L9 3M2 10L9 17" 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 ReplyToMessage extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ReplyToMessage({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 8L12 11L17 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 20H4C2.89543 20 2 19.1046 2 18V6C2 4.89543 2.89543 4 4 4H20C21.1046 4 22 4.89543 22 6V12.8571" stroke="currentColor" stroke-linecap="round"/>
<path d="M13 17.1111H19.3C22.9 17.1111 22.9 22 19.3 22M13 17.1111L16.15 14M13 17.1111L16.15 20.2222" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,30 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Screenshot extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Screenshot({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="M10 21.4V14.3937C10 14.0623 10.2686 13.7937 10.6 13.7937H11.7728C11.9768 13.7937 12.1667 13.6901 12.2772 13.5186L13.7228 11.275C13.8333 11.1036 14.0232 11 14.2272 11H17.7728C17.9768 11 18.1667 11.1036 18.2772 11.275L19.7228 13.5186C19.8333 13.6901 20.0232 13.7937 20.2272 13.7937H21.4C21.7314 13.7937 22 14.0623 22 14.3937V21.4C22 21.7314 21.7314 22 21.4 22H10.6C10.2686 22 10 21.7314 10 21.4Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 19C17.1046 19 18 18.1046 18 17C18 15.8954 17.1046 15 16 15C14.8954 15 14 15.8954 14 17C14 18.1046 14.8954 19 16 19Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 18V21H5.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 9.5L3 14.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 6V3H6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.5 3L14.5 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 3H21V5.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 10V8.5" 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 Send extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Send({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 12L3 20L6.5625 12L3 4L22 12Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.5 12L22 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,31 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SendDiagonal extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SendDiagonal({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_2476_13290)">
<path d="M22.1525 3.55321L11.1772 21.0044L9.50686 12.4078L2.00002 7.89795L22.1525 3.55321Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.45557 12.4436L22.1524 3.55321" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_2476_13290">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</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 SendMail extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SendMail({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 9L13.5 12L18 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 13.5H5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 10.5H5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 7.5V7C5 5.89543 5.89543 5 7 5H20C21.1046 5 22 5.89543 22 7V17C22 18.1046 21.1046 19 20 19H7C5.89543 19 5 18.1046 5 17V16.5" stroke="currentColor" stroke-linecap="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 SubmitDocument extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SubmitDocument({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="M20 13V5.74853C20 5.5894 19.9368 5.43679 19.8243 5.32426L16.6757 2.17574C16.5632 2.06321 16.4106 2 16.2515 2H4.6C4.26863 2 4 2.26863 4 2.6V21.4C4 21.7314 4.26863 22 4.6 22H14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 2V5.4C16 5.73137 16.2686 6 16.6 6H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 19H22M22 19L19 16M22 19L19 22" 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 SvgFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SvgFormat({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.5 15H6.5C7.32843 15 8 14.3284 8 13.5V13.5C8 12.6716 7.32843 12 6.5 12H6C5.17157 12 4.5 11.3284 4.5 10.5V10.5C4.5 9.67157 5.17157 9 6 9H7.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.5 9L12 15L13.5 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 9H16.5V15L19.5 15V12.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="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 TextBox extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TextBox({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 8L12 16M12 8H8M12 8H16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2 20.4V3.6C2 3.26863 2.26863 3 2.6 3H21.4C21.7314 3 22 3.26863 22 3.6V20.4C22 20.7314 21.7314 21 21.4 21H2.6C2.26863 21 2 20.7314 2 20.4Z" stroke="currentColor" stroke-linejoin="round"/>
<path d="M1 13V11H3V13H1Z" stroke="currentColor" stroke-linejoin="round"/>
<path d="M21 13V11H23V13H21Z" stroke="currentColor" 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 TifFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TifFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M15 15L15 9H18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.5 9H8M9.5 9H8M8 9L8 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 12H17.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 15L12 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,30 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TiffFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TiffFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M12 15L12 9H15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 15V9H20.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.5 9H5M6.5 9H5M5 9L5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 12H14.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 12H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 15L9 9" 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 Tools extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Tools({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="M10.0503 10.6066L2.97923 17.6777C2.19818 18.4587 2.19818 19.7251 2.97923 20.5061V20.5061C3.76027 21.2872 5.0266 21.2872 5.80765 20.5061L12.8787 13.4351" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.1927 13.7994L21.071 17.6777C21.8521 18.4587 21.8521 19.7251 21.071 20.5061V20.5061C20.29 21.2872 19.0236 21.2872 18.2426 20.5061L12.0341 14.2977" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.73267 5.90381L4.61135 6.61092L2.49003 3.07539L3.90424 1.66117L7.43978 3.78249L6.73267 5.90381ZM6.73267 5.90381L9.5629 8.73404" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.0503 10.6066C9.2065 8.45359 9.37147 5.62861 11.111 3.8891C12.8505 2.14958 16.0607 1.76778 17.8285 2.82844L14.7878 5.86911L14.5052 8.98015L17.6162 8.69754L20.6569 5.65686C21.7176 7.42463 21.3358 10.6349 19.5963 12.3744C17.8567 14.1139 15.0318 14.2789 12.8788 13.435" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,30 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WebpFormat extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WebpFormat({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 6V3.6C4 3.26863 4.26863 3 4.6 3H19.4C19.7314 3 20 3.26863 20 3.6V6" stroke="currentColor" stroke-linecap="round"/>
<path d="M4 18V20.4C4 20.7314 4.26863 21 4.6 21H19.4C19.7314 21 20 20.7314 20 20.4V18" stroke="currentColor" stroke-linecap="round"/>
<path d="M13.5 15V12V9H15.9C16.2314 9 16.5 9.26863 16.5 9.6L16.5 10.5C16.5 11.3284 15.8284 12 15 12V12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.5 15H15.9C16.2314 15 16.5 14.7314 16.5 14.4L16.5 13.5C16.5 12.6716 15.8284 12 15 12V12H13.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 15V12M19.5 12V9H22.5L22.5 12H19.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1.5 9L1.5 15L3 12L4.5 15L4.5 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.5 9H7.5L7.5 15L10.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 12H9.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,31 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Wrench extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Wrench({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_2576_14436)">
<path d="M10.0503 10.6066L2.97923 17.6777C2.19818 18.4587 2.19818 19.725 2.97923 20.5061V20.5061C3.76027 21.2871 5.0266 21.2871 5.80765 20.5061L12.8787 13.435" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.0502 10.6066C9.20638 8.45358 9.37134 5.6286 11.1109 3.88909C12.8504 2.14957 16.0606 1.76777 17.8284 2.82843L14.7877 5.8691L14.5051 8.98014L17.6161 8.69753L20.6568 5.65685C21.7175 7.42462 21.3357 10.6349 19.5961 12.3744C17.8566 14.1139 15.0316 14.2789 12.8786 13.435" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_2576_14436">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAddPageAlt(
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 12V2.6a.6.6 0 01.6-.6h11.652a.6.6 0 01.424.176l3.148 3.148A.6.6 0 0120 5.75V21.4a.6.6 0 01-.6.6H11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 2v3.4a.6.6 0 00.6.6H20M1.992 19h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddPageAlt);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAngleTool(
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 21V3h6v12h12v6H3z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M13 19v2M9 19v2M3 7h2M3 11h2M3 15h2M17 19v2"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAngleTool);
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 SvgAviFormat(
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 9l1.5 6L15 9M18 15V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M6 15v-3m0 0v-1.5A1.5 1.5 0 017.5 9v0A1.5 1.5 0 019 10.5V12m-3 0h3m0 0v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAviFormat);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgBreadSlice(
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 20V9S3 4 9.5 4H17c7 0 3 5 3 5v9a2 2 0 01-2 2H7z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M7 20H6a2 2 0 01-2-2V9S0 4 6.5 4H10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBreadSlice);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgClosedCaptions(
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="M1 15V9a6 6 0 016-6h10a6 6 0 016 6v6a6 6 0 01-6 6H7a6 6 0 01-6-6z"
stroke="currentColor"
/>
<Path
d="M10.5 10l-.172-.172a2.828 2.828 0 00-2-.828v0A2.828 2.828 0 005.5 11.828v.344A2.828 2.828 0 008.328 15v0c.75 0 1.47-.298 2-.828L10.5 14M18.5 10l-.172-.172a2.828 2.828 0 00-2-.828v0a2.828 2.828 0 00-2.828 2.828v.344A2.828 2.828 0 0016.328 15v0c.75 0 1.47-.298 2-.828L18.5 14"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgClosedCaptions);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgClutery(
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 20h3m3 0H9m0 0v-5M17 20v-8s2.5-1 2.5-3V4.5M17 8.5v-4M4.5 11c1 2.128 4.5 4 4.5 4s3.5-1.872 4.5-4c1.08-2.297 0-6.5 0-6.5h-9s-1.08 4.203 0 6.5z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgClutery);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCoffeeCup(
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 11.6V15a6 6 0 01-6 6H9a6 6 0 01-6-6v-3.4a.6.6 0 01.6-.6h12.8a.6.6 0 01.6.6zM12 9c0-1 .714-2 2.143-2v0A2.857 2.857 0 0017 4.143V3.5M8 9v-.5a3 3 0 013-3v0a2 2 0 002-2V3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 11h2.5a2.5 2.5 0 010 5H17"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCoffeeCup);
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 SvgDesignNib(
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(#design-nib_svg__clip0_2585_14438)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M17.674 11.408l-1.905 5.715a.6.6 0 01-.398.386L3.693 20.98a.6.6 0 01-.74-.765L6.745 8.841a.6.6 0 01.34-.365l5.387-2.218a.6.6 0 01.653.13l4.404 4.405a.6.6 0 01.145.615zM3.296 20.602l6.364-6.364" />
<Path d="M17.792 11.056l2.828-2.829a2 2 0 000-2.828L18.5 3.277a2 2 0 00-2.829 0l-2.828 2.829M11.781 12.116a1.5 1.5 0 10-2.121 2.122 1.5 1.5 0 002.121-2.122z" />
</G>
<Defs>
<ClipPath id="design-nib_svg__clip0_2585_14438">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDesignNib);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgForward(
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 10H8c-8 0-8 11 0 11m14-11l-7-7m7 7l-7 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgForward);
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 SvgForwardMessage(
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 8l5 3 5-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M10 20H4a2 2 0 01-2-2V6a2 2 0 012-2h16a2 2 0 012 2v6.857"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M22 17.111h-6.3c-3.6 0-3.6 4.889 0 4.889m6.3-4.889L18.85 14M22 17.111l-3.15 3.111"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgForwardMessage);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgGifFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M15.5 15V9h3M15.5 12h2M12 15V9M8.5 9h-3v6h3v-2.4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGifFormat);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgHammer(
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="M10.634 11.056L2.148 19.54l2.122 2.121 8.485-8.485"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M10.634 11.056l1.414-1.415s.354-3.182-3.182-6.717l1.06-1.06 8.486 5.656-1.06 1.06 1.413 1.415 1.061-1.06 2.475 2.474-4.95 4.95-2.475-2.475 1.061-1.06-1.414-1.415-1.768 1.768-2.121-2.121z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHammer);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgJpegFormat(
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 15v-3m0 0V9h3v3H7zM16 9h-3v6h3M22 9h-3v6h3v-2.4M4 9v4.2C4 15 2 15 2 15M13 12h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgJpegFormat);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgJpgFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M10 15v-3m0 0V9h3v3h-3zM19 9h-3v6h3v-2.4M7 9v4.2C7 15 5 15 5 15"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgJpgFormat);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgListSelect(
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 6h11M5 6.01l.01-.011M5 12.01l.01-.011M3.8 17.8l.8.8 2-2M9 12h11M9 18h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgListSelect);
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 SvgMailIn(
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="M5 9l4.5 3L14 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M17 19H3a2 2 0 01-2-2V7a2 2 0 012-2h13a2 2 0 012 2v2"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M23 14h-6m0 0l3-3m-3 3l3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgMailIn);
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 SvgMailOut(
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="M5 9l4.5 3L14 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M17 19H3a2 2 0 01-2-2V7a2 2 0 012-2h13a2 2 0 012 2v2"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M17 14h6m0 0l-3-3m3 3l-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgMailOut);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgMpegFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M7.5 15v-3m0 0V9h3v3h-3zM1.5 15V9L3 12l1.5-3v6M16.5 9h-3v6h3M22.5 9h-3v6h3v-2.4M13.5 12h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgMpegFormat);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgNpm(
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="M1 8h22v7H11v2H7.5v-2H1V8zM7.5 8v7M13.5 8v7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M18 11v4M5 11v4M11 11v1M20.5 11v4"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNpm);
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 SvgNpmSquare(
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="M8 16h8V8H8v8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M13 11v5" stroke="currentColor" strokeLinecap="round" />
<Path
d="M21 3.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNpmSquare);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgPngFormat(
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.5 15v-3m0 0V9h3v3h-3zM10.5 15V9l3 6V9M19.5 9h-3v6h3v-2.4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPngFormat);
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 SvgRawFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M16.5 9v6l1.5-3 1.5 3V9M10.5 15v-3m0 0v-1.5A1.5 1.5 0 0112 9v0a1.5 1.5 0 011.5 1.5V12m-3 0h3m0 0v3M4.5 15V9h2.4a.6.6 0 01.6.6v.9A1.5 1.5 0 016 12v0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 12H6v0a1.5 1.5 0 011.5 1.5V15"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRawFormat);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgRemovePageAlt(
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 12V2.6a.6.6 0 01.6-.6h11.652a.6.6 0 01.424.176l3.148 3.148A.6.6 0 0120 5.75V21.4a.6.6 0 01-.6.6H11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 2v3.4a.6.6 0 00.6.6H20M1.992 19h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRemovePageAlt);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgReply(
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="M2 10h14c8 0 8 11 0 11M2 10l7-7m-7 7l7 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgReply);
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 SvgReplyToMessage(
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 8l5 3 5-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M10 20H4a2 2 0 01-2-2V6a2 2 0 012-2h16a2 2 0 012 2v6.857"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M13 17.111h6.3c3.6 0 3.6 4.889 0 4.889M13 17.111L16.15 14M13 17.111l3.15 3.111"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgReplyToMessage);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgScreenshot(
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="M10 21.4v-7.006a.6.6 0 01.6-.6h1.173a.6.6 0 00.504-.275l1.446-2.244a.6.6 0 01.504-.275h3.546a.6.6 0 01.504.275l1.446 2.244a.6.6 0 00.504.275H21.4a.6.6 0 01.6.6V21.4a.6.6 0 01-.6.6H10.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 19a2 2 0 100-4 2 2 0 000 4zM3 18v3h2.5M3 9.5v5M3 6V3h3M9.5 3h5M18 3h3v2.5M21 10V8.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgScreenshot);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSend(
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 12L3 20l3.563-8L3 4l19 8zM6.5 12H22"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSend);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSendDiagonal(
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(#send-diagonal_svg__clip0_2476_13290)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M22.152 3.553L11.178 21.004l-1.67-8.596L2 7.898l20.152-4.345zM9.456 12.444l12.696-8.89" />
</G>
<Defs>
<ClipPath id="send-diagonal_svg__clip0_2476_13290">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSendDiagonal);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSendMail(
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 9l4.5 3L18 9M3 13.5h2M1 10.5h4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 7.5V7a2 2 0 012-2h13a2 2 0 012 2v10a2 2 0 01-2 2H7a2 2 0 01-2-2v-.5"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSendMail);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSubmitDocument(
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="M20 13V5.749a.6.6 0 00-.176-.425l-3.148-3.148A.6.6 0 0016.252 2H4.6a.6.6 0 00-.6.6v18.8a.6.6 0 00.6.6H14"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 2v3.4a.6.6 0 00.6.6H20M16 19h6m0 0l-3-3m3 3l-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSubmitDocument);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSvgFormat(
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.5 15h2A1.5 1.5 0 008 13.5v0A1.5 1.5 0 006.5 12H6a1.5 1.5 0 01-1.5-1.5v0A1.5 1.5 0 016 9h1.5M10.5 9l1.5 6 1.5-6M19.5 9h-3v6h3v-2.4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSvgFormat);
export default ForwardRef;

View file

@ -0,0 +1,43 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgTextBox(
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 8v8m0-8H8m4 0h4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 20.4V3.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinejoin="round"
/>
<Path
d="M1 13v-2h2v2H1zM21 13v-2h2v2h-2z"
stroke="currentColor"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTextBox);
export default ForwardRef;

View file

@ -0,0 +1,43 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgTifFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M15 15V9h3M6.5 9H8m1.5 0H8m0 0v6M15 12h2.5M12 15V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTifFormat);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgTiffFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M12 15V9h3M17.5 15V9h3M3.5 9H5m1.5 0H5m0 0v6M12 12h2.5M17.5 12H20M9 15V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTiffFormat);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgTools(
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="M10.05 10.607l-7.07 7.07a2 2 0 000 2.83v0a2 2 0 002.828 0l7.07-7.072M17.193 13.8l3.878 3.878a2 2 0 010 2.828v0a2 2 0 01-2.828 0l-6.209-6.208M6.733 5.904L4.61 6.61 2.49 3.075l1.414-1.414L7.44 3.782l-.707 2.122zm0 0l2.83 2.83"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M10.05 10.607c-.844-2.153-.679-4.978 1.061-6.718 1.74-1.74 4.95-2.121 6.717-1.06l-3.04 3.04-.283 3.111 3.111-.282 3.04-3.041c1.062 1.768.68 4.978-1.06 6.717-1.74 1.74-4.564 1.905-6.717 1.061"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTools);
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 SvgWebpFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M13.5 15V9h2.4a.6.6 0 01.6.6v.9A1.5 1.5 0 0115 12v0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M13.5 15h2.4a.6.6 0 00.6-.6v-.9A1.5 1.5 0 0015 12v0h-1.5M19.5 15v-3m0 0V9h3v3h-3zM1.5 9v6L3 12l1.5 3V9M10.5 9h-3v6h3M7.5 12h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWebpFormat);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgWrench(
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(#wrench_svg__clip0_2576_14436)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M10.05 10.607l-7.07 7.07a2 2 0 000 2.83v0a2 2 0 002.828 0l7.07-7.072M10.05 10.607c-.844-2.153-.679-4.978 1.06-6.718 1.74-1.74 4.95-2.121 6.718-1.06l-3.04 3.04-.283 3.111 3.111-.282 3.04-3.041c1.062 1.768.68 4.978-1.06 6.717-1.74 1.74-4.564 1.905-6.717 1.061" />
</G>
<Defs>
<ClipPath id="wrench_svg__clip0_2576_14436">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWrench);
export default ForwardRef;

View file

@ -29,6 +29,7 @@ export { default as AddKeyframes } from './AddKeyframes'
export { default as AddLens } from './AddLens'
export { default as AddMediaImage } from './AddMediaImage'
export { default as AddMediaVideo } from './AddMediaVideo'
export { default as AddPageAlt } from './AddPageAlt'
export { default as AddPage } from './AddPage'
export { default as AddPinAlt } from './AddPinAlt'
export { default as AddSelection } from './AddSelection'
@ -56,6 +57,7 @@ export { default as AlignLeft } from './AlignLeft'
export { default as AlignRightBox } from './AlignRightBox'
export { default as AlignRight } from './AlignRight'
export { default as AlignTopBox } from './AlignTopBox'
export { default as AngleTool } from './AngleTool'
export { default as AntennaOff } from './AntennaOff'
export { default as AntennaSignalRounded } from './AntennaSignalRounded'
export { default as AntennaSignal } from './AntennaSignal'
@ -94,6 +96,7 @@ export { default as Atom } from './Atom'
export { default as Attachment } from './Attachment'
export { default as AugmentedReality } from './AugmentedReality'
export { default as AutoFlash } from './AutoFlash'
export { default as AviFormat } from './AviFormat'
export { default as Axes } from './Axes'
export { default as Backward15Seconds } from './Backward15Seconds'
export { default as Bag } from './Bag'
@ -154,6 +157,7 @@ export { default as BowlingBall } from './BowlingBall'
export { default as BoxIso } from './BoxIso'
export { default as Box } from './Box'
export { default as BoxingGlove } from './BoxingGlove'
export { default as BreadSlice } from './BreadSlice'
export { default as BrightnessWindow } from './BrightnessWindow'
export { default as Brightness } from './Brightness'
export { default as BubbleDownload } from './BubbleDownload'
@ -205,6 +209,7 @@ export { default as City } from './City'
export { default as CleanWater } from './CleanWater'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockOutline } from './ClockOutline'
export { default as ClosedCaptions } from './ClosedCaptions'
export { default as Closet } from './Closet'
export { default as CloudBookAlt } from './CloudBookAlt'
export { default as CloudCheck } from './CloudCheck'
@ -215,10 +220,12 @@ export { default as CloudSunny } from './CloudSunny'
export { default as CloudSync } from './CloudSync'
export { default as CloudUpload } from './CloudUpload'
export { default as Cloud } from './Cloud'
export { default as Clutery } from './Clutery'
export { default as CodeBracketsSquare } from './CodeBracketsSquare'
export { default as CodeBrackets } from './CodeBrackets'
export { default as Code } from './Code'
export { default as Codepen } from './Codepen'
export { default as CoffeeCup } from './CoffeeCup'
export { default as Coin } from './Coin'
export { default as CollageFrame } from './CollageFrame'
export { default as Collapse } from './Collapse'
@ -287,6 +294,7 @@ export { default as DeleteCircledOutline } from './DeleteCircledOutline'
export { default as DeliveryTruck } from './DeliveryTruck'
export { default as Delivery } from './Delivery'
export { default as Depth } from './Depth'
export { default as DesignNib } from './DesignNib'
export { default as DesignPencil } from './DesignPencil'
export { default as Desk } from './Desk'
export { default as Dialpad } from './Dialpad'
@ -440,7 +448,9 @@ export { default as FontSize } from './FontSize'
export { default as FootballBall } from './FootballBall'
export { default as Football } from './Football'
export { default as Forward15Seconds } from './Forward15Seconds'
export { default as ForwardMessage } from './ForwardMessage'
export { default as ForwardOutline } from './ForwardOutline'
export { default as Forward } from './Forward'
export { default as FrameAltEmpty } from './FrameAltEmpty'
export { default as FrameAlt } from './FrameAlt'
export { default as FrameSelect } from './FrameSelect'
@ -455,6 +465,7 @@ export { default as Garage } from './Garage'
export { default as GasTankDrop } from './GasTankDrop'
export { default as GasTank } from './GasTank'
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 GitCommand } from './GitCommand'
@ -494,6 +505,7 @@ export { default as Group } from './Group'
export { default as Gym } from './Gym'
export { default as HalfCookie } from './HalfCookie'
export { default as HalfMoon } from './HalfMoon'
export { default as Hammer } from './Hammer'
export { default as HandBrake } from './HandBrake'
export { default as Handbag } from './Handbag'
export { default as HardDrive } from './HardDrive'
@ -557,6 +569,8 @@ export { default as ItalicSquareOutline } from './ItalicSquareOutline'
export { default as Italic } from './Italic'
export { default as JournalPage } from './JournalPage'
export { default as Journal } from './Journal'
export { default as JpegFormat } from './JpegFormat'
export { default as JpgFormat } from './JpgFormat'
export { default as KanbanBoard } from './KanbanBoard'
export { default as KeyAltBack } from './KeyAltBack'
export { default as KeyAltMinus } from './KeyAltMinus'
@ -594,6 +608,7 @@ export { default as Linear } from './Linear'
export { default as Link } from './Link'
export { default as LinkedIn } from './LinkedIn'
export { default as Linux } from './Linux'
export { default as ListSelect } from './ListSelect'
export { default as List } from './List'
export { default as LoadActionFloppy } from './LoadActionFloppy'
export { default as LockKey } from './LockKey'
@ -619,7 +634,9 @@ export { default as MacOptionKey } from './MacOptionKey'
export { default as MacOsWindow } from './MacOsWindow'
export { default as MagnetEnergy } from './MagnetEnergy'
export { default as Magnet } from './Magnet'
export { default as MailIn } from './MailIn'
export { default as MailOpened } from './MailOpened'
export { default as MailOut } from './MailOut'
export { default as Mail } from './Mail'
export { default as Male } from './Male'
export { default as MapIssue } from './MapIssue'
@ -682,6 +699,7 @@ export { default as MoveRight } from './MoveRight'
export { default as MoveRuler } from './MoveRuler'
export { default as MoveUp } from './MoveUp'
export { default as Movie } from './Movie'
export { default as MpegFormat } from './MpegFormat'
export { default as MultiBubble } from './MultiBubble'
export { default as MultiMacOsWindow } from './MultiMacOsWindow'
export { default as MultiWindow } from './MultiWindow'
@ -716,6 +734,8 @@ export { default as NoLock } from './NoLock'
export { default as NoSmokingCircled } from './NoSmokingCircled'
export { default as NoSmoking } from './NoSmoking'
export { default as Notes } from './Notes'
export { default as NpmSquare } from './NpmSquare'
export { default as Npm } from './Npm'
export { default as NumberedListLeft } from './NumberedListLeft'
export { default as NumberedListRight } from './NumberedListRight'
export { default as Octagon } from './Octagon'
@ -805,6 +825,7 @@ export { default as PlugTypeC } from './PlugTypeC'
export { default as PlugTypeG } from './PlugTypeG'
export { default as PlugTypeL } from './PlugTypeL'
export { default as Plus } from './Plus'
export { default as PngFormat } from './PngFormat'
export { default as Pocket } from './Pocket'
export { default as Podcast } from './Podcast'
export { default as Pokeball } from './Pokeball'
@ -829,6 +850,7 @@ export { default as QuestionSquareOutline } from './QuestionSquareOutline'
export { default as QuoteMessage } from './QuoteMessage'
export { default as Quote } from './Quote'
export { default as Rain } from './Rain'
export { default as RawFormat } from './RawFormat'
export { default as ReceiveDollars } from './ReceiveDollars'
export { default as ReceiveEuros } from './ReceiveEuros'
export { default as ReceivePounds } from './ReceivePounds'
@ -854,6 +876,7 @@ export { default as RemoveKeyframes } from './RemoveKeyframes'
export { default as RemoveLink } from './RemoveLink'
export { default as RemoveMediaImage } from './RemoveMediaImage'
export { default as RemoveMediaVideo } from './RemoveMediaVideo'
export { default as RemovePageAlt } from './RemovePageAlt'
export { default as RemovePage } from './RemovePage'
export { default as RemovePinAlt } from './RemovePinAlt'
export { default as RemovePin } from './RemovePin'
@ -862,6 +885,8 @@ export { default as RemoveSquare } from './RemoveSquare'
export { default as RemoveUser } from './RemoveUser'
export { default as RepeatOnce } from './RepeatOnce'
export { default as Repeat } from './Repeat'
export { default as ReplyToMessage } from './ReplyToMessage'
export { default as Reply } from './Reply'
export { default as ReportColumns } from './ReportColumns'
export { default as Reports } from './Reports'
export { default as Repository } from './Repository'
@ -895,6 +920,7 @@ export { default as Scanning } from './Scanning'
export { default as Scarf } from './Scarf'
export { default as ScissorAlt } from './ScissorAlt'
export { default as Scissor } from './Scissor'
export { default as Screenshot } from './Screenshot'
export { default as SeaAndSun } from './SeaAndSun'
export { default as SeaWaves } from './SeaWaves'
export { default as SearchEngine } from './SearchEngine'
@ -906,10 +932,13 @@ export { default as SecurityPass } from './SecurityPass'
export { default as SelectWindow } from './SelectWindow'
export { default as Selection } from './Selection'
export { default as SelectiveTool } from './SelectiveTool'
export { default as SendDiagonal } from './SendDiagonal'
export { default as SendDollars } from './SendDollars'
export { default as SendEuros } from './SendEuros'
export { default as SendMail } from './SendMail'
export { default as SendPounds } from './SendPounds'
export { default as SendYens } from './SendYens'
export { default as Send } from './Send'
export { default as ServerConnection } from './ServerConnection'
export { default as Server } from './Server'
export { default as SettingsCloud } from './SettingsCloud'
@ -995,9 +1024,11 @@ export { default as StatsSquareUp } from './StatsSquareUp'
export { default as Stretching } from './Stretching'
export { default as Stroller } from './Stroller'
export { default as StyleBorder } from './StyleBorder'
export { default as SubmitDocument } from './SubmitDocument'
export { default as Substract } from './Substract'
export { default as Suggestion } from './Suggestion'
export { default as SunLight } from './SunLight'
export { default as SvgFormat } from './SvgFormat'
export { default as Swimming } from './Swimming'
export { default as SwipeDownGesture } from './SwipeDownGesture'
export { default as SwipeLeftGesture } from './SwipeLeftGesture'
@ -1023,6 +1054,7 @@ export { default as TerminalOutline } from './TerminalOutline'
export { default as TerminalSimple } from './TerminalSimple'
export { default as TestTube } from './TestTube'
export { default as TextAlt } from './TextAlt'
export { default as TextBox } from './TextBox'
export { default as TextSize } from './TextSize'
export { default as Text } from './Text'
export { default as ThreePointsCircle } from './ThreePointsCircle'
@ -1030,9 +1062,12 @@ export { default as ThreeStars } from './ThreeStars'
export { default as ThumbsDown } from './ThumbsDown'
export { default as ThumbsUp } from './ThumbsUp'
export { default as Thunderstorm } from './Thunderstorm'
export { default as TifFormat } from './TifFormat'
export { default as TiffFormat } from './TiffFormat'
export { default as TikTok } from './TikTok'
export { default as TimerOff } from './TimerOff'
export { default as Timer } from './Timer'
export { default as Tools } from './Tools'
export { default as Tournament } from './Tournament'
export { default as TowerCheck } from './TowerCheck'
export { default as TowerNoAccess } from './TowerNoAccess'
@ -1124,6 +1159,7 @@ export { default as WateringSoil } from './WateringSoil'
export { default as WebWindowClose } from './WebWindowClose'
export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'
export { default as WebWindow } from './WebWindow'
export { default as WebpFormat } from './WebpFormat'
export { default as WeightAlt } from './WeightAlt'
export { default as Weight } from './Weight'
export { default as WhiteFlag } from './WhiteFlag'
@ -1136,6 +1172,7 @@ export { default as Wifi } from './Wifi'
export { default as Wind } from './Wind'
export { default as Windows } from './Windows'
export { default as WrapText } from './WrapText'
export { default as Wrench } from './Wrench'
export { default as Wristwatch } from './Wristwatch'
export { default as Www } from './Www'
export { default as XboxA } from './XboxA'

View file

@ -0,0 +1,39 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAddPageAlt(
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 12V2.6a.6.6 0 01.6-.6h11.652a.6.6 0 01.424.176l3.148 3.148A.6.6 0 0120 5.75V21.4a.6.6 0 01-.6.6H11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16 2v3.4a.6.6 0 00.6.6H20M1.992 19h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAddPageAlt);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAngleTool(
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 21V3h6v12h12v6H3z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13 19v2M9 19v2M3 7h2M3 11h2M3 15h2M17 19v2"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAngleTool);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAviFormat(
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 9l1.5 6L15 9M18 15V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M6 15v-3m0 0v-1.5A1.5 1.5 0 017.5 9v0A1.5 1.5 0 019 10.5V12m-3 0h3m0 0v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAviFormat);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgBreadSlice(
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 20V9S3 4 9.5 4H17c7 0 3 5 3 5v9a2 2 0 01-2 2H7z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M7 20H6a2 2 0 01-2-2V9S0 4 6.5 4H10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBreadSlice);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgClosedCaptions(
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="M1 15V9a6 6 0 016-6h10a6 6 0 016 6v6a6 6 0 01-6 6H7a6 6 0 01-6-6z"
stroke="currentColor"
/>
<path
d="M10.5 10l-.172-.172a2.828 2.828 0 00-2-.828v0A2.828 2.828 0 005.5 11.828v.344A2.828 2.828 0 008.328 15v0c.75 0 1.47-.298 2-.828L10.5 14M18.5 10l-.172-.172a2.828 2.828 0 00-2-.828v0a2.828 2.828 0 00-2.828 2.828v.344A2.828 2.828 0 0016.328 15v0c.75 0 1.47-.298 2-.828L18.5 14"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgClosedCaptions);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgClutery(
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 20h3m3 0H9m0 0v-5M17 20v-8s2.5-1 2.5-3V4.5M17 8.5v-4M4.5 11c1 2.128 4.5 4 4.5 4s3.5-1.872 4.5-4c1.08-2.297 0-6.5 0-6.5h-9s-1.08 4.203 0 6.5z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgClutery);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCoffeeCup(
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 11.6V15a6 6 0 01-6 6H9a6 6 0 01-6-6v-3.4a.6.6 0 01.6-.6h12.8a.6.6 0 01.6.6zM12 9c0-1 .714-2 2.143-2v0A2.857 2.857 0 0017 4.143V3.5M8 9v-.5a3 3 0 013-3v0a2 2 0 002-2V3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16 11h2.5a2.5 2.5 0 010 5H17"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCoffeeCup);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgDesignNib(
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(#design-nib_svg__clip0_2585_14438)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M17.674 11.408l-1.905 5.715a.6.6 0 01-.398.386L3.693 20.98a.6.6 0 01-.74-.765L6.745 8.841a.6.6 0 01.34-.365l5.387-2.218a.6.6 0 01.653.13l4.404 4.405a.6.6 0 01.145.615zM3.296 20.602l6.364-6.364" />
<path d="M17.792 11.056l2.828-2.829a2 2 0 000-2.828L18.5 3.277a2 2 0 00-2.829 0l-2.828 2.829M11.781 12.116a1.5 1.5 0 10-2.121 2.122 1.5 1.5 0 002.121-2.122z" />
</g>
<defs>
<clipPath id="design-nib_svg__clip0_2585_14438">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDesignNib);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgForward(
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 10H8c-8 0-8 11 0 11m14-11l-7-7m7 7l-7 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgForward);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgForwardMessage(
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 8l5 3 5-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10 20H4a2 2 0 01-2-2V6a2 2 0 012-2h16a2 2 0 012 2v6.857"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M22 17.111h-6.3c-3.6 0-3.6 4.889 0 4.889m6.3-4.889L18.85 14M22 17.111l-3.15 3.111"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgForwardMessage);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgGifFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M15.5 15V9h3M15.5 12h2M12 15V9M8.5 9h-3v6h3v-2.4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGifFormat);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgHammer(
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="M10.634 11.056L2.148 19.54l2.122 2.121 8.485-8.485"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10.634 11.056l1.414-1.415s.354-3.182-3.182-6.717l1.06-1.06 8.486 5.656-1.06 1.06 1.413 1.415 1.061-1.06 2.475 2.474-4.95 4.95-2.475-2.475 1.061-1.06-1.414-1.415-1.768 1.768-2.121-2.121z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgHammer);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgJpegFormat(
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 15v-3m0 0V9h3v3H7zM16 9h-3v6h3M22 9h-3v6h3v-2.4M4 9v4.2C4 15 2 15 2 15M13 12h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgJpegFormat);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgJpgFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M10 15v-3m0 0V9h3v3h-3zM19 9h-3v6h3v-2.4M7 9v4.2C7 15 5 15 5 15"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgJpgFormat);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgListSelect(
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 6h11M5 6.01l.01-.011M5 12.01l.01-.011M3.8 17.8l.8.8 2-2M9 12h11M9 18h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgListSelect);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgMailIn(
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="M5 9l4.5 3L14 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 19H3a2 2 0 01-2-2V7a2 2 0 012-2h13a2 2 0 012 2v2"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M23 14h-6m0 0l3-3m-3 3l3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMailIn);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgMailOut(
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="M5 9l4.5 3L14 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 19H3a2 2 0 01-2-2V7a2 2 0 012-2h13a2 2 0 012 2v2"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M17 14h6m0 0l-3-3m3 3l-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMailOut);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgMpegFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M7.5 15v-3m0 0V9h3v3h-3zM1.5 15V9L3 12l1.5-3v6M16.5 9h-3v6h3M22.5 9h-3v6h3v-2.4M13.5 12h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMpegFormat);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgNpm(
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="M1 8h22v7H11v2H7.5v-2H1V8zM7.5 8v7M13.5 8v7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M18 11v4M5 11v4M11 11v1M20.5 11v4"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgNpm);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgNpmSquare(
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="M8 16h8V8H8v8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M13 11v5" stroke="currentColor" strokeLinecap="round" />
<path
d="M21 3.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgNpmSquare);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgPngFormat(
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.5 15v-3m0 0V9h3v3h-3zM10.5 15V9l3 6V9M19.5 9h-3v6h3v-2.4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPngFormat);
export default ForwardRef;

View file

@ -0,0 +1,44 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgRawFormat(
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 6V3.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6V6M4 18v2.4a.6.6 0 00.6.6h14.8a.6.6 0 00.6-.6V18"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M16.5 9v6l1.5-3 1.5 3V9M10.5 15v-3m0 0v-1.5A1.5 1.5 0 0112 9v0a1.5 1.5 0 011.5 1.5V12m-3 0h3m0 0v3M4.5 15V9h2.4a.6.6 0 01.6.6v.9A1.5 1.5 0 016 12v0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 12H6v0a1.5 1.5 0 011.5 1.5V15"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgRawFormat);
export default ForwardRef;

Some files were not shown because too many files have changed in this diff Show more