├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── build ├── babel-react.config.js ├── blank.svg ├── build-font.js ├── build-react.js ├── build-svelte.js ├── build-vue.js ├── build.js ├── build_data.json ├── cheatsheet │ ├── icon-row.html │ └── template.html ├── copy-svg.js ├── generate.py ├── manifest.json ├── release.js └── scripts │ └── generate_font.py ├── cheatsheet └── index.html ├── package-lock.json ├── package.json ├── package ├── LICENSE ├── README.md ├── css │ └── framework7-icons.css ├── fonts │ ├── Framework7Icons-Regular.ttf │ ├── Framework7Icons-Regular.woff │ └── Framework7Icons-Regular.woff2 ├── package.json ├── react │ ├── cjs │ │ └── .gitkeep │ ├── esm │ │ └── .gitkeep │ └── package.json ├── svelte │ ├── package.json │ └── svelte │ │ └── .gitkeep ├── svg │ ├── airplane.svg │ ├── alarm.svg │ ├── alarm_fill.svg │ ├── alt.svg │ ├── ant.svg │ ├── ant_circle.svg │ ├── ant_circle_fill.svg │ ├── ant_fill.svg │ ├── antenna_radiowaves_left_right.svg │ ├── app.svg │ ├── app_badge.svg │ ├── app_badge_fill.svg │ ├── app_fill.svg │ ├── archivebox.svg │ ├── archivebox_fill.svg │ ├── arrow_2_circlepath.svg │ ├── arrow_2_circlepath_circle.svg │ ├── arrow_2_circlepath_circle_fill.svg │ ├── arrow_2_squarepath.svg │ ├── arrow_3_trianglepath.svg │ ├── arrow_branch.svg │ ├── arrow_clockwise.svg │ ├── arrow_clockwise_circle.svg │ ├── arrow_clockwise_circle_fill.svg │ ├── arrow_counterclockwise.svg │ ├── arrow_counterclockwise_circle.svg │ ├── arrow_counterclockwise_circle_fill.svg │ ├── arrow_down.svg │ ├── arrow_down_circle.svg │ ├── arrow_down_circle_fill.svg │ ├── arrow_down_doc.svg │ ├── arrow_down_doc_fill.svg │ ├── arrow_down_left.svg │ ├── arrow_down_left_circle.svg │ ├── arrow_down_left_circle_fill.svg │ ├── arrow_down_left_square.svg │ ├── arrow_down_left_square_fill.svg │ ├── arrow_down_right.svg │ ├── arrow_down_right_arrow_up_left.svg │ ├── arrow_down_right_circle.svg │ ├── arrow_down_right_circle_fill.svg │ ├── arrow_down_right_square.svg │ ├── arrow_down_right_square_fill.svg │ ├── arrow_down_square.svg │ ├── arrow_down_square_fill.svg │ ├── arrow_down_to_line.svg │ ├── arrow_down_to_line_alt.svg │ ├── arrow_left.svg │ ├── arrow_left_circle.svg │ ├── arrow_left_circle_fill.svg │ ├── arrow_left_right.svg │ ├── arrow_left_right_circle.svg │ ├── arrow_left_right_circle_fill.svg │ ├── arrow_left_right_square.svg │ ├── arrow_left_right_square_fill.svg │ ├── arrow_left_square.svg │ ├── arrow_left_square_fill.svg │ ├── arrow_left_to_line.svg │ ├── arrow_left_to_line_alt.svg │ ├── arrow_merge.svg │ ├── arrow_right.svg │ ├── arrow_right_arrow_left.svg │ ├── arrow_right_arrow_left_circle.svg │ ├── arrow_right_arrow_left_circle_fill.svg │ ├── arrow_right_arrow_left_square.svg │ ├── arrow_right_arrow_left_square_fill.svg │ ├── arrow_right_circle.svg │ ├── arrow_right_circle_fill.svg │ ├── arrow_right_square.svg │ ├── arrow_right_square_fill.svg │ ├── arrow_right_to_line.svg │ ├── arrow_right_to_line_alt.svg │ ├── arrow_swap.svg │ ├── arrow_turn_down_left.svg │ ├── arrow_turn_down_right.svg │ ├── arrow_turn_left_down.svg │ ├── arrow_turn_left_up.svg │ ├── arrow_turn_right_down.svg │ ├── arrow_turn_right_up.svg │ ├── arrow_turn_up_left.svg │ ├── arrow_turn_up_right.svg │ ├── arrow_up.svg │ ├── arrow_up_arrow_down.svg │ ├── arrow_up_arrow_down_circle.svg │ ├── arrow_up_arrow_down_circle_fill.svg │ ├── arrow_up_arrow_down_square.svg │ ├── arrow_up_arrow_down_square_fill.svg │ ├── arrow_up_bin.svg │ ├── arrow_up_bin_fill.svg │ ├── arrow_up_circle.svg │ ├── arrow_up_circle_fill.svg │ ├── arrow_up_doc.svg │ ├── arrow_up_doc_fill.svg │ ├── arrow_up_down.svg │ ├── arrow_up_down_circle.svg │ ├── arrow_up_down_circle_fill.svg │ ├── arrow_up_down_square.svg │ ├── arrow_up_down_square_fill.svg │ ├── arrow_up_left.svg │ ├── arrow_up_left_arrow_down_right.svg │ ├── arrow_up_left_circle.svg │ ├── arrow_up_left_circle_fill.svg │ ├── arrow_up_left_square.svg │ ├── arrow_up_left_square_fill.svg │ ├── arrow_up_right.svg │ ├── arrow_up_right_circle.svg │ ├── arrow_up_right_circle_fill.svg │ ├── arrow_up_right_diamond.svg │ ├── arrow_up_right_diamond_fill.svg │ ├── arrow_up_right_square.svg │ ├── arrow_up_right_square_fill.svg │ ├── arrow_up_square.svg │ ├── arrow_up_square_fill.svg │ ├── arrow_up_to_line.svg │ ├── arrow_up_to_line_alt.svg │ ├── arrow_uturn_down.svg │ ├── arrow_uturn_down_circle.svg │ ├── arrow_uturn_down_circle_fill.svg │ ├── arrow_uturn_down_square.svg │ ├── arrow_uturn_down_square_fill.svg │ ├── arrow_uturn_left.svg │ ├── arrow_uturn_left_circle.svg │ ├── arrow_uturn_left_circle_fill.svg │ ├── arrow_uturn_left_square.svg │ ├── arrow_uturn_left_square_fill.svg │ ├── arrow_uturn_right.svg │ ├── arrow_uturn_right_circle.svg │ ├── arrow_uturn_right_circle_fill.svg │ ├── arrow_uturn_right_square.svg │ ├── arrow_uturn_right_square_fill.svg │ ├── arrow_uturn_up.svg │ ├── arrow_uturn_up_circle.svg │ ├── arrow_uturn_up_circle_fill.svg │ ├── arrow_uturn_up_square.svg │ ├── arrow_uturn_up_square_fill.svg │ ├── arrowshape_turn_up_left.svg │ ├── arrowshape_turn_up_left_2.svg │ ├── arrowshape_turn_up_left_2_fill.svg │ ├── arrowshape_turn_up_left_circle.svg │ ├── arrowshape_turn_up_left_circle_fill.svg │ ├── arrowshape_turn_up_left_fill.svg │ ├── arrowshape_turn_up_right.svg │ ├── arrowshape_turn_up_right_circle.svg │ ├── arrowshape_turn_up_right_circle_fill.svg │ ├── arrowshape_turn_up_right_fill.svg │ ├── arrowtriangle_down.svg │ ├── arrowtriangle_down_circle.svg │ ├── arrowtriangle_down_circle_fill.svg │ ├── arrowtriangle_down_fill.svg │ ├── arrowtriangle_down_square.svg │ ├── arrowtriangle_down_square_fill.svg │ ├── arrowtriangle_left.svg │ ├── arrowtriangle_left_circle.svg │ ├── arrowtriangle_left_circle_fill.svg │ ├── arrowtriangle_left_fill.svg │ ├── arrowtriangle_left_square.svg │ ├── arrowtriangle_left_square_fill.svg │ ├── arrowtriangle_right.svg │ ├── arrowtriangle_right_circle.svg │ ├── arrowtriangle_right_circle_fill.svg │ ├── arrowtriangle_right_fill.svg │ ├── arrowtriangle_right_square.svg │ ├── arrowtriangle_right_square_fill.svg │ ├── arrowtriangle_up.svg │ ├── arrowtriangle_up_circle.svg │ ├── arrowtriangle_up_circle_fill.svg │ ├── arrowtriangle_up_fill.svg │ ├── arrowtriangle_up_square.svg │ ├── arrowtriangle_up_square_fill.svg │ ├── asterisk_circle.svg │ ├── asterisk_circle_fill.svg │ ├── at.svg │ ├── at_badge_minus.svg │ ├── at_badge_plus.svg │ ├── at_circle.svg │ ├── at_circle_fill.svg │ ├── backward.svg │ ├── backward_end.svg │ ├── backward_end_alt.svg │ ├── backward_end_alt_fill.svg │ ├── backward_end_fill.svg │ ├── backward_fill.svg │ ├── badge_plus_radiowaves_right.svg │ ├── bag.svg │ ├── bag_badge_minus.svg │ ├── bag_badge_plus.svg │ ├── bag_fill.svg │ ├── bag_fill_badge_minus.svg │ ├── bag_fill_badge_plus.svg │ ├── bandage.svg │ ├── bandage_fill.svg │ ├── barcode.svg │ ├── barcode_viewfinder.svg │ ├── bars.svg │ ├── battery_0.svg │ ├── battery_100.svg │ ├── battery_25.svg │ ├── bed_double.svg │ ├── bed_double_fill.svg │ ├── bell.svg │ ├── bell_circle.svg │ ├── bell_circle_fill.svg │ ├── bell_fill.svg │ ├── bell_slash.svg │ ├── bell_slash_fill.svg │ ├── bin_xmark.svg │ ├── bin_xmark_fill.svg │ ├── bitcoin.svg │ ├── bitcoin_circle.svg │ ├── bitcoin_circle_fill.svg │ ├── bold.svg │ ├── bold_italic_underline.svg │ ├── bold_underline.svg │ ├── bolt.svg │ ├── bolt_badge_a.svg │ ├── bolt_badge_a_fill.svg │ ├── bolt_circle.svg │ ├── bolt_circle_fill.svg │ ├── bolt_fill.svg │ ├── bolt_horizontal.svg │ ├── bolt_horizontal_circle.svg │ ├── bolt_horizontal_circle_fill.svg │ ├── bolt_horizontal_fill.svg │ ├── bolt_slash.svg │ ├── bolt_slash_fill.svg │ ├── book.svg │ ├── book_circle.svg │ ├── book_circle_fill.svg │ ├── book_fill.svg │ ├── bookmark.svg │ ├── bookmark_fill.svg │ ├── briefcase.svg │ ├── briefcase_fill.svg │ ├── bubble_left.svg │ ├── bubble_left_bubble_right.svg │ ├── bubble_left_bubble_right_fill.svg │ ├── bubble_left_fill.svg │ ├── bubble_middle_bottom.svg │ ├── bubble_middle_bottom_fill.svg │ ├── bubble_middle_top.svg │ ├── bubble_middle_top_fill.svg │ ├── bubble_right.svg │ ├── bubble_right_fill.svg │ ├── building.svg │ ├── building_2.svg │ ├── building_2_crop_circle.svg │ ├── building_2_crop_circle_fill.svg │ ├── building_2_fill.svg │ ├── building_columns.svg │ ├── building_columns_fill.svg │ ├── building_fill.svg │ ├── burn.svg │ ├── burst.svg │ ├── burst_fill.svg │ ├── calendar.svg │ ├── calendar_badge_minus.svg │ ├── calendar_badge_plus.svg │ ├── calendar_circle.svg │ ├── calendar_circle_fill.svg │ ├── calendar_today.svg │ ├── camera.svg │ ├── camera_circle.svg │ ├── camera_circle_fill.svg │ ├── camera_fill.svg │ ├── camera_filters.svg │ ├── camera_on_rectangle.svg │ ├── camera_on_rectangle_fill.svg │ ├── camera_rotate.svg │ ├── camera_rotate_fill.svg │ ├── camera_viewfinder.svg │ ├── capslock.svg │ ├── capslock_fill.svg │ ├── capsule.svg │ ├── capsule_fill.svg │ ├── captions_bubble.svg │ ├── captions_bubble_fill.svg │ ├── car_fill.svg │ ├── cart.svg │ ├── cart_badge_minus.svg │ ├── cart_badge_plus.svg │ ├── cart_fill.svg │ ├── cart_fill_badge_minus.svg │ ├── cart_fill_badge_plus.svg │ ├── cat.svg │ ├── chart_bar.svg │ ├── chart_bar_alt_fill.svg │ ├── chart_bar_circle.svg │ ├── chart_bar_circle_fill.svg │ ├── chart_bar_fill.svg │ ├── chart_bar_square.svg │ ├── chart_bar_square_fill.svg │ ├── chart_pie.svg │ ├── chart_pie_fill.svg │ ├── chat_bubble.svg │ ├── chat_bubble_2.svg │ ├── chat_bubble_2_fill.svg │ ├── chat_bubble_fill.svg │ ├── chat_bubble_text.svg │ ├── chat_bubble_text_fill.svg │ ├── checkmark.svg │ ├── checkmark_2.svg │ ├── checkmark_alt.svg │ ├── checkmark_alt_circle.svg │ ├── checkmark_alt_circle_fill.svg │ ├── checkmark_circle.svg │ ├── checkmark_circle_fill.svg │ ├── checkmark_rectangle.svg │ ├── checkmark_rectangle_fill.svg │ ├── checkmark_seal.svg │ ├── checkmark_seal_fill.svg │ ├── checkmark_shield.svg │ ├── checkmark_shield_fill.svg │ ├── checkmark_square.svg │ ├── checkmark_square_fill.svg │ ├── chevron_compact_down.svg │ ├── chevron_compact_left.svg │ ├── chevron_compact_right.svg │ ├── chevron_compact_up.svg │ ├── chevron_down.svg │ ├── chevron_down_circle.svg │ ├── chevron_down_circle_fill.svg │ ├── chevron_down_square.svg │ ├── chevron_down_square_fill.svg │ ├── chevron_left.svg │ ├── chevron_left_2.svg │ ├── chevron_left_circle.svg │ ├── chevron_left_circle_fill.svg │ ├── chevron_left_slash_chevron_right.svg │ ├── chevron_left_square.svg │ ├── chevron_left_square_fill.svg │ ├── chevron_right.svg │ ├── chevron_right_2.svg │ ├── chevron_right_circle.svg │ ├── chevron_right_circle_fill.svg │ ├── chevron_right_square.svg │ ├── chevron_right_square_fill.svg │ ├── chevron_up.svg │ ├── chevron_up_chevron_down.svg │ ├── chevron_up_circle.svg │ ├── chevron_up_circle_fill.svg │ ├── chevron_up_square.svg │ ├── chevron_up_square_fill.svg │ ├── circle.svg │ ├── circle_bottomthird_split.svg │ ├── circle_fill.svg │ ├── circle_grid_3x3.svg │ ├── circle_grid_3x3_fill.svg │ ├── circle_grid_hex.svg │ ├── circle_grid_hex_fill.svg │ ├── circle_lefthalf_fill.svg │ ├── circle_righthalf_fill.svg │ ├── clear.svg │ ├── clear_fill.svg │ ├── clock.svg │ ├── clock_fill.svg │ ├── cloud.svg │ ├── cloud_bolt.svg │ ├── cloud_bolt_fill.svg │ ├── cloud_bolt_rain.svg │ ├── cloud_bolt_rain_fill.svg │ ├── cloud_download.svg │ ├── cloud_download_fill.svg │ ├── cloud_drizzle.svg │ ├── cloud_drizzle_fill.svg │ ├── cloud_fill.svg │ ├── cloud_fog.svg │ ├── cloud_fog_fill.svg │ ├── cloud_hail.svg │ ├── cloud_hail_fill.svg │ ├── cloud_heavyrain.svg │ ├── cloud_heavyrain_fill.svg │ ├── cloud_moon.svg │ ├── cloud_moon_bolt.svg │ ├── cloud_moon_bolt_fill.svg │ ├── cloud_moon_fill.svg │ ├── cloud_moon_rain.svg │ ├── cloud_moon_rain_fill.svg │ ├── cloud_rain.svg │ ├── cloud_rain_fill.svg │ ├── cloud_sleet.svg │ ├── cloud_sleet_fill.svg │ ├── cloud_snow.svg │ ├── cloud_snow_fill.svg │ ├── cloud_sun.svg │ ├── cloud_sun_bolt.svg │ ├── cloud_sun_bolt_fill.svg │ ├── cloud_sun_fill.svg │ ├── cloud_sun_rain.svg │ ├── cloud_sun_rain_fill.svg │ ├── cloud_upload.svg │ ├── cloud_upload_fill.svg │ ├── command.svg │ ├── compass.svg │ ├── compass_fill.svg │ ├── control.svg │ ├── creditcard.svg │ ├── creditcard_fill.svg │ ├── crop.svg │ ├── crop_rotate.svg │ ├── cube.svg │ ├── cube_box.svg │ ├── cube_box_fill.svg │ ├── cube_fill.svg │ ├── cursor_rays.svg │ ├── decrease_indent.svg │ ├── decrease_quotelevel.svg │ ├── delete_left.svg │ ├── delete_left_fill.svg │ ├── delete_right.svg │ ├── delete_right_fill.svg │ ├── desktopcomputer.svg │ ├── device_desktop.svg │ ├── device_laptop.svg │ ├── device_phone_landscape.svg │ ├── device_phone_portrait.svg │ ├── device_tablet_landscape.svg │ ├── device_tablet_portrait.svg │ ├── dial.svg │ ├── dial_fill.svg │ ├── divide.svg │ ├── divide_circle.svg │ ├── divide_circle_fill.svg │ ├── divide_square.svg │ ├── divide_square_fill.svg │ ├── doc.svg │ ├── doc_append.svg │ ├── doc_chart.svg │ ├── doc_chart_fill.svg │ ├── doc_checkmark.svg │ ├── doc_checkmark_fill.svg │ ├── doc_circle.svg │ ├── doc_circle_fill.svg │ ├── doc_fill.svg │ ├── doc_on_clipboard.svg │ ├── doc_on_clipboard_fill.svg │ ├── doc_on_doc.svg │ ├── doc_on_doc_fill.svg │ ├── doc_person.svg │ ├── doc_person_fill.svg │ ├── doc_plaintext.svg │ ├── doc_richtext.svg │ ├── doc_text.svg │ ├── doc_text_fill.svg │ ├── doc_text_search.svg │ ├── doc_text_viewfinder.svg │ ├── dog.svg │ ├── dot_radiowaves_left_right.svg │ ├── dot_radiowaves_right.svg │ ├── dot_square.svg │ ├── dot_square_fill.svg │ ├── download_circle.svg │ ├── download_circle_fill.svg │ ├── drop.svg │ ├── drop_fill.svg │ ├── drop_triangle.svg │ ├── drop_triangle_fill.svg │ ├── ear.svg │ ├── eject.svg │ ├── eject_fill.svg │ ├── ellipses_bubble.svg │ ├── ellipses_bubble_fill.svg │ ├── ellipsis.svg │ ├── ellipsis_circle.svg │ ├── ellipsis_circle_fill.svg │ ├── ellipsis_vertical.svg │ ├── ellipsis_vertical_circle.svg │ ├── ellipsis_vertical_circle_fill.svg │ ├── envelope.svg │ ├── envelope_badge.svg │ ├── envelope_badge_fill.svg │ ├── envelope_circle.svg │ ├── envelope_circle_fill.svg │ ├── envelope_fill.svg │ ├── envelope_open.svg │ ├── envelope_open_fill.svg │ ├── equal.svg │ ├── equal_circle.svg │ ├── equal_circle_fill.svg │ ├── equal_square.svg │ ├── equal_square_fill.svg │ ├── escape.svg │ ├── exclamationmark.svg │ ├── exclamationmark_bubble.svg │ ├── exclamationmark_bubble_fill.svg │ ├── exclamationmark_circle.svg │ ├── exclamationmark_circle_fill.svg │ ├── exclamationmark_octagon.svg │ ├── exclamationmark_octagon_fill.svg │ ├── exclamationmark_shield.svg │ ├── exclamationmark_shield_fill.svg │ ├── exclamationmark_square.svg │ ├── exclamationmark_square_fill.svg │ ├── exclamationmark_triangle.svg │ ├── exclamationmark_triangle_fill.svg │ ├── expand.svg │ ├── eye.svg │ ├── eye_fill.svg │ ├── eye_slash.svg │ ├── eye_slash_fill.svg │ ├── eyedropper.svg │ ├── eyedropper_full.svg │ ├── eyedropper_halffull.svg │ ├── eyeglasses.svg │ ├── f_cursive.svg │ ├── f_cursive_circle.svg │ ├── f_cursive_circle_fill.svg │ ├── face_smiling.svg │ ├── face_smiling_fill.svg │ ├── facemask.svg │ ├── facemask_fill.svg │ ├── film.svg │ ├── film_fill.svg │ ├── flag.svg │ ├── flag_circle.svg │ ├── flag_circle_fill.svg │ ├── flag_fill.svg │ ├── flag_slash.svg │ ├── flag_slash_fill.svg │ ├── flame.svg │ ├── flame_fill.svg │ ├── floppy_disk.svg │ ├── flowchart.svg │ ├── flowchart_fill.svg │ ├── folder.svg │ ├── folder_badge_minus.svg │ ├── folder_badge_person_crop.svg │ ├── folder_badge_plus.svg │ ├── folder_circle.svg │ ├── folder_circle_fill.svg │ ├── folder_fill.svg │ ├── folder_fill_badge_minus.svg │ ├── folder_fill_badge_person_crop.svg │ ├── folder_fill_badge_plus.svg │ ├── forward.svg │ ├── forward_end.svg │ ├── forward_end_alt.svg │ ├── forward_end_alt_fill.svg │ ├── forward_end_fill.svg │ ├── forward_fill.svg │ ├── function.svg │ ├── funnel.svg │ ├── funnel_fill.svg │ ├── fx.svg │ ├── gamecontroller.svg │ ├── gamecontroller_alt_fill.svg │ ├── gamecontroller_fill.svg │ ├── gauge.svg │ ├── gauge_badge_minus.svg │ ├── gauge_badge_plus.svg │ ├── gear.svg │ ├── gear_alt.svg │ ├── gear_alt_fill.svg │ ├── gift.svg │ ├── gift_alt.svg │ ├── gift_alt_fill.svg │ ├── gift_fill.svg │ ├── giftcard.svg │ ├── giftcard_fill.svg │ ├── globe.svg │ ├── gobackward.svg │ ├── gobackward_10.svg │ ├── gobackward_15.svg │ ├── gobackward_30.svg │ ├── gobackward_45.svg │ ├── gobackward_60.svg │ ├── gobackward_75.svg │ ├── gobackward_90.svg │ ├── gobackward_minus.svg │ ├── goforward.svg │ ├── goforward_10.svg │ ├── goforward_15.svg │ ├── goforward_30.svg │ ├── goforward_45.svg │ ├── goforward_60.svg │ ├── goforward_75.svg │ ├── goforward_90.svg │ ├── goforward_plus.svg │ ├── graph_circle.svg │ ├── graph_circle_fill.svg │ ├── graph_square.svg │ ├── graph_square_fill.svg │ ├── greaterthan.svg │ ├── greaterthan_circle.svg │ ├── greaterthan_circle_fill.svg │ ├── greaterthan_square.svg │ ├── greaterthan_square_fill.svg │ ├── grid.svg │ ├── grid_circle.svg │ ├── grid_circle_fill.svg │ ├── guitars.svg │ ├── hammer.svg │ ├── hammer_fill.svg │ ├── hand_draw.svg │ ├── hand_draw_fill.svg │ ├── hand_point_left.svg │ ├── hand_point_left_fill.svg │ ├── hand_point_right.svg │ ├── hand_point_right_fill.svg │ ├── hand_raised.svg │ ├── hand_raised_fill.svg │ ├── hand_raised_slash.svg │ ├── hand_raised_slash_fill.svg │ ├── hand_thumbsdown.svg │ ├── hand_thumbsdown_fill.svg │ ├── hand_thumbsup.svg │ ├── hand_thumbsup_fill.svg │ ├── hare.svg │ ├── hare_fill.svg │ ├── headphones.svg │ ├── heart.svg │ ├── heart_circle.svg │ ├── heart_circle_fill.svg │ ├── heart_fill.svg │ ├── heart_slash.svg │ ├── heart_slash_circle.svg │ ├── heart_slash_circle_fill.svg │ ├── heart_slash_fill.svg │ ├── helm.svg │ ├── hexagon.svg │ ├── hexagon_fill.svg │ ├── hifispeaker.svg │ ├── hifispeaker_fill.svg │ ├── hourglass.svg │ ├── hourglass_bottomhalf_fill.svg │ ├── hourglass_tophalf_fill.svg │ ├── house.svg │ ├── house_alt.svg │ ├── house_alt_fill.svg │ ├── house_fill.svg │ ├── hurricane.svg │ ├── increase_indent.svg │ ├── increase_quotelevel.svg │ ├── infinite.svg │ ├── info.svg │ ├── info_circle.svg │ ├── info_circle_fill.svg │ ├── italic.svg │ ├── keyboard.svg │ ├── keyboard_chevron_compact_down.svg │ ├── largecircle_fill_circle.svg │ ├── lasso.svg │ ├── layers.svg │ ├── layers_alt.svg │ ├── layers_alt_fill.svg │ ├── layers_fill.svg │ ├── leaf_arrow_circlepath.svg │ ├── lessthan.svg │ ├── lessthan_circle.svg │ ├── lessthan_circle_fill.svg │ ├── lessthan_square.svg │ ├── lessthan_square_fill.svg │ ├── light_max.svg │ ├── light_min.svg │ ├── lightbulb.svg │ ├── lightbulb_fill.svg │ ├── lightbulb_slash.svg │ ├── lightbulb_slash_fill.svg │ ├── line_horizontal_3.svg │ ├── line_horizontal_3_decrease.svg │ ├── line_horizontal_3_decrease_circle.svg │ ├── line_horizontal_3_decrease_circle_fill.svg │ ├── link.svg │ ├── link_circle.svg │ ├── link_circle_fill.svg │ ├── list_bullet.svg │ ├── list_bullet_below_rectangle.svg │ ├── list_bullet_indent.svg │ ├── list_dash.svg │ ├── list_number.svg │ ├── list_number_rtl.svg │ ├── location.svg │ ├── location_circle.svg │ ├── location_circle_fill.svg │ ├── location_fill.svg │ ├── location_north.svg │ ├── location_north_fill.svg │ ├── location_north_line.svg │ ├── location_north_line_fill.svg │ ├── location_slash.svg │ ├── location_slash_fill.svg │ ├── lock.svg │ ├── lock_circle.svg │ ├── lock_circle_fill.svg │ ├── lock_fill.svg │ ├── lock_open.svg │ ├── lock_open_fill.svg │ ├── lock_rotation.svg │ ├── lock_rotation_open.svg │ ├── lock_shield.svg │ ├── lock_shield_fill.svg │ ├── lock_slash.svg │ ├── lock_slash_fill.svg │ ├── logo_android.svg │ ├── logo_android_text.svg │ ├── logo_apple.svg │ ├── logo_facebook.svg │ ├── logo_github.svg │ ├── logo_google.svg │ ├── logo_google_text.svg │ ├── logo_googleplus.svg │ ├── logo_instagram.svg │ ├── logo_ios.svg │ ├── logo_linkedin.svg │ ├── logo_macos.svg │ ├── logo_microsoft.svg │ ├── logo_rss.svg │ ├── logo_stackoverflow.svg │ ├── logo_twitter.svg │ ├── logo_windows.svg │ ├── macwindow.svg │ ├── map.svg │ ├── map_fill.svg │ ├── map_pin.svg │ ├── map_pin_ellipse.svg │ ├── map_pin_slash.svg │ ├── memories.svg │ ├── memories_badge_minus.svg │ ├── memories_badge_plus.svg │ ├── menu.svg │ ├── metronome.svg │ ├── mic.svg │ ├── mic_circle.svg │ ├── mic_circle_fill.svg │ ├── mic_fill.svg │ ├── mic_slash.svg │ ├── mic_slash_fill.svg │ ├── minus.svg │ ├── minus_circle.svg │ ├── minus_circle_fill.svg │ ├── minus_rectangle.svg │ ├── minus_rectangle_fill.svg │ ├── minus_slash_plus.svg │ ├── minus_square.svg │ ├── minus_square_fill.svg │ ├── money_dollar.svg │ ├── money_dollar_circle.svg │ ├── money_dollar_circle_fill.svg │ ├── money_euro.svg │ ├── money_euro_circle.svg │ ├── money_euro_circle_fill.svg │ ├── money_pound.svg │ ├── money_pound_circle.svg │ ├── money_pound_circle_fill.svg │ ├── money_rubl.svg │ ├── money_rubl_circle.svg │ ├── money_rubl_circle_fill.svg │ ├── money_yen.svg │ ├── money_yen_circle.svg │ ├── money_yen_circle_fill.svg │ ├── moon.svg │ ├── moon_circle.svg │ ├── moon_circle_fill.svg │ ├── moon_fill.svg │ ├── moon_stars.svg │ ├── moon_stars_fill.svg │ ├── moon_zzz.svg │ ├── moon_zzz_fill.svg │ ├── move.svg │ ├── multiply.svg │ ├── multiply_circle.svg │ ├── multiply_circle_fill.svg │ ├── multiply_square.svg │ ├── multiply_square_fill.svg │ ├── music_albums.svg │ ├── music_albums_fill.svg │ ├── music_house.svg │ ├── music_house_fill.svg │ ├── music_mic.svg │ ├── music_note.svg │ ├── music_note_2.svg │ ├── music_note_list.svg │ ├── nosign.svg │ ├── number.svg │ ├── number_circle.svg │ ├── number_circle_fill.svg │ ├── number_square.svg │ ├── number_square_fill.svg │ ├── option.svg │ ├── paintbrush.svg │ ├── paintbrush_fill.svg │ ├── pano.svg │ ├── pano_fill.svg │ ├── paperclip.svg │ ├── paperplane.svg │ ├── paperplane_fill.svg │ ├── paragraph.svg │ ├── pause.svg │ ├── pause_circle.svg │ ├── pause_circle_fill.svg │ ├── pause_fill.svg │ ├── pause_rectangle.svg │ ├── pause_rectangle_fill.svg │ ├── paw.svg │ ├── pencil.svg │ ├── pencil_circle.svg │ ├── pencil_circle_fill.svg │ ├── pencil_ellipsis_rectangle.svg │ ├── pencil_outline.svg │ ├── pencil_slash.svg │ ├── percent.svg │ ├── person.svg │ ├── person_2.svg │ ├── person_2_alt.svg │ ├── person_2_fill.svg │ ├── person_2_square_stack.svg │ ├── person_2_square_stack_fill.svg │ ├── person_3.svg │ ├── person_3_fill.svg │ ├── person_alt.svg │ ├── person_alt_circle.svg │ ├── person_alt_circle_fill.svg │ ├── person_badge_minus.svg │ ├── person_badge_minus_fill.svg │ ├── person_badge_plus.svg │ ├── person_badge_plus_fill.svg │ ├── person_circle.svg │ ├── person_circle_fill.svg │ ├── person_crop_circle.svg │ ├── person_crop_circle_badge_checkmark.svg │ ├── person_crop_circle_badge_exclam.svg │ ├── person_crop_circle_badge_minus.svg │ ├── person_crop_circle_badge_plus.svg │ ├── person_crop_circle_badge_xmark.svg │ ├── person_crop_circle_fill.svg │ ├── person_crop_circle_fill_badge_checkmark.svg │ ├── person_crop_circle_fill_badge_exclam.svg │ ├── person_crop_circle_fill_badge_minus.svg │ ├── person_crop_circle_fill_badge_plus.svg │ ├── person_crop_circle_fill_badge_xmark.svg │ ├── person_crop_rectangle.svg │ ├── person_crop_rectangle_fill.svg │ ├── person_crop_square.svg │ ├── person_crop_square_fill.svg │ ├── person_fill.svg │ ├── personalhotspot.svg │ ├── perspective.svg │ ├── phone.svg │ ├── phone_arrow_down_left.svg │ ├── phone_arrow_right.svg │ ├── phone_arrow_up_right.svg │ ├── phone_badge_plus.svg │ ├── phone_circle.svg │ ├── phone_circle_fill.svg │ ├── phone_down.svg │ ├── phone_down_circle.svg │ ├── phone_down_circle_fill.svg │ ├── phone_down_fill.svg │ ├── phone_fill.svg │ ├── phone_fill_arrow_down_left.svg │ ├── phone_fill_arrow_right.svg │ ├── phone_fill_arrow_up_right.svg │ ├── phone_fill_badge_plus.svg │ ├── photo.svg │ ├── photo_fill.svg │ ├── photo_fill_on_rectangle_fill.svg │ ├── photo_on_rectangle.svg │ ├── piano.svg │ ├── pin.svg │ ├── pin_fill.svg │ ├── pin_slash.svg │ ├── pin_slash_fill.svg │ ├── placemark.svg │ ├── placemark_fill.svg │ ├── play.svg │ ├── play_circle.svg │ ├── play_circle_fill.svg │ ├── play_fill.svg │ ├── play_rectangle.svg │ ├── play_rectangle_fill.svg │ ├── playpause.svg │ ├── playpause_fill.svg │ ├── plus.svg │ ├── plus_app.svg │ ├── plus_app_fill.svg │ ├── plus_bubble.svg │ ├── plus_bubble_fill.svg │ ├── plus_circle.svg │ ├── plus_circle_fill.svg │ ├── plus_rectangle.svg │ ├── plus_rectangle_fill.svg │ ├── plus_rectangle_fill_on_rectangle_fill.svg │ ├── plus_rectangle_on_rectangle.svg │ ├── plus_slash_minus.svg │ ├── plus_square.svg │ ├── plus_square_fill.svg │ ├── plus_square_fill_on_square_fill.svg │ ├── plus_square_on_square.svg │ ├── plusminus.svg │ ├── plusminus_circle.svg │ ├── plusminus_circle_fill.svg │ ├── poultry_leg.svg │ ├── power.svg │ ├── printer.svg │ ├── printer_fill.svg │ ├── projective.svg │ ├── purchased.svg │ ├── purchased_circle.svg │ ├── purchased_circle_fill.svg │ ├── qrcode.svg │ ├── qrcode_viewfinder.svg │ ├── question.svg │ ├── question_circle.svg │ ├── question_circle_fill.svg │ ├── question_diamond.svg │ ├── question_diamond_fill.svg │ ├── question_square.svg │ ├── question_square_fill.svg │ ├── quote_bubble.svg │ ├── quote_bubble_fill.svg │ ├── radiowaves_left.svg │ ├── radiowaves_right.svg │ ├── rays.svg │ ├── recordingtape.svg │ ├── rectangle.svg │ ├── rectangle_3_offgrid.svg │ ├── rectangle_3_offgrid_fill.svg │ ├── rectangle_arrow_up_right_arrow_down_left.svg │ ├── rectangle_arrow_up_right_arrow_down_left_slash.svg │ ├── rectangle_badge_checkmark.svg │ ├── rectangle_badge_xmark.svg │ ├── rectangle_compress_vertical.svg │ ├── rectangle_dock.svg │ ├── rectangle_expand_vertical.svg │ ├── rectangle_fill.svg │ ├── rectangle_fill_badge_checkmark.svg │ ├── rectangle_fill_badge_xmark.svg │ ├── rectangle_fill_on_rectangle_angled_fill.svg │ ├── rectangle_fill_on_rectangle_fill.svg │ ├── rectangle_grid_1x2.svg │ ├── rectangle_grid_1x2_fill.svg │ ├── rectangle_grid_2x2.svg │ ├── rectangle_grid_2x2_fill.svg │ ├── rectangle_grid_3x2.svg │ ├── rectangle_grid_3x2_fill.svg │ ├── rectangle_on_rectangle.svg │ ├── rectangle_on_rectangle_angled.svg │ ├── rectangle_paperclip.svg │ ├── rectangle_split_3x1.svg │ ├── rectangle_split_3x1_fill.svg │ ├── rectangle_split_3x3.svg │ ├── rectangle_split_3x3_fill.svg │ ├── rectangle_stack.svg │ ├── rectangle_stack_badge_minus.svg │ ├── rectangle_stack_badge_person_crop.svg │ ├── rectangle_stack_badge_plus.svg │ ├── rectangle_stack_fill.svg │ ├── rectangle_stack_fill_badge_minus.svg │ ├── rectangle_stack_fill_badge_person_crop.svg │ ├── rectangle_stack_fill_badge_plus.svg │ ├── rectangle_stack_person_crop.svg │ ├── rectangle_stack_person_crop_fill.svg │ ├── repeat.svg │ ├── repeat_1.svg │ ├── resize.svg │ ├── resize_h.svg │ ├── resize_v.svg │ ├── return.svg │ ├── rhombus.svg │ ├── rhombus_fill.svg │ ├── rocket.svg │ ├── rocket_fill.svg │ ├── rosette.svg │ ├── rotate_left.svg │ ├── rotate_left_fill.svg │ ├── rotate_right.svg │ ├── rotate_right_fill.svg │ ├── scissors.svg │ ├── scissors_alt.svg │ ├── scope.svg │ ├── scribble.svg │ ├── search.svg │ ├── search_circle.svg │ ├── search_circle_fill.svg │ ├── selection_pin_in_out.svg │ ├── shield.svg │ ├── shield_fill.svg │ ├── shield_lefthalf_fill.svg │ ├── shield_slash.svg │ ├── shield_slash_fill.svg │ ├── shift.svg │ ├── shift_fill.svg │ ├── shippingbox.svg │ ├── shippingbox_fill.svg │ ├── shuffle.svg │ ├── sidebar_left.svg │ ├── sidebar_right.svg │ ├── signature.svg │ ├── skew.svg │ ├── slash_circle.svg │ ├── slash_circle_fill.svg │ ├── slider_horizontal_3.svg │ ├── slider_horizontal_below_rectangle.svg │ ├── slowmo.svg │ ├── smallcircle_circle.svg │ ├── smallcircle_circle_fill.svg │ ├── smallcircle_fill_circle.svg │ ├── smallcircle_fill_circle_fill.svg │ ├── smiley.svg │ ├── smiley_fill.svg │ ├── smoke.svg │ ├── smoke_fill.svg │ ├── snow.svg │ ├── sort_down.svg │ ├── sort_down_circle.svg │ ├── sort_down_circle_fill.svg │ ├── sort_up.svg │ ├── sort_up_circle.svg │ ├── sort_up_circle_fill.svg │ ├── sparkles.svg │ ├── speaker.svg │ ├── speaker_1.svg │ ├── speaker_1_fill.svg │ ├── speaker_2.svg │ ├── speaker_2_fill.svg │ ├── speaker_3.svg │ ├── speaker_3_fill.svg │ ├── speaker_fill.svg │ ├── speaker_slash.svg │ ├── speaker_slash_fill.svg │ ├── speaker_slash_fill_rtl.svg │ ├── speaker_slash_rtl.svg │ ├── speaker_zzz.svg │ ├── speaker_zzz_fill.svg │ ├── speaker_zzz_fill_rtl.svg │ ├── speaker_zzz_rtl.svg │ ├── speedometer.svg │ ├── sportscourt.svg │ ├── sportscourt_fill.svg │ ├── square.svg │ ├── square_arrow_down.svg │ ├── square_arrow_down_fill.svg │ ├── square_arrow_down_on_square.svg │ ├── square_arrow_down_on_square_fill.svg │ ├── square_arrow_left.svg │ ├── square_arrow_left_fill.svg │ ├── square_arrow_right.svg │ ├── square_arrow_right_fill.svg │ ├── square_arrow_up.svg │ ├── square_arrow_up_fill.svg │ ├── square_arrow_up_on_square.svg │ ├── square_arrow_up_on_square_fill.svg │ ├── square_favorites.svg │ ├── square_favorites_alt.svg │ ├── square_favorites_alt_fill.svg │ ├── square_favorites_fill.svg │ ├── square_fill.svg │ ├── square_fill_line_vertical_square.svg │ ├── square_fill_line_vertical_square_fill.svg │ ├── square_fill_on_circle_fill.svg │ ├── square_fill_on_square_fill.svg │ ├── square_grid_2x2.svg │ ├── square_grid_2x2_fill.svg │ ├── square_grid_3x2.svg │ ├── square_grid_3x2_fill.svg │ ├── square_grid_4x3_fill.svg │ ├── square_lefthalf_fill.svg │ ├── square_line_vertical_square.svg │ ├── square_line_vertical_square_fill.svg │ ├── square_list.svg │ ├── square_list_fill.svg │ ├── square_on_circle.svg │ ├── square_on_square.svg │ ├── square_pencil.svg │ ├── square_pencil_fill.svg │ ├── square_righthalf_fill.svg │ ├── square_split_1x2.svg │ ├── square_split_1x2_fill.svg │ ├── square_split_2x1.svg │ ├── square_split_2x1_fill.svg │ ├── square_split_2x2.svg │ ├── square_split_2x2_fill.svg │ ├── square_stack.svg │ ├── square_stack_3d_down_dottedline.svg │ ├── square_stack_3d_down_right.svg │ ├── square_stack_3d_down_right_fill.svg │ ├── square_stack_3d_up.svg │ ├── square_stack_3d_up_fill.svg │ ├── square_stack_3d_up_slash.svg │ ├── square_stack_3d_up_slash_fill.svg │ ├── square_stack_fill.svg │ ├── squares_below_rectangle.svg │ ├── star.svg │ ├── star_circle.svg │ ├── star_circle_fill.svg │ ├── star_fill.svg │ ├── star_lefthalf_fill.svg │ ├── star_slash.svg │ ├── star_slash_fill.svg │ ├── staroflife.svg │ ├── staroflife_fill.svg │ ├── status.svg │ ├── sticker.svg │ ├── stop.svg │ ├── stop_circle.svg │ ├── stop_circle_fill.svg │ ├── stop_fill.svg │ ├── stopwatch.svg │ ├── stopwatch_fill.svg │ ├── strikethrough.svg │ ├── suit_club.svg │ ├── suit_club_fill.svg │ ├── suit_diamond.svg │ ├── suit_diamond_fill.svg │ ├── suit_heart.svg │ ├── suit_heart_fill.svg │ ├── suit_spade.svg │ ├── suit_spade_fill.svg │ ├── sum.svg │ ├── sun_dust.svg │ ├── sun_dust_fill.svg │ ├── sun_haze.svg │ ├── sun_haze_fill.svg │ ├── sun_max.svg │ ├── sun_max_fill.svg │ ├── sun_min.svg │ ├── sun_min_fill.svg │ ├── sunrise.svg │ ├── sunrise_fill.svg │ ├── sunset.svg │ ├── sunset_fill.svg │ ├── t_bubble.svg │ ├── t_bubble_fill.svg │ ├── table.svg │ ├── table_badge_more.svg │ ├── table_badge_more_fill.svg │ ├── table_fill.svg │ ├── tag.svg │ ├── tag_circle.svg │ ├── tag_circle_fill.svg │ ├── tag_fill.svg │ ├── text_aligncenter.svg │ ├── text_alignleft.svg │ ├── text_alignright.svg │ ├── text_append.svg │ ├── text_badge_checkmark.svg │ ├── text_badge_minus.svg │ ├── text_badge_plus.svg │ ├── text_badge_star.svg │ ├── text_badge_xmark.svg │ ├── text_bubble.svg │ ├── text_bubble_fill.svg │ ├── text_cursor.svg │ ├── text_insert.svg │ ├── text_justify.svg │ ├── text_justifyleft.svg │ ├── text_justifyright.svg │ ├── text_quote.svg │ ├── textbox.svg │ ├── textformat.svg │ ├── textformat_123.svg │ ├── textformat_abc.svg │ ├── textformat_abc_dottedunderline.svg │ ├── textformat_alt.svg │ ├── textformat_size.svg │ ├── textformat_subscript.svg │ ├── textformat_superscript.svg │ ├── thermometer.svg │ ├── thermometer_snowflake.svg │ ├── thermometer_sun.svg │ ├── ticket.svg │ ├── ticket_fill.svg │ ├── tickets.svg │ ├── tickets_fill.svg │ ├── timelapse.svg │ ├── timer.svg │ ├── timer_fill.svg │ ├── today.svg │ ├── today_fill.svg │ ├── tornado.svg │ ├── tortoise.svg │ ├── tortoise_fill.svg │ ├── tram_fill.svg │ ├── trash.svg │ ├── trash_circle.svg │ ├── trash_circle_fill.svg │ ├── trash_fill.svg │ ├── trash_slash.svg │ ├── trash_slash_fill.svg │ ├── tray.svg │ ├── tray_2.svg │ ├── tray_2_fill.svg │ ├── tray_arrow_down.svg │ ├── tray_arrow_down_fill.svg │ ├── tray_arrow_up.svg │ ├── tray_arrow_up_fill.svg │ ├── tray_fill.svg │ ├── tray_full.svg │ ├── tray_full_fill.svg │ ├── tree.svg │ ├── triangle.svg │ ├── triangle_fill.svg │ ├── triangle_lefthalf_fill.svg │ ├── triangle_righthalf_fill.svg │ ├── tropicalstorm.svg │ ├── tuningfork.svg │ ├── tv.svg │ ├── tv_circle.svg │ ├── tv_circle_fill.svg │ ├── tv_fill.svg │ ├── tv_music_note.svg │ ├── tv_music_note_fill.svg │ ├── uiwindow_split_2x1.svg │ ├── umbrella.svg │ ├── umbrella_fill.svg │ ├── underline.svg │ ├── upload_circle.svg │ ├── upload_circle_fill.svg │ ├── videocam.svg │ ├── videocam_circle.svg │ ├── videocam_circle_fill.svg │ ├── videocam_fill.svg │ ├── view_2d.svg │ ├── view_3d.svg │ ├── viewfinder.svg │ ├── viewfinder_circle.svg │ ├── viewfinder_circle_fill.svg │ ├── wallet.svg │ ├── wallet_fill.svg │ ├── wand_rays.svg │ ├── wand_rays_inverse.svg │ ├── wand_stars.svg │ ├── wand_stars_inverse.svg │ ├── waveform.svg │ ├── waveform_circle.svg │ ├── waveform_circle_fill.svg │ ├── waveform_path.svg │ ├── waveform_path_badge_minus.svg │ ├── waveform_path_badge_plus.svg │ ├── waveform_path_ecg.svg │ ├── wifi.svg │ ├── wifi_exclamationmark.svg │ ├── wifi_slash.svg │ ├── wind.svg │ ├── wind_snow.svg │ ├── wrench.svg │ ├── wrench_fill.svg │ ├── xmark.svg │ ├── xmark_circle.svg │ ├── xmark_circle_fill.svg │ ├── xmark_octagon.svg │ ├── xmark_octagon_fill.svg │ ├── xmark_rectangle.svg │ ├── xmark_rectangle_fill.svg │ ├── xmark_seal.svg │ ├── xmark_seal_fill.svg │ ├── xmark_shield.svg │ ├── xmark_shield_fill.svg │ ├── xmark_square.svg │ ├── xmark_square_fill.svg │ ├── zoom_in.svg │ ├── zoom_out.svg │ └── zzz.svg └── vue │ ├── package.json │ └── vue │ └── .gitkeep ├── sketch └── framework7-icons.sketch └── src ├── f7 ├── at.svg ├── at_circle.svg ├── at_circle_fill.svg ├── bars.svg ├── bitcoin.svg ├── bitcoin_circle.svg ├── bitcoin_circle_fill.svg ├── calendar_today.svg ├── cat.svg ├── chart_bar_alt_fill.svg ├── chart_bar_circle.svg ├── chart_bar_circle_fill.svg ├── chart_bar_square.svg ├── chart_bar_square_fill.svg ├── chat_bubble.svg ├── chat_bubble_2.svg ├── chat_bubble_2_fill.svg ├── chat_bubble_fill.svg ├── chat_bubble_text.svg ├── chat_bubble_text_fill.svg ├── checkmark_2.svg ├── checkmark_alt.svg ├── checkmark_alt_circle.svg ├── checkmark_alt_circle_fill.svg ├── cloud_download.svg ├── cloud_download_fill.svg ├── cloud_upload.svg ├── cloud_upload_fill.svg ├── compass.svg ├── compass_fill.svg ├── device_desktop.svg ├── device_laptop.svg ├── device_phone_landscape.svg ├── device_phone_portrait.svg ├── device_tablet_landscape.svg ├── device_tablet_portrait.svg ├── doc_chart.svg ├── doc_chart_fill.svg ├── doc_checkmark.svg ├── doc_checkmark_fill.svg ├── doc_person.svg ├── doc_person_fill.svg ├── dog.svg ├── download_circle.svg ├── download_circle_fill.svg ├── drop.svg ├── drop_fill.svg ├── ellipsis_vertical.svg ├── ellipsis_vertical_circle.svg ├── ellipsis_vertical_circle_fill.svg ├── expand.svg ├── floppy_disk.svg ├── funnel.svg ├── funnel_fill.svg ├── gamecontroller_alt_fill.svg ├── gear_alt.svg ├── gear_alt_fill.svg ├── graph_circle.svg ├── graph_circle_fill.svg ├── graph_square.svg ├── graph_square_fill.svg ├── house_alt.svg ├── house_alt_fill.svg ├── infinite.svg ├── layers.svg ├── layers_alt.svg ├── layers_alt_fill.svg ├── layers_fill.svg ├── logo_android.svg ├── logo_android_text.svg ├── logo_apple.svg ├── logo_facebook.svg ├── logo_github.svg ├── logo_google.svg ├── logo_google_text.svg ├── logo_googleplus.svg ├── logo_instagram.svg ├── logo_ios.svg ├── logo_linkedin.svg ├── logo_macos.svg ├── logo_microsoft.svg ├── logo_rss.svg ├── logo_stackoverflow.svg ├── logo_twitter.svg ├── logo_windows.svg ├── menu.svg ├── money_dollar.svg ├── money_dollar_circle.svg ├── money_dollar_circle_fill.svg ├── money_euro.svg ├── money_euro_circle.svg ├── money_euro_circle_fill.svg ├── money_pound.svg ├── money_pound_circle.svg ├── money_pound_circle_fill.svg ├── money_rubl.svg ├── money_rubl_circle.svg ├── money_rubl_circle_fill.svg ├── money_yen.svg ├── money_yen_circle.svg ├── money_yen_circle_fill.svg ├── move.svg ├── music_albums.svg ├── music_albums_fill.svg ├── music_note_2.svg ├── paw.svg ├── person_2_alt.svg ├── person_alt.svg ├── person_alt_circle.svg ├── person_alt_circle_fill.svg ├── piano.svg ├── placemark.svg ├── placemark_fill.svg ├── poultry_leg.svg ├── resize.svg ├── resize_h.svg ├── resize_v.svg ├── rocket.svg ├── rocket_fill.svg ├── scissors_alt.svg ├── sort_down.svg ├── sort_down_circle.svg ├── sort_down_circle_fill.svg ├── sort_up.svg ├── sort_up_circle.svg ├── sort_up_circle_fill.svg ├── square_arrow_left.svg ├── square_arrow_left_fill.svg ├── square_arrow_right.svg ├── square_arrow_right_fill.svg ├── square_favorites.svg ├── square_favorites_alt.svg ├── square_favorites_alt_fill.svg ├── square_favorites_fill.svg ├── square_list.svg ├── square_list_fill.svg ├── square_pencil_fill.svg ├── status.svg ├── sticker.svg ├── ticket.svg ├── ticket_fill.svg ├── tickets.svg ├── tickets_fill.svg ├── timer_fill.svg ├── today.svg ├── today_fill.svg ├── tree.svg ├── upload_circle.svg ├── upload_circle_fill.svg ├── videocam.svg ├── videocam_circle.svg ├── videocam_circle_fill.svg ├── videocam_fill.svg ├── wallet.svg └── wallet_fill.svg └── sf ├── airplane.svg ├── alarm.svg ├── alarm_fill.svg ├── alt.svg ├── ant.svg ├── ant_circle.svg ├── ant_circle_fill.svg ├── ant_fill.svg ├── antenna_radiowaves_left_right.svg ├── app.svg ├── app_badge.svg ├── app_badge_fill.svg ├── app_fill.svg ├── archivebox.svg ├── archivebox_fill.svg ├── arrow_2_circlepath.svg ├── arrow_2_circlepath_circle.svg ├── arrow_2_circlepath_circle_fill.svg ├── arrow_2_squarepath.svg ├── arrow_3_trianglepath.svg ├── arrow_branch.svg ├── arrow_clockwise.svg ├── arrow_clockwise_circle.svg ├── arrow_clockwise_circle_fill.svg ├── arrow_counterclockwise.svg ├── arrow_counterclockwise_circle.svg ├── arrow_counterclockwise_circle_fill.svg ├── arrow_down.svg ├── arrow_down_circle.svg ├── arrow_down_circle_fill.svg ├── arrow_down_doc.svg ├── arrow_down_doc_fill.svg ├── arrow_down_left.svg ├── arrow_down_left_circle.svg ├── arrow_down_left_circle_fill.svg ├── arrow_down_left_square.svg ├── arrow_down_left_square_fill.svg ├── arrow_down_right.svg ├── arrow_down_right_arrow_up_left.svg ├── arrow_down_right_circle.svg ├── arrow_down_right_circle_fill.svg ├── arrow_down_right_square.svg ├── arrow_down_right_square_fill.svg ├── arrow_down_square.svg ├── arrow_down_square_fill.svg ├── arrow_down_to_line.svg ├── arrow_down_to_line_alt.svg ├── arrow_left.svg ├── arrow_left_circle.svg ├── arrow_left_circle_fill.svg ├── arrow_left_right.svg ├── arrow_left_right_circle.svg ├── arrow_left_right_circle_fill.svg ├── arrow_left_right_square.svg ├── arrow_left_right_square_fill.svg ├── arrow_left_square.svg ├── arrow_left_square_fill.svg ├── arrow_left_to_line.svg ├── arrow_left_to_line_alt.svg ├── arrow_merge.svg ├── arrow_right.svg ├── arrow_right_arrow_left.svg ├── arrow_right_arrow_left_circle.svg ├── arrow_right_arrow_left_circle_fill.svg ├── arrow_right_arrow_left_square.svg ├── arrow_right_arrow_left_square_fill.svg ├── arrow_right_circle.svg ├── arrow_right_circle_fill.svg ├── arrow_right_square.svg ├── arrow_right_square_fill.svg ├── arrow_right_to_line.svg ├── arrow_right_to_line_alt.svg ├── arrow_swap.svg ├── arrow_turn_down_left.svg ├── arrow_turn_down_right.svg ├── arrow_turn_left_down.svg ├── arrow_turn_left_up.svg ├── arrow_turn_right_down.svg ├── arrow_turn_right_up.svg ├── arrow_turn_up_left.svg ├── arrow_turn_up_right.svg ├── arrow_up.svg ├── arrow_up_arrow_down.svg ├── arrow_up_arrow_down_circle.svg ├── arrow_up_arrow_down_circle_fill.svg ├── arrow_up_arrow_down_square.svg ├── arrow_up_arrow_down_square_fill.svg ├── arrow_up_bin.svg ├── arrow_up_bin_fill.svg ├── arrow_up_circle.svg ├── arrow_up_circle_fill.svg ├── arrow_up_doc.svg ├── arrow_up_doc_fill.svg ├── arrow_up_down.svg ├── arrow_up_down_circle.svg ├── arrow_up_down_circle_fill.svg ├── arrow_up_down_square.svg ├── arrow_up_down_square_fill.svg ├── arrow_up_left.svg ├── arrow_up_left_arrow_down_right.svg ├── arrow_up_left_circle.svg ├── arrow_up_left_circle_fill.svg ├── arrow_up_left_square.svg ├── arrow_up_left_square_fill.svg ├── arrow_up_right.svg ├── arrow_up_right_circle.svg ├── arrow_up_right_circle_fill.svg ├── arrow_up_right_diamond.svg ├── arrow_up_right_diamond_fill.svg ├── arrow_up_right_square.svg ├── arrow_up_right_square_fill.svg ├── arrow_up_square.svg ├── arrow_up_square_fill.svg ├── arrow_up_to_line.svg ├── arrow_up_to_line_alt.svg ├── arrow_uturn_down.svg ├── arrow_uturn_down_circle.svg ├── arrow_uturn_down_circle_fill.svg ├── arrow_uturn_down_square.svg ├── arrow_uturn_down_square_fill.svg ├── arrow_uturn_left.svg ├── arrow_uturn_left_circle.svg ├── arrow_uturn_left_circle_fill.svg ├── arrow_uturn_left_square.svg ├── arrow_uturn_left_square_fill.svg ├── arrow_uturn_right.svg ├── arrow_uturn_right_circle.svg ├── arrow_uturn_right_circle_fill.svg ├── arrow_uturn_right_square.svg ├── arrow_uturn_right_square_fill.svg ├── arrow_uturn_up.svg ├── arrow_uturn_up_circle.svg ├── arrow_uturn_up_circle_fill.svg ├── arrow_uturn_up_square.svg ├── arrow_uturn_up_square_fill.svg ├── arrowshape_turn_up_left.svg ├── arrowshape_turn_up_left_2.svg ├── arrowshape_turn_up_left_2_fill.svg ├── arrowshape_turn_up_left_circle.svg ├── arrowshape_turn_up_left_circle_fill.svg ├── arrowshape_turn_up_left_fill.svg ├── arrowshape_turn_up_right.svg ├── arrowshape_turn_up_right_circle.svg ├── arrowshape_turn_up_right_circle_fill.svg ├── arrowshape_turn_up_right_fill.svg ├── arrowtriangle_down.svg ├── arrowtriangle_down_circle.svg ├── arrowtriangle_down_circle_fill.svg ├── arrowtriangle_down_fill.svg ├── arrowtriangle_down_square.svg ├── arrowtriangle_down_square_fill.svg ├── arrowtriangle_left.svg ├── arrowtriangle_left_circle.svg ├── arrowtriangle_left_circle_fill.svg ├── arrowtriangle_left_fill.svg ├── arrowtriangle_left_square.svg ├── arrowtriangle_left_square_fill.svg ├── arrowtriangle_right.svg ├── arrowtriangle_right_circle.svg ├── arrowtriangle_right_circle_fill.svg ├── arrowtriangle_right_fill.svg ├── arrowtriangle_right_square.svg ├── arrowtriangle_right_square_fill.svg ├── arrowtriangle_up.svg ├── arrowtriangle_up_circle.svg ├── arrowtriangle_up_circle_fill.svg ├── arrowtriangle_up_fill.svg ├── arrowtriangle_up_square.svg ├── arrowtriangle_up_square_fill.svg ├── asterisk_circle.svg ├── asterisk_circle_fill.svg ├── at.svg ├── at_badge_minus.svg ├── at_badge_plus.svg ├── backward.svg ├── backward_end.svg ├── backward_end_alt.svg ├── backward_end_alt_fill.svg ├── backward_end_fill.svg ├── backward_fill.svg ├── badge_plus_radiowaves_right.svg ├── bag.svg ├── bag_badge_minus.svg ├── bag_badge_plus.svg ├── bag_fill.svg ├── bag_fill_badge_minus.svg ├── bag_fill_badge_plus.svg ├── bandage.svg ├── bandage_fill.svg ├── barcode.svg ├── barcode_viewfinder.svg ├── battery_0.svg ├── battery_100.svg ├── battery_25.svg ├── bed_double.svg ├── bed_double_fill.svg ├── bell.svg ├── bell_circle.svg ├── bell_circle_fill.svg ├── bell_fill.svg ├── bell_slash.svg ├── bell_slash_fill.svg ├── bin_xmark.svg ├── bin_xmark_fill.svg ├── bold.svg ├── bold_italic_underline.svg ├── bold_underline.svg ├── bolt.svg ├── bolt_badge_a.svg ├── bolt_badge_a_fill.svg ├── bolt_circle.svg ├── bolt_circle_fill.svg ├── bolt_fill.svg ├── bolt_horizontal.svg ├── bolt_horizontal_circle.svg ├── bolt_horizontal_circle_fill.svg ├── bolt_horizontal_fill.svg ├── bolt_slash.svg ├── bolt_slash_fill.svg ├── book.svg ├── book_circle.svg ├── book_circle_fill.svg ├── book_fill.svg ├── bookmark.svg ├── bookmark_fill.svg ├── briefcase.svg ├── briefcase_fill.svg ├── bubble_left.svg ├── bubble_left_bubble_right.svg ├── bubble_left_bubble_right_fill.svg ├── bubble_left_fill.svg ├── bubble_middle_bottom.svg ├── bubble_middle_bottom_fill.svg ├── bubble_middle_top.svg ├── bubble_middle_top_fill.svg ├── bubble_right.svg ├── bubble_right_fill.svg ├── building.svg ├── building_2.svg ├── building_2_crop_circle.svg ├── building_2_crop_circle_fill.svg ├── building_2_fill.svg ├── building_columns.svg ├── building_columns_fill.svg ├── building_fill.svg ├── burn.svg ├── burst.svg ├── burst_fill.svg ├── calendar.svg ├── calendar_badge_minus.svg ├── calendar_badge_plus.svg ├── calendar_circle.svg ├── calendar_circle_fill.svg ├── camera.svg ├── camera_circle.svg ├── camera_circle_fill.svg ├── camera_fill.svg ├── camera_filters.svg ├── camera_on_rectangle.svg ├── camera_on_rectangle_fill.svg ├── camera_rotate.svg ├── camera_rotate_fill.svg ├── camera_viewfinder.svg ├── capslock.svg ├── capslock_fill.svg ├── capsule.svg ├── capsule_fill.svg ├── captions_bubble.svg ├── captions_bubble_fill.svg ├── car_fill.svg ├── cart.svg ├── cart_badge_minus.svg ├── cart_badge_plus.svg ├── cart_fill.svg ├── cart_fill_badge_minus.svg ├── cart_fill_badge_plus.svg ├── chart_bar.svg ├── chart_bar_fill.svg ├── chart_pie.svg ├── chart_pie_fill.svg ├── checkmark.svg ├── checkmark_circle.svg ├── checkmark_circle_fill.svg ├── checkmark_rectangle.svg ├── checkmark_rectangle_fill.svg ├── checkmark_seal.svg ├── checkmark_seal_fill.svg ├── checkmark_shield.svg ├── checkmark_shield_fill.svg ├── checkmark_square.svg ├── checkmark_square_fill.svg ├── chevron_compact_down.svg ├── chevron_compact_left.svg ├── chevron_compact_right.svg ├── chevron_compact_up.svg ├── chevron_down.svg ├── chevron_down_circle.svg ├── chevron_down_circle_fill.svg ├── chevron_down_square.svg ├── chevron_down_square_fill.svg ├── chevron_left.svg ├── chevron_left_2.svg ├── chevron_left_circle.svg ├── chevron_left_circle_fill.svg ├── chevron_left_slash_chevron_right.svg ├── chevron_left_square.svg ├── chevron_left_square_fill.svg ├── chevron_right.svg ├── chevron_right_2.svg ├── chevron_right_circle.svg ├── chevron_right_circle_fill.svg ├── chevron_right_square.svg ├── chevron_right_square_fill.svg ├── chevron_up.svg ├── chevron_up_chevron_down.svg ├── chevron_up_circle.svg ├── chevron_up_circle_fill.svg ├── chevron_up_square.svg ├── chevron_up_square_fill.svg ├── circle.svg ├── circle_bottomthird_split.svg ├── circle_fill.svg ├── circle_grid_3x3.svg ├── circle_grid_3x3_fill.svg ├── circle_grid_hex.svg ├── circle_grid_hex_fill.svg ├── circle_lefthalf_fill.svg ├── circle_righthalf_fill.svg ├── clear.svg ├── clear_fill.svg ├── clock.svg ├── clock_fill.svg ├── cloud.svg ├── cloud_bolt.svg ├── cloud_bolt_fill.svg ├── cloud_bolt_rain.svg ├── cloud_bolt_rain_fill.svg ├── cloud_drizzle.svg ├── cloud_drizzle_fill.svg ├── cloud_fill.svg ├── cloud_fog.svg ├── cloud_fog_fill.svg ├── cloud_hail.svg ├── cloud_hail_fill.svg ├── cloud_heavyrain.svg ├── cloud_heavyrain_fill.svg ├── cloud_moon.svg ├── cloud_moon_bolt.svg ├── cloud_moon_bolt_fill.svg ├── cloud_moon_fill.svg ├── cloud_moon_rain.svg ├── cloud_moon_rain_fill.svg ├── cloud_rain.svg ├── cloud_rain_fill.svg ├── cloud_sleet.svg ├── cloud_sleet_fill.svg ├── cloud_snow.svg ├── cloud_snow_fill.svg ├── cloud_sun.svg ├── cloud_sun_bolt.svg ├── cloud_sun_bolt_fill.svg ├── cloud_sun_fill.svg ├── cloud_sun_rain.svg ├── cloud_sun_rain_fill.svg ├── command.svg ├── control.svg ├── creditcard.svg ├── creditcard_fill.svg ├── crop.svg ├── crop_rotate.svg ├── cube.svg ├── cube_box.svg ├── cube_box_fill.svg ├── cube_fill.svg ├── cursor_rays.svg ├── decrease_indent.svg ├── decrease_quotelevel.svg ├── delete_left.svg ├── delete_left_fill.svg ├── delete_right.svg ├── delete_right_fill.svg ├── desktopcomputer.svg ├── dial.svg ├── dial_fill.svg ├── divide.svg ├── divide_circle.svg ├── divide_circle_fill.svg ├── divide_square.svg ├── divide_square_fill.svg ├── doc.svg ├── doc_append.svg ├── doc_circle.svg ├── doc_circle_fill.svg ├── doc_fill.svg ├── doc_on_clipboard.svg ├── doc_on_clipboard_fill.svg ├── doc_on_doc.svg ├── doc_on_doc_fill.svg ├── doc_plaintext.svg ├── doc_richtext.svg ├── doc_text.svg ├── doc_text_fill.svg ├── doc_text_search.svg ├── doc_text_viewfinder.svg ├── dot_radiowaves_left_right.svg ├── dot_radiowaves_right.svg ├── dot_square.svg ├── dot_square_fill.svg ├── drop_triangle.svg ├── drop_triangle_fill.svg ├── ear.svg ├── eject.svg ├── eject_fill.svg ├── ellipses_bubble.svg ├── ellipses_bubble_fill.svg ├── ellipsis.svg ├── ellipsis_circle.svg ├── ellipsis_circle_fill.svg ├── envelope.svg ├── envelope_badge.svg ├── envelope_badge_fill.svg ├── envelope_circle.svg ├── envelope_circle_fill.svg ├── envelope_fill.svg ├── envelope_open.svg ├── envelope_open_fill.svg ├── equal.svg ├── equal_circle.svg ├── equal_circle_fill.svg ├── equal_square.svg ├── equal_square_fill.svg ├── escape.svg ├── exclamationmark.svg ├── exclamationmark_bubble.svg ├── exclamationmark_bubble_fill.svg ├── exclamationmark_circle.svg ├── exclamationmark_circle_fill.svg ├── exclamationmark_octagon.svg ├── exclamationmark_octagon_fill.svg ├── exclamationmark_shield.svg ├── exclamationmark_shield_fill.svg ├── exclamationmark_square.svg ├── exclamationmark_square_fill.svg ├── exclamationmark_triangle.svg ├── exclamationmark_triangle_fill.svg ├── eye.svg ├── eye_fill.svg ├── eye_slash.svg ├── eye_slash_fill.svg ├── eyedropper.svg ├── eyedropper_full.svg ├── eyedropper_halffull.svg ├── eyeglasses.svg ├── f_cursive.svg ├── f_cursive_circle.svg ├── f_cursive_circle_fill.svg ├── face_smiling.svg ├── face_smiling_fill.svg ├── facemask.svg ├── facemask_fill.svg ├── film.svg ├── film_fill.svg ├── flag.svg ├── flag_circle.svg ├── flag_circle_fill.svg ├── flag_fill.svg ├── flag_slash.svg ├── flag_slash_fill.svg ├── flame.svg ├── flame_fill.svg ├── flowchart.svg ├── flowchart_fill.svg ├── folder.svg ├── folder_badge_minus.svg ├── folder_badge_person_crop.svg ├── folder_badge_plus.svg ├── folder_circle.svg ├── folder_circle_fill.svg ├── folder_fill.svg ├── folder_fill_badge_minus.svg ├── folder_fill_badge_person_crop.svg ├── folder_fill_badge_plus.svg ├── forward.svg ├── forward_end.svg ├── forward_end_alt.svg ├── forward_end_alt_fill.svg ├── forward_end_fill.svg ├── forward_fill.svg ├── function.svg ├── fx.svg ├── gamecontroller.svg ├── gamecontroller_fill.svg ├── gauge.svg ├── gauge_badge_minus.svg ├── gauge_badge_plus.svg ├── gear.svg ├── gift.svg ├── gift_alt.svg ├── gift_alt_fill.svg ├── gift_fill.svg ├── giftcard.svg ├── giftcard_fill.svg ├── globe.svg ├── gobackward.svg ├── gobackward_10.svg ├── gobackward_15.svg ├── gobackward_30.svg ├── gobackward_45.svg ├── gobackward_60.svg ├── gobackward_75.svg ├── gobackward_90.svg ├── gobackward_minus.svg ├── goforward.svg ├── goforward_10.svg ├── goforward_15.svg ├── goforward_30.svg ├── goforward_45.svg ├── goforward_60.svg ├── goforward_75.svg ├── goforward_90.svg ├── goforward_plus.svg ├── greaterthan.svg ├── greaterthan_circle.svg ├── greaterthan_circle_fill.svg ├── greaterthan_square.svg ├── greaterthan_square_fill.svg ├── grid.svg ├── grid_circle.svg ├── grid_circle_fill.svg ├── guitars.svg ├── hammer.svg ├── hammer_fill.svg ├── hand_draw.svg ├── hand_draw_fill.svg ├── hand_point_left.svg ├── hand_point_left_fill.svg ├── hand_point_right.svg ├── hand_point_right_fill.svg ├── hand_raised.svg ├── hand_raised_fill.svg ├── hand_raised_slash.svg ├── hand_raised_slash_fill.svg ├── hand_thumbsdown.svg ├── hand_thumbsdown_fill.svg ├── hand_thumbsup.svg ├── hand_thumbsup_fill.svg ├── hare.svg ├── hare_fill.svg ├── headphones.svg ├── heart.svg ├── heart_circle.svg ├── heart_circle_fill.svg ├── heart_fill.svg ├── heart_slash.svg ├── heart_slash_circle.svg ├── heart_slash_circle_fill.svg ├── heart_slash_fill.svg ├── helm.svg ├── hexagon.svg ├── hexagon_fill.svg ├── hifispeaker.svg ├── hifispeaker_fill.svg ├── hourglass.svg ├── hourglass_bottomhalf_fill.svg ├── hourglass_tophalf_fill.svg ├── house.svg ├── house_fill.svg ├── hurricane.svg ├── increase_indent.svg ├── increase_quotelevel.svg ├── info.svg ├── info_circle.svg ├── info_circle_fill.svg ├── italic.svg ├── keyboard.svg ├── keyboard_chevron_compact_down.svg ├── largecircle_fill_circle.svg ├── lasso.svg ├── leaf_arrow_circlepath.svg ├── lessthan.svg ├── lessthan_circle.svg ├── lessthan_circle_fill.svg ├── lessthan_square.svg ├── lessthan_square_fill.svg ├── light_max.svg ├── light_min.svg ├── lightbulb.svg ├── lightbulb_fill.svg ├── lightbulb_slash.svg ├── lightbulb_slash_fill.svg ├── line_horizontal_3.svg ├── line_horizontal_3_decrease.svg ├── line_horizontal_3_decrease_circle.svg ├── line_horizontal_3_decrease_circle_fill.svg ├── link.svg ├── link_circle.svg ├── link_circle_fill.svg ├── list_bullet.svg ├── list_bullet_below_rectangle.svg ├── list_bullet_indent.svg ├── list_dash.svg ├── list_number.svg ├── list_number_rtl.svg ├── location.svg ├── location_circle.svg ├── location_circle_fill.svg ├── location_fill.svg ├── location_north.svg ├── location_north_fill.svg ├── location_north_line.svg ├── location_north_line_fill.svg ├── location_slash.svg ├── location_slash_fill.svg ├── lock.svg ├── lock_circle.svg ├── lock_circle_fill.svg ├── lock_fill.svg ├── lock_open.svg ├── lock_open_fill.svg ├── lock_rotation.svg ├── lock_rotation_open.svg ├── lock_shield.svg ├── lock_shield_fill.svg ├── lock_slash.svg ├── lock_slash_fill.svg ├── macwindow.svg ├── map.svg ├── map_fill.svg ├── map_pin.svg ├── map_pin_ellipse.svg ├── map_pin_slash.svg ├── memories.svg ├── memories_badge_minus.svg ├── memories_badge_plus.svg ├── metronome.svg ├── mic.svg ├── mic_circle.svg ├── mic_circle_fill.svg ├── mic_fill.svg ├── mic_slash.svg ├── mic_slash_fill.svg ├── minus.svg ├── minus_circle.svg ├── minus_circle_fill.svg ├── minus_rectangle.svg ├── minus_rectangle_fill.svg ├── minus_slash_plus.svg ├── minus_square.svg ├── minus_square_fill.svg ├── moon.svg ├── moon_circle.svg ├── moon_circle_fill.svg ├── moon_fill.svg ├── moon_stars.svg ├── moon_stars_fill.svg ├── moon_zzz.svg ├── moon_zzz_fill.svg ├── multiply.svg ├── multiply_circle.svg ├── multiply_circle_fill.svg ├── multiply_square.svg ├── multiply_square_fill.svg ├── music_house.svg ├── music_house_fill.svg ├── music_mic.svg ├── music_note.svg ├── music_note_list.svg ├── nosign.svg ├── number.svg ├── number_circle.svg ├── number_circle_fill.svg ├── number_square.svg ├── number_square_fill.svg ├── option.svg ├── paintbrush.svg ├── paintbrush_fill.svg ├── pano.svg ├── pano_fill.svg ├── paperclip.svg ├── paperplane.svg ├── paperplane_fill.svg ├── paragraph.svg ├── pause.svg ├── pause_circle.svg ├── pause_circle_fill.svg ├── pause_fill.svg ├── pause_rectangle.svg ├── pause_rectangle_fill.svg ├── pencil.svg ├── pencil_circle.svg ├── pencil_circle_fill.svg ├── pencil_ellipsis_rectangle.svg ├── pencil_outline.svg ├── pencil_slash.svg ├── percent.svg ├── person.svg ├── person_2.svg ├── person_2_fill.svg ├── person_2_square_stack.svg ├── person_2_square_stack_fill.svg ├── person_3.svg ├── person_3_fill.svg ├── person_badge_minus.svg ├── person_badge_minus_fill.svg ├── person_badge_plus.svg ├── person_badge_plus_fill.svg ├── person_circle.svg ├── person_circle_fill.svg ├── person_crop_circle.svg ├── person_crop_circle_badge_checkmark.svg ├── person_crop_circle_badge_exclam.svg ├── person_crop_circle_badge_minus.svg ├── person_crop_circle_badge_plus.svg ├── person_crop_circle_badge_xmark.svg ├── person_crop_circle_fill.svg ├── person_crop_circle_fill_badge_checkmark.svg ├── person_crop_circle_fill_badge_exclam.svg ├── person_crop_circle_fill_badge_minus.svg ├── person_crop_circle_fill_badge_plus.svg ├── person_crop_circle_fill_badge_xmark.svg ├── person_crop_rectangle.svg ├── person_crop_rectangle_fill.svg ├── person_crop_square.svg ├── person_crop_square_fill.svg ├── person_fill.svg ├── personalhotspot.svg ├── perspective.svg ├── phone.svg ├── phone_arrow_down_left.svg ├── phone_arrow_right.svg ├── phone_arrow_up_right.svg ├── phone_badge_plus.svg ├── phone_circle.svg ├── phone_circle_fill.svg ├── phone_down.svg ├── phone_down_circle.svg ├── phone_down_circle_fill.svg ├── phone_down_fill.svg ├── phone_fill.svg ├── phone_fill_arrow_down_left.svg ├── phone_fill_arrow_right.svg ├── phone_fill_arrow_up_right.svg ├── phone_fill_badge_plus.svg ├── photo.svg ├── photo_fill.svg ├── photo_fill_on_rectangle_fill.svg ├── photo_on_rectangle.svg ├── pin.svg ├── pin_fill.svg ├── pin_slash.svg ├── pin_slash_fill.svg ├── play.svg ├── play_circle.svg ├── play_circle_fill.svg ├── play_fill.svg ├── play_rectangle.svg ├── play_rectangle_fill.svg ├── playpause.svg ├── playpause_fill.svg ├── plus.svg ├── plus_app.svg ├── plus_app_fill.svg ├── plus_bubble.svg ├── plus_bubble_fill.svg ├── plus_circle.svg ├── plus_circle_fill.svg ├── plus_rectangle.svg ├── plus_rectangle_fill.svg ├── plus_rectangle_fill_on_rectangle_fill.svg ├── plus_rectangle_on_rectangle.svg ├── plus_slash_minus.svg ├── plus_square.svg ├── plus_square_fill.svg ├── plus_square_fill_on_square_fill.svg ├── plus_square_on_square.svg ├── plusminus.svg ├── plusminus_circle.svg ├── plusminus_circle_fill.svg ├── power.svg ├── printer.svg ├── printer_fill.svg ├── projective.svg ├── purchased.svg ├── purchased_circle.svg ├── purchased_circle_fill.svg ├── qrcode.svg ├── qrcode_viewfinder.svg ├── question.svg ├── question_circle.svg ├── question_circle_fill.svg ├── question_diamond.svg ├── question_diamond_fill.svg ├── question_square.svg ├── question_square_fill.svg ├── quote_bubble.svg ├── quote_bubble_fill.svg ├── radiowaves_left.svg ├── radiowaves_right.svg ├── rays.svg ├── recordingtape.svg ├── rectangle.svg ├── rectangle_3_offgrid.svg ├── rectangle_3_offgrid_fill.svg ├── rectangle_arrow_up_right_arrow_down_left.svg ├── rectangle_arrow_up_right_arrow_down_left_slash.svg ├── rectangle_badge_checkmark.svg ├── rectangle_badge_xmark.svg ├── rectangle_compress_vertical.svg ├── rectangle_dock.svg ├── rectangle_expand_vertical.svg ├── rectangle_fill.svg ├── rectangle_fill_badge_checkmark.svg ├── rectangle_fill_badge_xmark.svg ├── rectangle_fill_on_rectangle_angled_fill.svg ├── rectangle_fill_on_rectangle_fill.svg ├── rectangle_grid_1x2.svg ├── rectangle_grid_1x2_fill.svg ├── rectangle_grid_2x2.svg ├── rectangle_grid_2x2_fill.svg ├── rectangle_grid_3x2.svg ├── rectangle_grid_3x2_fill.svg ├── rectangle_on_rectangle.svg ├── rectangle_on_rectangle_angled.svg ├── rectangle_paperclip.svg ├── rectangle_split_3x1.svg ├── rectangle_split_3x1_fill.svg ├── rectangle_split_3x3.svg ├── rectangle_split_3x3_fill.svg ├── rectangle_stack.svg ├── rectangle_stack_badge_minus.svg ├── rectangle_stack_badge_person_crop.svg ├── rectangle_stack_badge_plus.svg ├── rectangle_stack_fill.svg ├── rectangle_stack_fill_badge_minus.svg ├── rectangle_stack_fill_badge_person_crop.svg ├── rectangle_stack_fill_badge_plus.svg ├── rectangle_stack_person_crop.svg ├── rectangle_stack_person_crop_fill.svg ├── repeat.svg ├── repeat_1.svg ├── return.svg ├── rhombus.svg ├── rhombus_fill.svg ├── rosette.svg ├── rotate_left.svg ├── rotate_left_fill.svg ├── rotate_right.svg ├── rotate_right_fill.svg ├── scissors.svg ├── scope.svg ├── scribble.svg ├── search.svg ├── search_circle.svg ├── search_circle_fill.svg ├── selection_pin_in_out.svg ├── shield.svg ├── shield_fill.svg ├── shield_lefthalf_fill.svg ├── shield_slash.svg ├── shield_slash_fill.svg ├── shift.svg ├── shift_fill.svg ├── shippingbox.svg ├── shippingbox_fill.svg ├── shuffle.svg ├── sidebar_left.svg ├── sidebar_right.svg ├── signature.svg ├── skew.svg ├── slash_circle.svg ├── slash_circle_fill.svg ├── slider_horizontal_3.svg ├── slider_horizontal_below_rectangle.svg ├── slowmo.svg ├── smallcircle_circle.svg ├── smallcircle_circle_fill.svg ├── smallcircle_fill_circle.svg ├── smallcircle_fill_circle_fill.svg ├── smiley.svg ├── smiley_fill.svg ├── smoke.svg ├── smoke_fill.svg ├── snow.svg ├── sparkles.svg ├── speaker.svg ├── speaker_1.svg ├── speaker_1_fill.svg ├── speaker_2.svg ├── speaker_2_fill.svg ├── speaker_3.svg ├── speaker_3_fill.svg ├── speaker_fill.svg ├── speaker_slash.svg ├── speaker_slash_fill.svg ├── speaker_slash_fill_rtl.svg ├── speaker_slash_rtl.svg ├── speaker_zzz.svg ├── speaker_zzz_fill.svg ├── speaker_zzz_fill_rtl.svg ├── speaker_zzz_rtl.svg ├── speedometer.svg ├── sportscourt.svg ├── sportscourt_fill.svg ├── square.svg ├── square_arrow_down.svg ├── square_arrow_down_fill.svg ├── square_arrow_down_on_square.svg ├── square_arrow_down_on_square_fill.svg ├── square_arrow_up.svg ├── square_arrow_up_fill.svg ├── square_arrow_up_on_square.svg ├── square_arrow_up_on_square_fill.svg ├── square_fill.svg ├── square_fill_line_vertical_square.svg ├── square_fill_line_vertical_square_fill.svg ├── square_fill_on_circle_fill.svg ├── square_fill_on_square_fill.svg ├── square_grid_2x2.svg ├── square_grid_2x2_fill.svg ├── square_grid_3x2.svg ├── square_grid_3x2_fill.svg ├── square_grid_4x3_fill.svg ├── square_lefthalf_fill.svg ├── square_line_vertical_square.svg ├── square_line_vertical_square_fill.svg ├── square_on_circle.svg ├── square_on_square.svg ├── square_pencil.svg ├── square_righthalf_fill.svg ├── square_split_1x2.svg ├── square_split_1x2_fill.svg ├── square_split_2x1.svg ├── square_split_2x1_fill.svg ├── square_split_2x2.svg ├── square_split_2x2_fill.svg ├── square_stack.svg ├── square_stack_3d_down_dottedline.svg ├── square_stack_3d_down_right.svg ├── square_stack_3d_down_right_fill.svg ├── square_stack_3d_up.svg ├── square_stack_3d_up_fill.svg ├── square_stack_3d_up_slash.svg ├── square_stack_3d_up_slash_fill.svg ├── square_stack_fill.svg ├── squares_below_rectangle.svg ├── star.svg ├── star_circle.svg ├── star_circle_fill.svg ├── star_fill.svg ├── star_lefthalf_fill.svg ├── star_slash.svg ├── star_slash_fill.svg ├── staroflife.svg ├── staroflife_fill.svg ├── stop.svg ├── stop_circle.svg ├── stop_circle_fill.svg ├── stop_fill.svg ├── stopwatch.svg ├── stopwatch_fill.svg ├── strikethrough.svg ├── suit_club.svg ├── suit_club_fill.svg ├── suit_diamond.svg ├── suit_diamond_fill.svg ├── suit_heart.svg ├── suit_heart_fill.svg ├── suit_spade.svg ├── suit_spade_fill.svg ├── sum.svg ├── sun_dust.svg ├── sun_dust_fill.svg ├── sun_haze.svg ├── sun_haze_fill.svg ├── sun_max.svg ├── sun_max_fill.svg ├── sun_min.svg ├── sun_min_fill.svg ├── sunrise.svg ├── sunrise_fill.svg ├── sunset.svg ├── sunset_fill.svg ├── t_bubble.svg ├── t_bubble_fill.svg ├── table.svg ├── table_badge_more.svg ├── table_badge_more_fill.svg ├── table_fill.svg ├── tag.svg ├── tag_circle.svg ├── tag_circle_fill.svg ├── tag_fill.svg ├── text_aligncenter.svg ├── text_alignleft.svg ├── text_alignright.svg ├── text_append.svg ├── text_badge_checkmark.svg ├── text_badge_minus.svg ├── text_badge_plus.svg ├── text_badge_star.svg ├── text_badge_xmark.svg ├── text_bubble.svg ├── text_bubble_fill.svg ├── text_cursor.svg ├── text_insert.svg ├── text_justify.svg ├── text_justifyleft.svg ├── text_justifyright.svg ├── text_quote.svg ├── textbox.svg ├── textformat.svg ├── textformat_123.svg ├── textformat_abc.svg ├── textformat_abc_dottedunderline.svg ├── textformat_alt.svg ├── textformat_size.svg ├── textformat_subscript.svg ├── textformat_superscript.svg ├── thermometer.svg ├── thermometer_snowflake.svg ├── thermometer_sun.svg ├── timelapse.svg ├── timer.svg ├── tornado.svg ├── tortoise.svg ├── tortoise_fill.svg ├── tram_fill.svg ├── trash.svg ├── trash_circle.svg ├── trash_circle_fill.svg ├── trash_fill.svg ├── trash_slash.svg ├── trash_slash_fill.svg ├── tray.svg ├── tray_2.svg ├── tray_2_fill.svg ├── tray_arrow_down.svg ├── tray_arrow_down_fill.svg ├── tray_arrow_up.svg ├── tray_arrow_up_fill.svg ├── tray_fill.svg ├── tray_full.svg ├── tray_full_fill.svg ├── triangle.svg ├── triangle_fill.svg ├── triangle_lefthalf_fill.svg ├── triangle_righthalf_fill.svg ├── tropicalstorm.svg ├── tuningfork.svg ├── tv.svg ├── tv_circle.svg ├── tv_circle_fill.svg ├── tv_fill.svg ├── tv_music_note.svg ├── tv_music_note_fill.svg ├── uiwindow_split_2x1.svg ├── umbrella.svg ├── umbrella_fill.svg ├── underline.svg ├── view_2d.svg ├── view_3d.svg ├── viewfinder.svg ├── viewfinder_circle.svg ├── viewfinder_circle_fill.svg ├── wand_rays.svg ├── wand_rays_inverse.svg ├── wand_stars.svg ├── wand_stars_inverse.svg ├── waveform.svg ├── waveform_circle.svg ├── waveform_circle_fill.svg ├── waveform_path.svg ├── waveform_path_badge_minus.svg ├── waveform_path_badge_plus.svg ├── waveform_path_ecg.svg ├── wifi.svg ├── wifi_exclamationmark.svg ├── wifi_slash.svg ├── wind.svg ├── wind_snow.svg ├── wrench.svg ├── wrench_fill.svg ├── xmark.svg ├── xmark_circle.svg ├── xmark_circle_fill.svg ├── xmark_octagon.svg ├── xmark_octagon_fill.svg ├── xmark_rectangle.svg ├── xmark_rectangle_fill.svg ├── xmark_seal.svg ├── xmark_seal_fill.svg ├── xmark_shield.svg ├── xmark_shield_fill.svg ├── xmark_square.svg ├── xmark_square_fill.svg ├── zoom_in.svg ├── zoom_out.svg └── zzz.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | npm-debug.log 4 | node_modules 5 | package/react/*.js 6 | package/react/esm/*.js 7 | package/react/cjs/*.js 8 | package/vue/*.js 9 | package/vue/vue/*.vue 10 | package/svelte/*.js 11 | package/svelte/svelte/*.svelte -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "bracketSpacing": true, 4 | "htmlWhitespaceSensitivity": "css", 5 | "insertPragma": false, 6 | "jsxBracketSameLine": false, 7 | "jsxSingleQuote": false, 8 | "printWidth": 100, 9 | "proseWrap": "preserve", 10 | "quoteProps": "as-needed", 11 | "requirePragma": false, 12 | "semi": true, 13 | "singleQuote": true, 14 | "tabWidth": 2, 15 | "trailingComma": "all", 16 | "useTabs": false, 17 | "vueIndentScriptAndStyle": false 18 | } 19 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.defaultFormatter": "esbenp.prettier-vscode" 4 | } 5 | -------------------------------------------------------------------------------- /build/babel-react.config.js: -------------------------------------------------------------------------------- 1 | let modules = process.env.MODULES || false; 2 | if (modules === 'esm' || modules === 'false') modules = false; 3 | 4 | module.exports = { 5 | presets: ['@babel/preset-react', ['@babel/preset-env', { modules, loose: true }]], 6 | }; 7 | -------------------------------------------------------------------------------- /build/blank.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /build/build-font.js: -------------------------------------------------------------------------------- 1 | const { promise: exec } = require('exec-sh'); 2 | 3 | const buildFont = async () => { 4 | exec( 5 | `python ./build/generate.py && ttf2woff ./package/fonts/Framework7Icons-Regular.ttf ./package/fonts/Framework7Icons-Regular.woff`, 6 | ); 7 | }; 8 | module.exports = buildFont; 9 | -------------------------------------------------------------------------------- /build/build.js: -------------------------------------------------------------------------------- 1 | const buildFont = require('./build-font'); 2 | const copySvg = require('./copy-svg'); 3 | const buildReact = require('./build-react'); 4 | const buildVue = require('./build-vue'); 5 | const buildSvelte = require('./build-svelte'); 6 | 7 | const build = () => { 8 | buildFont(); 9 | copySvg(); 10 | buildReact(); 11 | buildSvelte(); 12 | buildVue(); 13 | }; 14 | 15 | build(); 16 | -------------------------------------------------------------------------------- /build/cheatsheet/icon-row.html: -------------------------------------------------------------------------------- 1 |