├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── heroicons.go ├── heroicons_test.go ├── internal └── assert │ └── assert.go ├── logo.png ├── outline ├── academic_cap.go ├── adjustments.go ├── adjustments_test.go ├── annotation.go ├── archive.go ├── arrow_circle_down.go ├── arrow_circle_left.go ├── arrow_circle_right.go ├── arrow_circle_up.go ├── arrow_down.go ├── arrow_left.go ├── arrow_narrow_down.go ├── arrow_narrow_left.go ├── arrow_narrow_right.go ├── arrow_narrow_up.go ├── arrow_right.go ├── arrow_sm_down.go ├── arrow_sm_left.go ├── arrow_sm_right.go ├── arrow_sm_up.go ├── arrow_up.go ├── arrows_expand.go ├── at_symbol.go ├── backspace.go ├── badge_check.go ├── ban.go ├── beaker.go ├── bell.go ├── book_open.go ├── bookmark.go ├── bookmark_alt.go ├── briefcase.go ├── cake.go ├── calculator.go ├── calendar.go ├── camera.go ├── cash.go ├── chart_bar.go ├── chart_pie.go ├── chart_square_bar.go ├── chat.go ├── chat_alt.go ├── chat_alt2.go ├── check.go ├── check_circle.go ├── chevron_double_down.go ├── chevron_double_left.go ├── chevron_double_right.go ├── chevron_double_up.go ├── chevron_down.go ├── chevron_left.go ├── chevron_right.go ├── chevron_up.go ├── chip.go ├── clipboard.go ├── clipboard_check.go ├── clipboard_copy.go ├── clipboard_list.go ├── clock.go ├── cloud.go ├── cloud_download.go ├── cloud_upload.go ├── code.go ├── cog.go ├── collection.go ├── color_swatch.go ├── credit_card.go ├── cube.go ├── cube_transparent.go ├── currency_bangladeshi.go ├── currency_dollar.go ├── currency_euro.go ├── currency_pound.go ├── currency_rupee.go ├── currency_yen.go ├── cursor_click.go ├── database.go ├── desktop_computer.go ├── device_mobile.go ├── device_tablet.go ├── document.go ├── document_add.go ├── document_download.go ├── document_duplicate.go ├── document_remove.go ├── document_report.go ├── document_search.go ├── document_text.go ├── dots_circle_horizontal.go ├── dots_horizontal.go ├── dots_vertical.go ├── download.go ├── duplicate.go ├── emoji_happy.go ├── emoji_sad.go ├── exclamation.go ├── exclamation_circle.go ├── external_link.go ├── eye.go ├── eye_off.go ├── fast_forward.go ├── film.go ├── filter.go ├── finger_print.go ├── fire.go ├── flag.go ├── folder.go ├── folder_add.go ├── folder_download.go ├── folder_open.go ├── folder_remove.go ├── gift.go ├── globe.go ├── globe_alt.go ├── hand.go ├── hashtag.go ├── heart.go ├── home.go ├── identification.go ├── inbox.go ├── inbox_in.go ├── information_circle.go ├── key.go ├── library.go ├── light_bulb.go ├── lightning_bolt.go ├── link.go ├── location_marker.go ├── lock_closed.go ├── lock_open.go ├── login.go ├── logout.go ├── mail.go ├── mail_open.go ├── map.go ├── menu.go ├── menu_alt1.go ├── menu_alt2.go ├── menu_alt3.go ├── menu_alt4.go ├── microphone.go ├── minus.go ├── minus_circle.go ├── minus_sm.go ├── moon.go ├── music_note.go ├── newspaper.go ├── office_building.go ├── paper_airplane.go ├── paper_clip.go ├── pause.go ├── pencil.go ├── pencil_alt.go ├── phone.go ├── phone_incoming.go ├── phone_missed_call.go ├── phone_outgoing.go ├── photograph.go ├── play.go ├── plus.go ├── plus_circle.go ├── plus_sm.go ├── presentation_chart_bar.go ├── presentation_chart_line.go ├── printer.go ├── puzzle.go ├── qrcode.go ├── question_mark_circle.go ├── receipt_refund.go ├── receipt_tax.go ├── refresh.go ├── reply.go ├── rewind.go ├── rss.go ├── save.go ├── save_as.go ├── scale.go ├── scissors.go ├── search.go ├── search_circle.go ├── selector.go ├── server.go ├── share.go ├── shield_check.go ├── shield_exclamation.go ├── shopping_bag.go ├── shopping_cart.go ├── sort_ascending.go ├── sort_descending.go ├── sparkles.go ├── speakerphone.go ├── star.go ├── status_offline.go ├── status_online.go ├── stop.go ├── sun.go ├── support.go ├── switch_horizontal.go ├── switch_vertical.go ├── table.go ├── tag.go ├── template.go ├── terminal.go ├── thumb_down.go ├── thumb_up.go ├── ticket.go ├── translate.go ├── trash.go ├── trending_down.go ├── trending_up.go ├── truck.go ├── upload.go ├── user.go ├── user_add.go ├── user_circle.go ├── user_group.go ├── user_remove.go ├── users.go ├── variable.go ├── video_camera.go ├── view_boards.go ├── view_grid.go ├── view_grid_add.go ├── view_list.go ├── volume_off.go ├── volume_up.go ├── wifi.go ├── x.go ├── x_circle.go ├── zoom_in.go └── zoom_out.go ├── solid ├── academic_cap.go ├── adjustments.go ├── adjustments_test.go ├── annotation.go ├── archive.go ├── arrow_circle_down.go ├── arrow_circle_left.go ├── arrow_circle_right.go ├── arrow_circle_up.go ├── arrow_down.go ├── arrow_left.go ├── arrow_narrow_down.go ├── arrow_narrow_left.go ├── arrow_narrow_right.go ├── arrow_narrow_up.go ├── arrow_right.go ├── arrow_sm_down.go ├── arrow_sm_left.go ├── arrow_sm_right.go ├── arrow_sm_up.go ├── arrow_up.go ├── arrows_expand.go ├── at_symbol.go ├── backspace.go ├── badge_check.go ├── ban.go ├── beaker.go ├── bell.go ├── book_open.go ├── bookmark.go ├── bookmark_alt.go ├── briefcase.go ├── cake.go ├── calculator.go ├── calendar.go ├── camera.go ├── cash.go ├── chart_bar.go ├── chart_pie.go ├── chart_square_bar.go ├── chat.go ├── chat_alt.go ├── chat_alt2.go ├── check.go ├── check_circle.go ├── chevron_double_down.go ├── chevron_double_left.go ├── chevron_double_right.go ├── chevron_double_up.go ├── chevron_down.go ├── chevron_left.go ├── chevron_right.go ├── chevron_up.go ├── chip.go ├── clipboard.go ├── clipboard_check.go ├── clipboard_copy.go ├── clipboard_list.go ├── clock.go ├── cloud.go ├── cloud_download.go ├── cloud_upload.go ├── code.go ├── cog.go ├── collection.go ├── color_swatch.go ├── credit_card.go ├── cube.go ├── cube_transparent.go ├── currency_bangladeshi.go ├── currency_dollar.go ├── currency_euro.go ├── currency_pound.go ├── currency_rupee.go ├── currency_yen.go ├── cursor_click.go ├── database.go ├── desktop_computer.go ├── device_mobile.go ├── device_tablet.go ├── document.go ├── document_add.go ├── document_download.go ├── document_duplicate.go ├── document_remove.go ├── document_report.go ├── document_search.go ├── document_text.go ├── dots_circle_horizontal.go ├── dots_horizontal.go ├── dots_vertical.go ├── download.go ├── duplicate.go ├── emoji_happy.go ├── emoji_sad.go ├── exclamation.go ├── exclamation_circle.go ├── external_link.go ├── eye.go ├── eye_off.go ├── fast_forward.go ├── film.go ├── filter.go ├── finger_print.go ├── fire.go ├── flag.go ├── folder.go ├── folder_add.go ├── folder_download.go ├── folder_open.go ├── folder_remove.go ├── gift.go ├── globe.go ├── globe_alt.go ├── hand.go ├── hashtag.go ├── heart.go ├── home.go ├── identification.go ├── inbox.go ├── inbox_in.go ├── information_circle.go ├── key.go ├── library.go ├── light_bulb.go ├── lightning_bolt.go ├── link.go ├── location_marker.go ├── lock_closed.go ├── lock_open.go ├── login.go ├── logout.go ├── mail.go ├── mail_open.go ├── map.go ├── menu.go ├── menu_alt1.go ├── menu_alt2.go ├── menu_alt3.go ├── menu_alt4.go ├── microphone.go ├── minus.go ├── minus_circle.go ├── minus_sm.go ├── moon.go ├── music_note.go ├── newspaper.go ├── office_building.go ├── paper_airplane.go ├── paper_clip.go ├── pause.go ├── pencil.go ├── pencil_alt.go ├── phone.go ├── phone_incoming.go ├── phone_missed_call.go ├── phone_outgoing.go ├── photograph.go ├── play.go ├── plus.go ├── plus_circle.go ├── plus_sm.go ├── presentation_chart_bar.go ├── presentation_chart_line.go ├── printer.go ├── puzzle.go ├── qrcode.go ├── question_mark_circle.go ├── receipt_refund.go ├── receipt_tax.go ├── refresh.go ├── reply.go ├── rewind.go ├── rss.go ├── save.go ├── save_as.go ├── scale.go ├── scissors.go ├── search.go ├── search_circle.go ├── selector.go ├── server.go ├── share.go ├── shield_check.go ├── shield_exclamation.go ├── shopping_bag.go ├── shopping_cart.go ├── sort_ascending.go ├── sort_descending.go ├── sparkles.go ├── speakerphone.go ├── star.go ├── status_offline.go ├── status_online.go ├── stop.go ├── sun.go ├── support.go ├── switch_horizontal.go ├── switch_vertical.go ├── table.go ├── tag.go ├── template.go ├── terminal.go ├── thumb_down.go ├── thumb_up.go ├── ticket.go ├── translate.go ├── trash.go ├── trending_down.go ├── trending_up.go ├── truck.go ├── upload.go ├── user.go ├── user_add.go ├── user_circle.go ├── user_group.go ├── user_remove.go ├── users.go ├── variable.go ├── video_camera.go ├── view_boards.go ├── view_grid.go ├── view_grid_add.go ├── view_list.go ├── volume_off.go ├── volume_up.go ├── wifi.go ├── x.go ├── x_circle.go ├── zoom_in.go └── zoom_out.go ├── v2 ├── go.mod ├── go.sum ├── heroicons.go ├── heroicons_test.go ├── internal │ └── assert │ │ └── assert.go ├── mini │ ├── academic_cap.go │ ├── adjustments_horizontal.go │ ├── adjustments_vertical.go │ ├── archive_box.go │ ├── archive_box_arrow_down.go │ ├── archive_box_x_mark.go │ ├── arrow_down.go │ ├── arrow_down_circle.go │ ├── arrow_down_left.go │ ├── arrow_down_on_square.go │ ├── arrow_down_on_square_stack.go │ ├── arrow_down_right.go │ ├── arrow_down_tray.go │ ├── arrow_left.go │ ├── arrow_left_circle.go │ ├── arrow_left_on_rectangle.go │ ├── arrow_long_down.go │ ├── arrow_long_left.go │ ├── arrow_long_right.go │ ├── arrow_long_up.go │ ├── arrow_path.go │ ├── arrow_path_rounded_square.go │ ├── arrow_right.go │ ├── arrow_right_circle.go │ ├── arrow_right_on_rectangle.go │ ├── arrow_small_down.go │ ├── arrow_small_left.go │ ├── arrow_small_right.go │ ├── arrow_small_up.go │ ├── arrow_top_right_on_square.go │ ├── arrow_trending_down.go │ ├── arrow_trending_up.go │ ├── arrow_up.go │ ├── arrow_up_circle.go │ ├── arrow_up_left.go │ ├── arrow_up_on_square.go │ ├── arrow_up_on_square_stack.go │ ├── arrow_up_right.go │ ├── arrow_up_tray.go │ ├── arrow_uturn_down.go │ ├── arrow_uturn_left.go │ ├── arrow_uturn_right.go │ ├── arrow_uturn_up.go │ ├── arrows_pointing_in.go │ ├── arrows_pointing_out.go │ ├── arrows_right_left.go │ ├── arrows_up_down.go │ ├── at_symbol.go │ ├── backspace.go │ ├── backward.go │ ├── banknotes.go │ ├── bars2.go │ ├── bars3.go │ ├── bars3_bottom_left.go │ ├── bars3_bottom_right.go │ ├── bars3_center_left.go │ ├── bars4.go │ ├── bars_arrow_down.go │ ├── bars_arrow_up.go │ ├── battery0.go │ ├── battery100.go │ ├── battery50.go │ ├── beaker.go │ ├── bell.go │ ├── bell_alert.go │ ├── bell_slash.go │ ├── bell_snooze.go │ ├── bolt.go │ ├── bolt_slash.go │ ├── book_open.go │ ├── bookmark.go │ ├── bookmark_slash.go │ ├── bookmark_square.go │ ├── briefcase.go │ ├── bug_ant.go │ ├── building_library.go │ ├── building_office.go │ ├── building_office2.go │ ├── building_storefront.go │ ├── cake.go │ ├── calculator.go │ ├── calendar.go │ ├── calendar_days.go │ ├── camera.go │ ├── chart_bar.go │ ├── chart_bar_square.go │ ├── chart_pie.go │ ├── chat_bubble_bottom_center.go │ ├── chat_bubble_bottom_center_text.go │ ├── chat_bubble_left.go │ ├── chat_bubble_left_ellipsis.go │ ├── chat_bubble_left_right.go │ ├── chat_bubble_oval_left.go │ ├── chat_bubble_oval_left_ellipsis.go │ ├── check.go │ ├── check_badge.go │ ├── check_circle.go │ ├── chevron_double_down.go │ ├── chevron_double_left.go │ ├── chevron_double_right.go │ ├── chevron_double_up.go │ ├── chevron_down.go │ ├── chevron_left.go │ ├── chevron_right.go │ ├── chevron_up.go │ ├── chevron_up_down.go │ ├── circle_stack.go │ ├── clipboard.go │ ├── clipboard_document.go │ ├── clipboard_document_check.go │ ├── clipboard_document_list.go │ ├── clock.go │ ├── cloud.go │ ├── cloud_arrow_down.go │ ├── cloud_arrow_up.go │ ├── code_bracket.go │ ├── code_bracket_square.go │ ├── cog.go │ ├── cog6_tooth.go │ ├── cog8_tooth.go │ ├── command_line.go │ ├── computer_desktop.go │ ├── cpu_chip.go │ ├── credit_card.go │ ├── cube.go │ ├── cube_transparent.go │ ├── currency_bangladeshi.go │ ├── currency_dollar.go │ ├── currency_euro.go │ ├── currency_pound.go │ ├── currency_rupee.go │ ├── currency_yen.go │ ├── cursor_arrow_rays.go │ ├── cursor_arrow_ripple.go │ ├── device_phone_mobile.go │ ├── device_tablet.go │ ├── document.go │ ├── document_arrow_down.go │ ├── document_arrow_up.go │ ├── document_chart_bar.go │ ├── document_check.go │ ├── document_duplicate.go │ ├── document_magnifying_glass.go │ ├── document_minus.go │ ├── document_plus.go │ ├── document_text.go │ ├── ellipsis_horizontal.go │ ├── ellipsis_horizontal_circle.go │ ├── ellipsis_vertical.go │ ├── envelope.go │ ├── envelope_open.go │ ├── exclamation_circle.go │ ├── exclamation_triangle.go │ ├── eye.go │ ├── eye_dropper.go │ ├── eye_slash.go │ ├── face_frown.go │ ├── face_smile.go │ ├── film.go │ ├── finger_print.go │ ├── fire.go │ ├── flag.go │ ├── folder.go │ ├── folder_arrow_down.go │ ├── folder_minus.go │ ├── folder_open.go │ ├── folder_plus.go │ ├── forward.go │ ├── funnel.go │ ├── gif.go │ ├── gift.go │ ├── gift_top.go │ ├── globe_alt.go │ ├── globe_americas.go │ ├── globe_asia_australia.go │ ├── globe_europe_africa.go │ ├── hand_raised.go │ ├── hand_thumb_down.go │ ├── hand_thumb_up.go │ ├── hashtag.go │ ├── heart.go │ ├── home.go │ ├── home_modern.go │ ├── identification.go │ ├── inbox.go │ ├── inbox_arrow_down.go │ ├── inbox_stack.go │ ├── information_circle.go │ ├── key.go │ ├── language.go │ ├── lifebuoy.go │ ├── light_bulb.go │ ├── link.go │ ├── list_bullet.go │ ├── lock_closed.go │ ├── lock_open.go │ ├── magnifying_glass.go │ ├── magnifying_glass_circle.go │ ├── magnifying_glass_minus.go │ ├── magnifying_glass_plus.go │ ├── map.go │ ├── map_pin.go │ ├── megaphone.go │ ├── microphone.go │ ├── minus.go │ ├── minus_circle.go │ ├── minus_small.go │ ├── moon.go │ ├── musical_note.go │ ├── newspaper.go │ ├── no_symbol.go │ ├── paint_brush.go │ ├── paper_airplane.go │ ├── paper_clip.go │ ├── pause.go │ ├── pause_circle.go │ ├── pencil.go │ ├── pencil_square.go │ ├── phone.go │ ├── phone_arrow_down_left.go │ ├── phone_arrow_up_right.go │ ├── phone_x_mark.go │ ├── photo.go │ ├── play.go │ ├── play_circle.go │ ├── play_pause.go │ ├── plus.go │ ├── plus_circle.go │ ├── plus_small.go │ ├── power.go │ ├── presentation_chart_bar.go │ ├── presentation_chart_line.go │ ├── printer.go │ ├── puzzle_piece.go │ ├── qr_code.go │ ├── question_mark_circle.go │ ├── queue_list.go │ ├── radio.go │ ├── receipt_percent.go │ ├── receipt_refund.go │ ├── rectangle_group.go │ ├── rectangle_stack.go │ ├── rocket_launch.go │ ├── rss.go │ ├── scale.go │ ├── scissors.go │ ├── server.go │ ├── server_stack.go │ ├── share.go │ ├── shield_check.go │ ├── shield_exclamation.go │ ├── shopping_bag.go │ ├── shopping_cart.go │ ├── signal.go │ ├── signal_slash.go │ ├── sparkles.go │ ├── speaker_wave.go │ ├── speaker_x_mark.go │ ├── square2_stack.go │ ├── square3_stack3_d.go │ ├── squares2_x2.go │ ├── squares_plus.go │ ├── star.go │ ├── stop.go │ ├── stop_circle.go │ ├── sun.go │ ├── swatch.go │ ├── table_cells.go │ ├── tag.go │ ├── ticket.go │ ├── trash.go │ ├── trophy.go │ ├── truck.go │ ├── tv.go │ ├── user.go │ ├── user_circle.go │ ├── user_group.go │ ├── user_minus.go │ ├── user_plus.go │ ├── users.go │ ├── variable.go │ ├── video_camera.go │ ├── video_camera_slash.go │ ├── view_columns.go │ ├── viewfinder_circle.go │ ├── wallet.go │ ├── wifi.go │ ├── window.go │ ├── wrench.go │ ├── wrench_screwdriver.go │ ├── x_circle.go │ └── x_mark.go ├── outline │ ├── academic_cap.go │ ├── adjustments_horizontal.go │ ├── adjustments_vertical.go │ ├── archive_box.go │ ├── archive_box_arrow_down.go │ ├── archive_box_x_mark.go │ ├── arrow_down.go │ ├── arrow_down_circle.go │ ├── arrow_down_left.go │ ├── arrow_down_on_square.go │ ├── arrow_down_on_square_stack.go │ ├── arrow_down_right.go │ ├── arrow_down_tray.go │ ├── arrow_left.go │ ├── arrow_left_circle.go │ ├── arrow_left_on_rectangle.go │ ├── arrow_long_down.go │ ├── arrow_long_left.go │ ├── arrow_long_right.go │ ├── arrow_long_up.go │ ├── arrow_path.go │ ├── arrow_path_rounded_square.go │ ├── arrow_right.go │ ├── arrow_right_circle.go │ ├── arrow_right_on_rectangle.go │ ├── arrow_small_down.go │ ├── arrow_small_left.go │ ├── arrow_small_right.go │ ├── arrow_small_up.go │ ├── arrow_top_right_on_square.go │ ├── arrow_trending_down.go │ ├── arrow_trending_up.go │ ├── arrow_up.go │ ├── arrow_up_circle.go │ ├── arrow_up_left.go │ ├── arrow_up_on_square.go │ ├── arrow_up_on_square_stack.go │ ├── arrow_up_right.go │ ├── arrow_up_tray.go │ ├── arrow_uturn_down.go │ ├── arrow_uturn_left.go │ ├── arrow_uturn_right.go │ ├── arrow_uturn_up.go │ ├── arrows_pointing_in.go │ ├── arrows_pointing_out.go │ ├── arrows_right_left.go │ ├── arrows_up_down.go │ ├── at_symbol.go │ ├── backspace.go │ ├── backward.go │ ├── banknotes.go │ ├── bars2.go │ ├── bars3.go │ ├── bars3_bottom_left.go │ ├── bars3_bottom_right.go │ ├── bars3_center_left.go │ ├── bars4.go │ ├── bars_arrow_down.go │ ├── bars_arrow_up.go │ ├── battery0.go │ ├── battery100.go │ ├── battery50.go │ ├── beaker.go │ ├── bell.go │ ├── bell_alert.go │ ├── bell_slash.go │ ├── bell_snooze.go │ ├── bolt.go │ ├── bolt_slash.go │ ├── book_open.go │ ├── bookmark.go │ ├── bookmark_slash.go │ ├── bookmark_square.go │ ├── briefcase.go │ ├── bug_ant.go │ ├── building_library.go │ ├── building_office.go │ ├── building_office2.go │ ├── building_storefront.go │ ├── cake.go │ ├── calculator.go │ ├── calendar.go │ ├── calendar_days.go │ ├── camera.go │ ├── chart_bar.go │ ├── chart_bar_square.go │ ├── chart_pie.go │ ├── chat_bubble_bottom_center.go │ ├── chat_bubble_bottom_center_text.go │ ├── chat_bubble_left.go │ ├── chat_bubble_left_ellipsis.go │ ├── chat_bubble_left_right.go │ ├── chat_bubble_oval_left.go │ ├── chat_bubble_oval_left_ellipsis.go │ ├── check.go │ ├── check_badge.go │ ├── check_circle.go │ ├── chevron_double_down.go │ ├── chevron_double_left.go │ ├── chevron_double_right.go │ ├── chevron_double_up.go │ ├── chevron_down.go │ ├── chevron_left.go │ ├── chevron_right.go │ ├── chevron_up.go │ ├── chevron_up_down.go │ ├── circle_stack.go │ ├── clipboard.go │ ├── clipboard_document.go │ ├── clipboard_document_check.go │ ├── clipboard_document_list.go │ ├── clock.go │ ├── cloud.go │ ├── cloud_arrow_down.go │ ├── cloud_arrow_up.go │ ├── code_bracket.go │ ├── code_bracket_square.go │ ├── cog.go │ ├── cog6_tooth.go │ ├── cog8_tooth.go │ ├── command_line.go │ ├── computer_desktop.go │ ├── cpu_chip.go │ ├── credit_card.go │ ├── cube.go │ ├── cube_transparent.go │ ├── currency_bangladeshi.go │ ├── currency_dollar.go │ ├── currency_euro.go │ ├── currency_pound.go │ ├── currency_rupee.go │ ├── currency_yen.go │ ├── cursor_arrow_rays.go │ ├── cursor_arrow_ripple.go │ ├── device_phone_mobile.go │ ├── device_tablet.go │ ├── document.go │ ├── document_arrow_down.go │ ├── document_arrow_up.go │ ├── document_chart_bar.go │ ├── document_check.go │ ├── document_duplicate.go │ ├── document_magnifying_glass.go │ ├── document_minus.go │ ├── document_plus.go │ ├── document_text.go │ ├── ellipsis_horizontal.go │ ├── ellipsis_horizontal_circle.go │ ├── ellipsis_vertical.go │ ├── envelope.go │ ├── envelope_open.go │ ├── exclamation_circle.go │ ├── exclamation_triangle.go │ ├── eye.go │ ├── eye_dropper.go │ ├── eye_slash.go │ ├── face_frown.go │ ├── face_smile.go │ ├── film.go │ ├── finger_print.go │ ├── fire.go │ ├── flag.go │ ├── folder.go │ ├── folder_arrow_down.go │ ├── folder_minus.go │ ├── folder_open.go │ ├── folder_plus.go │ ├── forward.go │ ├── funnel.go │ ├── gif.go │ ├── gift.go │ ├── gift_top.go │ ├── globe_alt.go │ ├── globe_americas.go │ ├── globe_asia_australia.go │ ├── globe_europe_africa.go │ ├── hand_raised.go │ ├── hand_thumb_down.go │ ├── hand_thumb_up.go │ ├── hashtag.go │ ├── heart.go │ ├── home.go │ ├── home_modern.go │ ├── identification.go │ ├── inbox.go │ ├── inbox_arrow_down.go │ ├── inbox_stack.go │ ├── information_circle.go │ ├── key.go │ ├── language.go │ ├── lifebuoy.go │ ├── light_bulb.go │ ├── link.go │ ├── list_bullet.go │ ├── lock_closed.go │ ├── lock_open.go │ ├── magnifying_glass.go │ ├── magnifying_glass_circle.go │ ├── magnifying_glass_minus.go │ ├── magnifying_glass_plus.go │ ├── map.go │ ├── map_pin.go │ ├── megaphone.go │ ├── microphone.go │ ├── minus.go │ ├── minus_circle.go │ ├── minus_small.go │ ├── moon.go │ ├── musical_note.go │ ├── newspaper.go │ ├── no_symbol.go │ ├── paint_brush.go │ ├── paper_airplane.go │ ├── paper_clip.go │ ├── pause.go │ ├── pause_circle.go │ ├── pencil.go │ ├── pencil_square.go │ ├── phone.go │ ├── phone_arrow_down_left.go │ ├── phone_arrow_up_right.go │ ├── phone_x_mark.go │ ├── photo.go │ ├── play.go │ ├── play_circle.go │ ├── play_pause.go │ ├── plus.go │ ├── plus_circle.go │ ├── plus_small.go │ ├── power.go │ ├── presentation_chart_bar.go │ ├── presentation_chart_line.go │ ├── printer.go │ ├── puzzle_piece.go │ ├── qr_code.go │ ├── question_mark_circle.go │ ├── queue_list.go │ ├── radio.go │ ├── receipt_percent.go │ ├── receipt_refund.go │ ├── rectangle_group.go │ ├── rectangle_stack.go │ ├── rocket_launch.go │ ├── rss.go │ ├── scale.go │ ├── scissors.go │ ├── server.go │ ├── server_stack.go │ ├── share.go │ ├── shield_check.go │ ├── shield_exclamation.go │ ├── shopping_bag.go │ ├── shopping_cart.go │ ├── signal.go │ ├── signal_slash.go │ ├── sparkles.go │ ├── speaker_wave.go │ ├── speaker_x_mark.go │ ├── square2_stack.go │ ├── square3_stack3_d.go │ ├── squares2_x2.go │ ├── squares_plus.go │ ├── star.go │ ├── stop.go │ ├── stop_circle.go │ ├── sun.go │ ├── swatch.go │ ├── table_cells.go │ ├── tag.go │ ├── ticket.go │ ├── trash.go │ ├── trophy.go │ ├── truck.go │ ├── tv.go │ ├── user.go │ ├── user_circle.go │ ├── user_group.go │ ├── user_minus.go │ ├── user_plus.go │ ├── users.go │ ├── variable.go │ ├── video_camera.go │ ├── video_camera_slash.go │ ├── view_columns.go │ ├── viewfinder_circle.go │ ├── wallet.go │ ├── wifi.go │ ├── window.go │ ├── wrench.go │ ├── wrench_screwdriver.go │ ├── x_circle.go │ └── x_mark.go └── solid │ ├── academic_cap.go │ ├── adjustments_horizontal.go │ ├── adjustments_vertical.go │ ├── archive_box.go │ ├── archive_box_arrow_down.go │ ├── archive_box_x_mark.go │ ├── arrow_down.go │ ├── arrow_down_circle.go │ ├── arrow_down_left.go │ ├── arrow_down_on_square.go │ ├── arrow_down_on_square_stack.go │ ├── arrow_down_right.go │ ├── arrow_down_tray.go │ ├── arrow_left.go │ ├── arrow_left_circle.go │ ├── arrow_left_on_rectangle.go │ ├── arrow_long_down.go │ ├── arrow_long_left.go │ ├── arrow_long_right.go │ ├── arrow_long_up.go │ ├── arrow_path.go │ ├── arrow_path_rounded_square.go │ ├── arrow_right.go │ ├── arrow_right_circle.go │ ├── arrow_right_on_rectangle.go │ ├── arrow_small_down.go │ ├── arrow_small_left.go │ ├── arrow_small_right.go │ ├── arrow_small_up.go │ ├── arrow_top_right_on_square.go │ ├── arrow_trending_down.go │ ├── arrow_trending_up.go │ ├── arrow_up.go │ ├── arrow_up_circle.go │ ├── arrow_up_left.go │ ├── arrow_up_on_square.go │ ├── arrow_up_on_square_stack.go │ ├── arrow_up_right.go │ ├── arrow_up_tray.go │ ├── arrow_uturn_down.go │ ├── arrow_uturn_left.go │ ├── arrow_uturn_right.go │ ├── arrow_uturn_up.go │ ├── arrows_pointing_in.go │ ├── arrows_pointing_out.go │ ├── arrows_right_left.go │ ├── arrows_up_down.go │ ├── at_symbol.go │ ├── backspace.go │ ├── backward.go │ ├── banknotes.go │ ├── bars2.go │ ├── bars3.go │ ├── bars3_bottom_left.go │ ├── bars3_bottom_right.go │ ├── bars3_center_left.go │ ├── bars4.go │ ├── bars_arrow_down.go │ ├── bars_arrow_up.go │ ├── battery0.go │ ├── battery100.go │ ├── battery50.go │ ├── beaker.go │ ├── bell.go │ ├── bell_alert.go │ ├── bell_slash.go │ ├── bell_snooze.go │ ├── bolt.go │ ├── bolt_slash.go │ ├── book_open.go │ ├── bookmark.go │ ├── bookmark_slash.go │ ├── bookmark_square.go │ ├── briefcase.go │ ├── bug_ant.go │ ├── building_library.go │ ├── building_office.go │ ├── building_office2.go │ ├── building_storefront.go │ ├── cake.go │ ├── calculator.go │ ├── calendar.go │ ├── calendar_days.go │ ├── camera.go │ ├── chart_bar.go │ ├── chart_bar_square.go │ ├── chart_pie.go │ ├── chat_bubble_bottom_center.go │ ├── chat_bubble_bottom_center_text.go │ ├── chat_bubble_left.go │ ├── chat_bubble_left_ellipsis.go │ ├── chat_bubble_left_right.go │ ├── chat_bubble_oval_left.go │ ├── chat_bubble_oval_left_ellipsis.go │ ├── check.go │ ├── check_badge.go │ ├── check_circle.go │ ├── chevron_double_down.go │ ├── chevron_double_left.go │ ├── chevron_double_right.go │ ├── chevron_double_up.go │ ├── chevron_down.go │ ├── chevron_left.go │ ├── chevron_right.go │ ├── chevron_up.go │ ├── chevron_up_down.go │ ├── circle_stack.go │ ├── clipboard.go │ ├── clipboard_document.go │ ├── clipboard_document_check.go │ ├── clipboard_document_list.go │ ├── clock.go │ ├── cloud.go │ ├── cloud_arrow_down.go │ ├── cloud_arrow_up.go │ ├── code_bracket.go │ ├── code_bracket_square.go │ ├── cog.go │ ├── cog6_tooth.go │ ├── cog8_tooth.go │ ├── command_line.go │ ├── computer_desktop.go │ ├── cpu_chip.go │ ├── credit_card.go │ ├── cube.go │ ├── cube_transparent.go │ ├── currency_bangladeshi.go │ ├── currency_dollar.go │ ├── currency_euro.go │ ├── currency_pound.go │ ├── currency_rupee.go │ ├── currency_yen.go │ ├── cursor_arrow_rays.go │ ├── cursor_arrow_ripple.go │ ├── device_phone_mobile.go │ ├── device_tablet.go │ ├── document.go │ ├── document_arrow_down.go │ ├── document_arrow_up.go │ ├── document_chart_bar.go │ ├── document_check.go │ ├── document_duplicate.go │ ├── document_magnifying_glass.go │ ├── document_minus.go │ ├── document_plus.go │ ├── document_text.go │ ├── ellipsis_horizontal.go │ ├── ellipsis_horizontal_circle.go │ ├── ellipsis_vertical.go │ ├── envelope.go │ ├── envelope_open.go │ ├── exclamation_circle.go │ ├── exclamation_triangle.go │ ├── eye.go │ ├── eye_dropper.go │ ├── eye_slash.go │ ├── face_frown.go │ ├── face_smile.go │ ├── film.go │ ├── finger_print.go │ ├── fire.go │ ├── flag.go │ ├── folder.go │ ├── folder_arrow_down.go │ ├── folder_minus.go │ ├── folder_open.go │ ├── folder_plus.go │ ├── forward.go │ ├── funnel.go │ ├── gif.go │ ├── gift.go │ ├── gift_top.go │ ├── globe_alt.go │ ├── globe_americas.go │ ├── globe_asia_australia.go │ ├── globe_europe_africa.go │ ├── hand_raised.go │ ├── hand_thumb_down.go │ ├── hand_thumb_up.go │ ├── hashtag.go │ ├── heart.go │ ├── home.go │ ├── home_modern.go │ ├── identification.go │ ├── inbox.go │ ├── inbox_arrow_down.go │ ├── inbox_stack.go │ ├── information_circle.go │ ├── key.go │ ├── language.go │ ├── lifebuoy.go │ ├── light_bulb.go │ ├── link.go │ ├── list_bullet.go │ ├── lock_closed.go │ ├── lock_open.go │ ├── magnifying_glass.go │ ├── magnifying_glass_circle.go │ ├── magnifying_glass_minus.go │ ├── magnifying_glass_plus.go │ ├── map.go │ ├── map_pin.go │ ├── megaphone.go │ ├── microphone.go │ ├── minus.go │ ├── minus_circle.go │ ├── minus_small.go │ ├── moon.go │ ├── musical_note.go │ ├── newspaper.go │ ├── no_symbol.go │ ├── paint_brush.go │ ├── paper_airplane.go │ ├── paper_clip.go │ ├── pause.go │ ├── pause_circle.go │ ├── pencil.go │ ├── pencil_square.go │ ├── phone.go │ ├── phone_arrow_down_left.go │ ├── phone_arrow_up_right.go │ ├── phone_x_mark.go │ ├── photo.go │ ├── play.go │ ├── play_circle.go │ ├── play_pause.go │ ├── plus.go │ ├── plus_circle.go │ ├── plus_small.go │ ├── power.go │ ├── presentation_chart_bar.go │ ├── presentation_chart_line.go │ ├── printer.go │ ├── puzzle_piece.go │ ├── qr_code.go │ ├── question_mark_circle.go │ ├── queue_list.go │ ├── radio.go │ ├── receipt_percent.go │ ├── receipt_refund.go │ ├── rectangle_group.go │ ├── rectangle_stack.go │ ├── rocket_launch.go │ ├── rss.go │ ├── scale.go │ ├── scissors.go │ ├── server.go │ ├── server_stack.go │ ├── share.go │ ├── shield_check.go │ ├── shield_exclamation.go │ ├── shopping_bag.go │ ├── shopping_cart.go │ ├── signal.go │ ├── signal_slash.go │ ├── sparkles.go │ ├── speaker_wave.go │ ├── speaker_x_mark.go │ ├── square2_stack.go │ ├── square3_stack3_d.go │ ├── squares2_x2.go │ ├── squares_plus.go │ ├── star.go │ ├── stop.go │ ├── stop_circle.go │ ├── sun.go │ ├── swatch.go │ ├── table_cells.go │ ├── tag.go │ ├── ticket.go │ ├── trash.go │ ├── trophy.go │ ├── truck.go │ ├── tv.go │ ├── user.go │ ├── user_circle.go │ ├── user_group.go │ ├── user_minus.go │ ├── user_plus.go │ ├── users.go │ ├── variable.go │ ├── video_camera.go │ ├── video_camera_slash.go │ ├── view_columns.go │ ├── viewfinder_circle.go │ ├── wallet.go │ ├── wifi.go │ ├── window.go │ ├── wrench.go │ ├── wrench_screwdriver.go │ ├── x_circle.go │ └── x_mark.go └── v3 ├── go.mod ├── go.sum ├── heroicons.go ├── heroicons_test.go ├── internal └── assert │ └── assert.go ├── mini ├── academic_cap.go ├── adjustments_horizontal.go ├── adjustments_vertical.go ├── archive_box.go ├── archive_box_arrow_down.go ├── archive_box_x_mark.go ├── arrow_down.go ├── arrow_down_circle.go ├── arrow_down_left.go ├── arrow_down_on_square.go ├── arrow_down_on_square_stack.go ├── arrow_down_right.go ├── arrow_down_tray.go ├── arrow_left.go ├── arrow_left_circle.go ├── arrow_left_on_rectangle.go ├── arrow_long_down.go ├── arrow_long_left.go ├── arrow_long_right.go ├── arrow_long_up.go ├── arrow_path.go ├── arrow_path_rounded_square.go ├── arrow_right.go ├── arrow_right_circle.go ├── arrow_right_on_rectangle.go ├── arrow_small_down.go ├── arrow_small_left.go ├── arrow_small_right.go ├── arrow_small_up.go ├── arrow_top_right_on_square.go ├── arrow_trending_down.go ├── arrow_trending_up.go ├── arrow_up.go ├── arrow_up_circle.go ├── arrow_up_left.go ├── arrow_up_on_square.go ├── arrow_up_on_square_stack.go ├── arrow_up_right.go ├── arrow_up_tray.go ├── arrow_uturn_down.go ├── arrow_uturn_left.go ├── arrow_uturn_right.go ├── arrow_uturn_up.go ├── arrows_pointing_in.go ├── arrows_pointing_out.go ├── arrows_right_left.go ├── arrows_up_down.go ├── at_symbol.go ├── backspace.go ├── backward.go ├── banknotes.go ├── bars2.go ├── bars3.go ├── bars3_bottom_left.go ├── bars3_bottom_right.go ├── bars3_center_left.go ├── bars4.go ├── bars_arrow_down.go ├── bars_arrow_up.go ├── battery0.go ├── battery100.go ├── battery50.go ├── beaker.go ├── bell.go ├── bell_alert.go ├── bell_slash.go ├── bell_snooze.go ├── bolt.go ├── bolt_slash.go ├── book_open.go ├── bookmark.go ├── bookmark_slash.go ├── bookmark_square.go ├── briefcase.go ├── bug_ant.go ├── building_library.go ├── building_office.go ├── building_office2.go ├── building_storefront.go ├── cake.go ├── calculator.go ├── calendar.go ├── calendar_days.go ├── camera.go ├── chart_bar.go ├── chart_bar_square.go ├── chart_pie.go ├── chat_bubble_bottom_center.go ├── chat_bubble_bottom_center_text.go ├── chat_bubble_left.go ├── chat_bubble_left_ellipsis.go ├── chat_bubble_left_right.go ├── chat_bubble_oval_left.go ├── chat_bubble_oval_left_ellipsis.go ├── check.go ├── check_badge.go ├── check_circle.go ├── chevron_double_down.go ├── chevron_double_left.go ├── chevron_double_right.go ├── chevron_double_up.go ├── chevron_down.go ├── chevron_left.go ├── chevron_right.go ├── chevron_up.go ├── chevron_up_down.go ├── circle_stack.go ├── clipboard.go ├── clipboard_document.go ├── clipboard_document_check.go ├── clipboard_document_list.go ├── clock.go ├── cloud.go ├── cloud_arrow_down.go ├── cloud_arrow_up.go ├── code_bracket.go ├── code_bracket_square.go ├── cog.go ├── cog6_tooth.go ├── cog8_tooth.go ├── command_line.go ├── computer_desktop.go ├── cpu_chip.go ├── credit_card.go ├── cube.go ├── cube_transparent.go ├── currency_bangladeshi.go ├── currency_dollar.go ├── currency_euro.go ├── currency_pound.go ├── currency_rupee.go ├── currency_yen.go ├── cursor_arrow_rays.go ├── cursor_arrow_ripple.go ├── device_phone_mobile.go ├── device_tablet.go ├── document.go ├── document_arrow_down.go ├── document_arrow_up.go ├── document_chart_bar.go ├── document_check.go ├── document_duplicate.go ├── document_magnifying_glass.go ├── document_minus.go ├── document_plus.go ├── document_text.go ├── ellipsis_horizontal.go ├── ellipsis_horizontal_circle.go ├── ellipsis_vertical.go ├── envelope.go ├── envelope_open.go ├── exclamation_circle.go ├── exclamation_triangle.go ├── eye.go ├── eye_dropper.go ├── eye_slash.go ├── face_frown.go ├── face_smile.go ├── film.go ├── finger_print.go ├── fire.go ├── flag.go ├── folder.go ├── folder_arrow_down.go ├── folder_minus.go ├── folder_open.go ├── folder_plus.go ├── forward.go ├── funnel.go ├── gif.go ├── gift.go ├── gift_top.go ├── globe_alt.go ├── globe_americas.go ├── globe_asia_australia.go ├── globe_europe_africa.go ├── hand_raised.go ├── hand_thumb_down.go ├── hand_thumb_up.go ├── hashtag.go ├── heart.go ├── home.go ├── home_modern.go ├── identification.go ├── inbox.go ├── inbox_arrow_down.go ├── inbox_stack.go ├── information_circle.go ├── key.go ├── language.go ├── lifebuoy.go ├── light_bulb.go ├── link.go ├── list_bullet.go ├── lock_closed.go ├── lock_open.go ├── magnifying_glass.go ├── magnifying_glass_circle.go ├── magnifying_glass_minus.go ├── magnifying_glass_plus.go ├── map.go ├── map_pin.go ├── megaphone.go ├── microphone.go ├── minus.go ├── minus_circle.go ├── minus_small.go ├── moon.go ├── musical_note.go ├── newspaper.go ├── no_symbol.go ├── paint_brush.go ├── paper_airplane.go ├── paper_clip.go ├── pause.go ├── pause_circle.go ├── pencil.go ├── pencil_square.go ├── phone.go ├── phone_arrow_down_left.go ├── phone_arrow_up_right.go ├── phone_x_mark.go ├── photo.go ├── play.go ├── play_circle.go ├── play_pause.go ├── plus.go ├── plus_circle.go ├── plus_small.go ├── power.go ├── presentation_chart_bar.go ├── presentation_chart_line.go ├── printer.go ├── puzzle_piece.go ├── qr_code.go ├── question_mark_circle.go ├── queue_list.go ├── radio.go ├── receipt_percent.go ├── receipt_refund.go ├── rectangle_group.go ├── rectangle_stack.go ├── rocket_launch.go ├── rss.go ├── scale.go ├── scissors.go ├── server.go ├── server_stack.go ├── share.go ├── shield_check.go ├── shield_exclamation.go ├── shopping_bag.go ├── shopping_cart.go ├── signal.go ├── signal_slash.go ├── sparkles.go ├── speaker_wave.go ├── speaker_x_mark.go ├── square2_stack.go ├── square3_stack3_d.go ├── squares2_x2.go ├── squares_plus.go ├── star.go ├── stop.go ├── stop_circle.go ├── sun.go ├── swatch.go ├── table_cells.go ├── tag.go ├── ticket.go ├── trash.go ├── trophy.go ├── truck.go ├── tv.go ├── user.go ├── user_circle.go ├── user_group.go ├── user_minus.go ├── user_plus.go ├── users.go ├── variable.go ├── video_camera.go ├── video_camera_slash.go ├── view_columns.go ├── viewfinder_circle.go ├── wallet.go ├── wifi.go ├── window.go ├── wrench.go ├── wrench_screwdriver.go ├── x_circle.go └── x_mark.go ├── outline ├── academic_cap.go ├── adjustments_horizontal.go ├── adjustments_vertical.go ├── archive_box.go ├── archive_box_arrow_down.go ├── archive_box_x_mark.go ├── arrow_down.go ├── arrow_down_circle.go ├── arrow_down_left.go ├── arrow_down_on_square.go ├── arrow_down_on_square_stack.go ├── arrow_down_right.go ├── arrow_down_tray.go ├── arrow_left.go ├── arrow_left_circle.go ├── arrow_left_on_rectangle.go ├── arrow_long_down.go ├── arrow_long_left.go ├── arrow_long_right.go ├── arrow_long_up.go ├── arrow_path.go ├── arrow_path_rounded_square.go ├── arrow_right.go ├── arrow_right_circle.go ├── arrow_right_on_rectangle.go ├── arrow_small_down.go ├── arrow_small_left.go ├── arrow_small_right.go ├── arrow_small_up.go ├── arrow_top_right_on_square.go ├── arrow_trending_down.go ├── arrow_trending_up.go ├── arrow_up.go ├── arrow_up_circle.go ├── arrow_up_left.go ├── arrow_up_on_square.go ├── arrow_up_on_square_stack.go ├── arrow_up_right.go ├── arrow_up_tray.go ├── arrow_uturn_down.go ├── arrow_uturn_left.go ├── arrow_uturn_right.go ├── arrow_uturn_up.go ├── arrows_pointing_in.go ├── arrows_pointing_out.go ├── arrows_right_left.go ├── arrows_up_down.go ├── at_symbol.go ├── backspace.go ├── backward.go ├── banknotes.go ├── bars2.go ├── bars3.go ├── bars3_bottom_left.go ├── bars3_bottom_right.go ├── bars3_center_left.go ├── bars4.go ├── bars_arrow_down.go ├── bars_arrow_up.go ├── battery0.go ├── battery100.go ├── battery50.go ├── beaker.go ├── bell.go ├── bell_alert.go ├── bell_slash.go ├── bell_snooze.go ├── bolt.go ├── bolt_slash.go ├── book_open.go ├── bookmark.go ├── bookmark_slash.go ├── bookmark_square.go ├── briefcase.go ├── bug_ant.go ├── building_library.go ├── building_office.go ├── building_office2.go ├── building_storefront.go ├── cake.go ├── calculator.go ├── calendar.go ├── calendar_days.go ├── camera.go ├── chart_bar.go ├── chart_bar_square.go ├── chart_pie.go ├── chat_bubble_bottom_center.go ├── chat_bubble_bottom_center_text.go ├── chat_bubble_left.go ├── chat_bubble_left_ellipsis.go ├── chat_bubble_left_right.go ├── chat_bubble_oval_left.go ├── chat_bubble_oval_left_ellipsis.go ├── check.go ├── check_badge.go ├── check_circle.go ├── chevron_double_down.go ├── chevron_double_left.go ├── chevron_double_right.go ├── chevron_double_up.go ├── chevron_down.go ├── chevron_left.go ├── chevron_right.go ├── chevron_up.go ├── chevron_up_down.go ├── circle_stack.go ├── clipboard.go ├── clipboard_document.go ├── clipboard_document_check.go ├── clipboard_document_list.go ├── clock.go ├── cloud.go ├── cloud_arrow_down.go ├── cloud_arrow_up.go ├── code_bracket.go ├── code_bracket_square.go ├── cog.go ├── cog6_tooth.go ├── cog8_tooth.go ├── command_line.go ├── computer_desktop.go ├── cpu_chip.go ├── credit_card.go ├── cube.go ├── cube_transparent.go ├── currency_bangladeshi.go ├── currency_dollar.go ├── currency_euro.go ├── currency_pound.go ├── currency_rupee.go ├── currency_yen.go ├── cursor_arrow_rays.go ├── cursor_arrow_ripple.go ├── device_phone_mobile.go ├── device_tablet.go ├── document.go ├── document_arrow_down.go ├── document_arrow_up.go ├── document_chart_bar.go ├── document_check.go ├── document_duplicate.go ├── document_magnifying_glass.go ├── document_minus.go ├── document_plus.go ├── document_text.go ├── ellipsis_horizontal.go ├── ellipsis_horizontal_circle.go ├── ellipsis_vertical.go ├── envelope.go ├── envelope_open.go ├── exclamation_circle.go ├── exclamation_triangle.go ├── eye.go ├── eye_dropper.go ├── eye_slash.go ├── face_frown.go ├── face_smile.go ├── film.go ├── finger_print.go ├── fire.go ├── flag.go ├── folder.go ├── folder_arrow_down.go ├── folder_minus.go ├── folder_open.go ├── folder_plus.go ├── forward.go ├── funnel.go ├── gif.go ├── gift.go ├── gift_top.go ├── globe_alt.go ├── globe_americas.go ├── globe_asia_australia.go ├── globe_europe_africa.go ├── hand_raised.go ├── hand_thumb_down.go ├── hand_thumb_up.go ├── hashtag.go ├── heart.go ├── home.go ├── home_modern.go ├── identification.go ├── inbox.go ├── inbox_arrow_down.go ├── inbox_stack.go ├── information_circle.go ├── key.go ├── language.go ├── lifebuoy.go ├── light_bulb.go ├── link.go ├── list_bullet.go ├── lock_closed.go ├── lock_open.go ├── magnifying_glass.go ├── magnifying_glass_circle.go ├── magnifying_glass_minus.go ├── magnifying_glass_plus.go ├── map.go ├── map_pin.go ├── megaphone.go ├── microphone.go ├── minus.go ├── minus_circle.go ├── minus_small.go ├── moon.go ├── musical_note.go ├── newspaper.go ├── no_symbol.go ├── paint_brush.go ├── paper_airplane.go ├── paper_clip.go ├── pause.go ├── pause_circle.go ├── pencil.go ├── pencil_square.go ├── phone.go ├── phone_arrow_down_left.go ├── phone_arrow_up_right.go ├── phone_x_mark.go ├── photo.go ├── play.go ├── play_circle.go ├── play_pause.go ├── plus.go ├── plus_circle.go ├── plus_small.go ├── power.go ├── presentation_chart_bar.go ├── presentation_chart_line.go ├── printer.go ├── puzzle_piece.go ├── qr_code.go ├── question_mark_circle.go ├── queue_list.go ├── radio.go ├── receipt_percent.go ├── receipt_refund.go ├── rectangle_group.go ├── rectangle_stack.go ├── rocket_launch.go ├── rss.go ├── scale.go ├── scissors.go ├── server.go ├── server_stack.go ├── share.go ├── shield_check.go ├── shield_exclamation.go ├── shopping_bag.go ├── shopping_cart.go ├── signal.go ├── signal_slash.go ├── sparkles.go ├── speaker_wave.go ├── speaker_x_mark.go ├── square2_stack.go ├── square3_stack3_d.go ├── squares2_x2.go ├── squares_plus.go ├── star.go ├── stop.go ├── stop_circle.go ├── sun.go ├── swatch.go ├── table_cells.go ├── tag.go ├── ticket.go ├── trash.go ├── trophy.go ├── truck.go ├── tv.go ├── user.go ├── user_circle.go ├── user_group.go ├── user_minus.go ├── user_plus.go ├── users.go ├── variable.go ├── video_camera.go ├── video_camera_slash.go ├── view_columns.go ├── viewfinder_circle.go ├── wallet.go ├── wifi.go ├── window.go ├── wrench.go ├── wrench_screwdriver.go ├── x_circle.go └── x_mark.go └── solid ├── academic_cap.go ├── adjustments_horizontal.go ├── adjustments_vertical.go ├── archive_box.go ├── archive_box_arrow_down.go ├── archive_box_x_mark.go ├── arrow_down.go ├── arrow_down_circle.go ├── arrow_down_left.go ├── arrow_down_on_square.go ├── arrow_down_on_square_stack.go ├── arrow_down_right.go ├── arrow_down_tray.go ├── arrow_left.go ├── arrow_left_circle.go ├── arrow_left_on_rectangle.go ├── arrow_long_down.go ├── arrow_long_left.go ├── arrow_long_right.go ├── arrow_long_up.go ├── arrow_path.go ├── arrow_path_rounded_square.go ├── arrow_right.go ├── arrow_right_circle.go ├── arrow_right_on_rectangle.go ├── arrow_small_down.go ├── arrow_small_left.go ├── arrow_small_right.go ├── arrow_small_up.go ├── arrow_top_right_on_square.go ├── arrow_trending_down.go ├── arrow_trending_up.go ├── arrow_up.go ├── arrow_up_circle.go ├── arrow_up_left.go ├── arrow_up_on_square.go ├── arrow_up_on_square_stack.go ├── arrow_up_right.go ├── arrow_up_tray.go ├── arrow_uturn_down.go ├── arrow_uturn_left.go ├── arrow_uturn_right.go ├── arrow_uturn_up.go ├── arrows_pointing_in.go ├── arrows_pointing_out.go ├── arrows_right_left.go ├── arrows_up_down.go ├── at_symbol.go ├── backspace.go ├── backward.go ├── banknotes.go ├── bars2.go ├── bars3.go ├── bars3_bottom_left.go ├── bars3_bottom_right.go ├── bars3_center_left.go ├── bars4.go ├── bars_arrow_down.go ├── bars_arrow_up.go ├── battery0.go ├── battery100.go ├── battery50.go ├── beaker.go ├── bell.go ├── bell_alert.go ├── bell_slash.go ├── bell_snooze.go ├── bolt.go ├── bolt_slash.go ├── book_open.go ├── bookmark.go ├── bookmark_slash.go ├── bookmark_square.go ├── briefcase.go ├── bug_ant.go ├── building_library.go ├── building_office.go ├── building_office2.go ├── building_storefront.go ├── cake.go ├── calculator.go ├── calendar.go ├── calendar_days.go ├── camera.go ├── chart_bar.go ├── chart_bar_square.go ├── chart_pie.go ├── chat_bubble_bottom_center.go ├── chat_bubble_bottom_center_text.go ├── chat_bubble_left.go ├── chat_bubble_left_ellipsis.go ├── chat_bubble_left_right.go ├── chat_bubble_oval_left.go ├── chat_bubble_oval_left_ellipsis.go ├── check.go ├── check_badge.go ├── check_circle.go ├── chevron_double_down.go ├── chevron_double_left.go ├── chevron_double_right.go ├── chevron_double_up.go ├── chevron_down.go ├── chevron_left.go ├── chevron_right.go ├── chevron_up.go ├── chevron_up_down.go ├── circle_stack.go ├── clipboard.go ├── clipboard_document.go ├── clipboard_document_check.go ├── clipboard_document_list.go ├── clock.go ├── cloud.go ├── cloud_arrow_down.go ├── cloud_arrow_up.go ├── code_bracket.go ├── code_bracket_square.go ├── cog.go ├── cog6_tooth.go ├── cog8_tooth.go ├── command_line.go ├── computer_desktop.go ├── cpu_chip.go ├── credit_card.go ├── cube.go ├── cube_transparent.go ├── currency_bangladeshi.go ├── currency_dollar.go ├── currency_euro.go ├── currency_pound.go ├── currency_rupee.go ├── currency_yen.go ├── cursor_arrow_rays.go ├── cursor_arrow_ripple.go ├── device_phone_mobile.go ├── device_tablet.go ├── document.go ├── document_arrow_down.go ├── document_arrow_up.go ├── document_chart_bar.go ├── document_check.go ├── document_duplicate.go ├── document_magnifying_glass.go ├── document_minus.go ├── document_plus.go ├── document_text.go ├── ellipsis_horizontal.go ├── ellipsis_horizontal_circle.go ├── ellipsis_vertical.go ├── envelope.go ├── envelope_open.go ├── exclamation_circle.go ├── exclamation_triangle.go ├── eye.go ├── eye_dropper.go ├── eye_slash.go ├── face_frown.go ├── face_smile.go ├── film.go ├── finger_print.go ├── fire.go ├── flag.go ├── folder.go ├── folder_arrow_down.go ├── folder_minus.go ├── folder_open.go ├── folder_plus.go ├── forward.go ├── funnel.go ├── gif.go ├── gift.go ├── gift_top.go ├── globe_alt.go ├── globe_americas.go ├── globe_asia_australia.go ├── globe_europe_africa.go ├── hand_raised.go ├── hand_thumb_down.go ├── hand_thumb_up.go ├── hashtag.go ├── heart.go ├── home.go ├── home_modern.go ├── identification.go ├── inbox.go ├── inbox_arrow_down.go ├── inbox_stack.go ├── information_circle.go ├── key.go ├── language.go ├── lifebuoy.go ├── light_bulb.go ├── link.go ├── list_bullet.go ├── lock_closed.go ├── lock_open.go ├── magnifying_glass.go ├── magnifying_glass_circle.go ├── magnifying_glass_minus.go ├── magnifying_glass_plus.go ├── map.go ├── map_pin.go ├── megaphone.go ├── microphone.go ├── minus.go ├── minus_circle.go ├── minus_small.go ├── moon.go ├── musical_note.go ├── newspaper.go ├── no_symbol.go ├── paint_brush.go ├── paper_airplane.go ├── paper_clip.go ├── pause.go ├── pause_circle.go ├── pencil.go ├── pencil_square.go ├── phone.go ├── phone_arrow_down_left.go ├── phone_arrow_up_right.go ├── phone_x_mark.go ├── photo.go ├── play.go ├── play_circle.go ├── play_pause.go ├── plus.go ├── plus_circle.go ├── plus_small.go ├── power.go ├── presentation_chart_bar.go ├── presentation_chart_line.go ├── printer.go ├── puzzle_piece.go ├── qr_code.go ├── question_mark_circle.go ├── queue_list.go ├── radio.go ├── receipt_percent.go ├── receipt_refund.go ├── rectangle_group.go ├── rectangle_stack.go ├── rocket_launch.go ├── rss.go ├── scale.go ├── scissors.go ├── server.go ├── server_stack.go ├── share.go ├── shield_check.go ├── shield_exclamation.go ├── shopping_bag.go ├── shopping_cart.go ├── signal.go ├── signal_slash.go ├── sparkles.go ├── speaker_wave.go ├── speaker_x_mark.go ├── square2_stack.go ├── square3_stack3_d.go ├── squares2_x2.go ├── squares_plus.go ├── star.go ├── stop.go ├── stop_circle.go ├── sun.go ├── swatch.go ├── table_cells.go ├── tag.go ├── ticket.go ├── trash.go ├── trophy.go ├── truck.go ├── tv.go ├── user.go ├── user_circle.go ├── user_group.go ├── user_minus.go ├── user_plus.go ├── users.go ├── variable.go ├── video_camera.go ├── video_camera_slash.go ├── view_columns.go ├── viewfinder_circle.go ├── wallet.go ├── wifi.go ├── window.go ├── wrench.go ├── wrench_screwdriver.go ├── x_circle.go └── x_mark.go /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 2 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [Makefile] 12 | indent_style = tab 13 | 14 | [{*.go,*.md}] 15 | indent_style = tab 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cover.out 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | test: 3 | go test -shuffle on ./... 4 | cd v2 && go test -shuffle on ./... 5 | cd v3 && go test -shuffle on ./... 6 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/maragudk/gomponents-heroicons 2 | 3 | go 1.15 4 | 5 | require github.com/maragudk/gomponents v0.20.1 6 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | github.com/maragudk/gomponents v0.20.1 h1:TeJY1fXEcfUvzmvjeUgxol42dvkYMggK1c0V67crWWs= 2 | github.com/maragudk/gomponents v0.20.1/go.mod h1:nHkNnZL6ODgMBeJhrZjkMHVvNdoYsfmpKB2/hjdQ0Hg= 3 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maragudk/gomponents-heroicons/2573098cea1fbc799d26313b225ba601b6544188/logo.png -------------------------------------------------------------------------------- /outline/annotation.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Annotation(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/archive.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Archive(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_circle_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowCircleDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_circle_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowCircleLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_circle_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowCircleRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_circle_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowCircleUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_narrow_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowNarrowDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_narrow_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowNarrowLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_narrow_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowNarrowRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_narrow_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowNarrowUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_sm_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowSmDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_sm_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowSmLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_sm_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowSmRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_sm_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowSmUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrow_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/arrows_expand.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowsExpand(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/at_symbol.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func AtSymbol(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/ban.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Ban(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/bookmark.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Bookmark(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/bookmark_alt.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func BookmarkAlt(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/calendar.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Calendar(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chart_square_bar.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChartSquareBar(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chat_alt.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChatAlt(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/check.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Check(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/check_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CheckCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_double_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronDoubleDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_double_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronDoubleLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_double_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronDoubleRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_double_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronDoubleUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/chevron_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/clock.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Clock(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/cloud.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Cloud(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/cloud_download.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CloudDownload(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/cloud_upload.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CloudUpload(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/code.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Code(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/credit_card.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CreditCard(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/cube.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Cube(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/currency_bangladeshi.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CurrencyBangladeshi(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/currency_pound.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CurrencyPound(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/currency_rupee.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CurrencyRupee(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/currency_yen.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func CurrencyYen(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/device_mobile.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DeviceMobile(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/device_tablet.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DeviceTablet(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/document.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Document(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/dots_circle_horizontal.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DotsCircleHorizontal(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/download.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Download(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/emoji_happy.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func EmojiHappy(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/emoji_sad.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func EmojiSad(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/exclamation_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ExclamationCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/external_link.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ExternalLink(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/film.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Film(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/flag.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Flag(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/folder.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Folder(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/folder_add.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func FolderAdd(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/folder_download.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func FolderDownload(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/folder_remove.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func FolderRemove(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/hashtag.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Hashtag(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/information_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func InformationCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/library.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Library(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/lightning_bolt.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LightningBolt(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/lock_closed.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LockClosed(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/lock_open.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LockOpen(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/login.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Login(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/logout.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Logout(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/mail.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Mail(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/menu.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Menu(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/menu_alt1.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MenuAlt1(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/menu_alt2.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MenuAlt2(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/menu_alt3.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MenuAlt3(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/menu_alt4.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MenuAlt4(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/microphone.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Microphone(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/minus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/minus_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MinusCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/minus_sm.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MinusSm(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/moon.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Moon(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/paper_airplane.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PaperAirplane(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/pause.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Pause(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/pencil.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Pencil(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/plus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/plus_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PlusCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/plus_sm.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PlusSm(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/presentation_chart_bar.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PresentationChartBar(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/presentation_chart_line.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PresentationChartLine(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/receipt_refund.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ReceiptRefund(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/refresh.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Refresh(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/reply.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Reply(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/rss.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Rss(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/save.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Save(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/search.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Search(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/selector.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Selector(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/shopping_bag.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ShoppingBag(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/sort_ascending.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func SortAscending(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/sort_descending.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func SortDescending(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/sparkles.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Sparkles(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/switch_horizontal.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func SwitchHorizontal(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/switch_vertical.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func SwitchVertical(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/table.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Table(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/terminal.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Terminal(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/trending_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func TrendingDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/trending_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func TrendingUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/upload.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Upload(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/user.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func User(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/user_add.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func UserAdd(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/user_remove.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func UserRemove(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/users.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Users(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/view_list.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ViewList(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/x.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func X(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/x_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func XCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/zoom_in.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ZoomIn(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /outline/zoom_out.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ZoomOut(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/arrow_up.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ArrowUp(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/ban.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Ban(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/bell.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Bell(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/bookmark.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Bookmark(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/bookmark_alt.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func BookmarkAlt(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/chart_pie.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChartPie(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(` 12 | `)) 13 | } 14 | -------------------------------------------------------------------------------- /solid/chat_alt.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChatAlt(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/check.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Check(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/chevron_down.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/chevron_left.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/chevron_right.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/chevron_up.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/clipboard.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Clipboard(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(` 12 | `)) 13 | } 14 | -------------------------------------------------------------------------------- /solid/clock.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Clock(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/cloud.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Cloud(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/collection.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Collection(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/device_mobile.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DeviceMobile(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/device_tablet.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DeviceTablet(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/document.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Document(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/dots_circle_horizontal.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DotsCircleHorizontal(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/dots_horizontal.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DotsHorizontal(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/dots_vertical.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func DotsVertical(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/duplicate.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Duplicate(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(` 12 | `)) 13 | } 14 | -------------------------------------------------------------------------------- /solid/exclamation_circle.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func ExclamationCircle(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/fast_forward.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func FastForward(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/filter.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Filter(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/flag.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Flag(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/folder.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Folder(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/heart.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Heart(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/inbox.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Inbox(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/key.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Key(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/lightning_bolt.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LightningBolt(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/location_marker.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LocationMarker(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/lock_closed.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LockClosed(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/lock_open.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func LockOpen(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/mail.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Mail(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(` 12 | `)) 13 | } 14 | -------------------------------------------------------------------------------- /solid/menu.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Menu(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/menu_alt4.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MenuAlt4(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/minus.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/minus_circle.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MinusCircle(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/minus_sm.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func MinusSm(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/moon.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Moon(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/paper_airplane.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PaperAirplane(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/pause.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Pause(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/pencil.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Pencil(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/photograph.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Photograph(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/play.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/plus.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/plus_circle.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PlusCircle(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/plus_sm.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func PlusSm(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/rewind.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Rewind(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/search.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Search(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/share.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Share(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/speakerphone.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Speakerphone(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/stop.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/ticket.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Ticket(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/user.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func User(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/user_add.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func UserAdd(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/user_remove.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func UserRemove(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/users.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func Users(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /solid/video_camera.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons" 7 | ) 8 | 9 | func VideoCamera(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/maragudk/gomponents-heroicons/v2 2 | 3 | go 1.18 4 | 5 | require github.com/maragudk/gomponents v0.22.0 6 | -------------------------------------------------------------------------------- /v2/go.sum: -------------------------------------------------------------------------------- 1 | github.com/maragudk/gomponents v0.22.0 h1:0gNrSDC1nM6w0Vxj5wgGXqV8frDH9UVPE+dEyy4ApPQ= 2 | github.com/maragudk/gomponents v0.22.0/go.mod h1:nHkNnZL6ODgMBeJhrZjkMHVvNdoYsfmpKB2/hjdQ0Hg= 3 | -------------------------------------------------------------------------------- /v2/mini/arrow_down_right.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowDownRight(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/bolt.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bolt(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/clock.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Clock(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/cloud.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Cloud(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/document.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Document(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/ellipsis_horizontal.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func EllipsisHorizontal(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/ellipsis_vertical.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func EllipsisVertical(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/minus.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/minus_circle.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MinusCircle(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/minus_small.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MinusSmall(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/moon.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Moon(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/pencil.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Pencil(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/play.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/plus.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/plus_small.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func PlusSmall(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/share.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Share(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/stop.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/user.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func User(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/view_columns.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ViewColumns(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/mini/x_mark.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func XMark(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_down_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowDownCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_down_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowDownLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_down_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowDownRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_down_tray.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowDownTray(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_left_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowLeftCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_long_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowLongDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_long_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowLongLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_long_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowLongRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_long_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowLongUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_right_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowRightCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_small_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowSmallDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_small_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowSmallLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_small_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowSmallRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_small_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowSmallUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_up_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUpCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_up_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUpLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_up_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUpRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_up_tray.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUpTray(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_uturn_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUturnDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_uturn_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUturnLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_uturn_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUturnRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrow_uturn_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowUturnUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrows_right_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowsRightLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/arrows_up_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ArrowsUpDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/at_symbol.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func AtSymbol(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars2.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bars2(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars3.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bars3(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars3_bottom_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bars3BottomLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars3_bottom_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bars3BottomRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars3_center_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bars3CenterLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars4.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bars4(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars_arrow_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func BarsArrowDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bars_arrow_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func BarsArrowUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/bolt.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Bolt(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/check.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Check(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/check_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func CheckCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_double_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronDoubleDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_double_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronDoubleLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_double_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronDoubleRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_double_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronDoubleUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/chevron_up_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronUpDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/clock.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Clock(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/code_bracket.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func CodeBracket(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/cube.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Cube(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/currency_euro.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func CurrencyEuro(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/currency_rupee.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func CurrencyRupee(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/currency_yen.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func CurrencyYen(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/exclamation_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ExclamationCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/hashtag.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Hashtag(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/magnifying_glass.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MagnifyingGlass(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/magnifying_glass_minus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MagnifyingGlassMinus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/magnifying_glass_plus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MagnifyingGlassPlus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/minus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/minus_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MinusCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/minus_small.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MinusSmall(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/no_symbol.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func NoSymbol(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/paper_airplane.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func PaperAirplane(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/pause.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Pause(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/pause_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func PauseCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/play.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/plus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/plus_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func PlusCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/plus_small.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func PlusSmall(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/power.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Power(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/queue_list.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func QueueList(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/stop.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/x_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func XCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/outline/x_mark.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func XMark(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/chevron_down.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/chevron_left.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/chevron_right.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/chevron_up.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/minus.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/minus_small.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func MinusSmall(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/play.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v2/solid/stop.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "github.com/maragudk/gomponents" 5 | 6 | h "github.com/maragudk/gomponents-heroicons/v2" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/go.mod: -------------------------------------------------------------------------------- 1 | module maragu.dev/gomponents-heroicons/v3 2 | 3 | go 1.18 4 | 5 | require maragu.dev/gomponents v1.0.0 6 | -------------------------------------------------------------------------------- /v3/go.sum: -------------------------------------------------------------------------------- 1 | maragu.dev/gomponents v1.0.0 h1:eeLScjq4PqP1l+r5z/GC+xXZhLHXa6RWUWGW7gSfLh4= 2 | maragu.dev/gomponents v1.0.0/go.mod h1:oEDahza2gZoXDoDHhw8jBNgH+3UR5ni7Ur648HORydM= 3 | -------------------------------------------------------------------------------- /v3/mini/arrow_down_right.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowDownRight(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/arrow_up_left.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpLeft(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/bars2.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars2(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/bolt.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bolt(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/check.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Check(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/chevron_down.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/chevron_left.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/chevron_right.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/chevron_up.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/clock.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Clock(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/cloud.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Cloud(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/document.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Document(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/ellipsis_horizontal.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func EllipsisHorizontal(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/ellipsis_vertical.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func EllipsisVertical(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/exclamation_circle.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ExclamationCircle(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/lock_closed.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func LockClosed(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/magnifying_glass.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MagnifyingGlass(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/minus.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/minus_circle.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MinusCircle(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/minus_small.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MinusSmall(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/moon.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Moon(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/pencil.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Pencil(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/play.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/plus.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/plus_small.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func PlusSmall(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/share.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Share(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/stop.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/stop_circle.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func StopCircle(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/user.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func User(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/view_columns.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ViewColumns(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/mini/x_mark.go: -------------------------------------------------------------------------------- 1 | package mini 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func XMark(children ...g.Node) g.Node { 10 | return h.Mini(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_down_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowDownCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_down_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowDownLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_down_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowDownRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_down_tray.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowDownTray(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_left_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowLeftCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_long_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowLongDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_long_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowLongLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_long_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowLongRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_long_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowLongUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_right_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowRightCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_small_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowSmallDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_small_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowSmallLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_small_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowSmallRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_small_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowSmallUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_trending_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowTrendingDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_trending_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowTrendingUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_up_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_up_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_up_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_up_tray.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpTray(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_uturn_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUturnDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_uturn_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUturnLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_uturn_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUturnRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrow_uturn_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUturnUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrows_right_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowsRightLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/arrows_up_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowsUpDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/at_symbol.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func AtSymbol(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars2.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars2(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars3.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars3(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars3_bottom_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars3BottomLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars3_bottom_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars3BottomRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars3_center_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars3CenterLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars4.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars4(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars_arrow_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func BarsArrowDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bars_arrow_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func BarsArrowUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bolt.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bolt(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/bookmark.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bookmark(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/check.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Check(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/check_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func CheckCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_double_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDoubleDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_double_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDoubleLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_double_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDoubleRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_double_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDoubleUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_left.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_right.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_up.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/chevron_up_down.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronUpDown(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/clock.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Clock(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/cloud.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Cloud(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/code_bracket.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func CodeBracket(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/cube.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Cube(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/currency_euro.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func CurrencyEuro(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/currency_rupee.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func CurrencyRupee(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/currency_yen.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func CurrencyYen(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/exclamation_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ExclamationCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/hashtag.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Hashtag(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/magnifying_glass.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MagnifyingGlass(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/magnifying_glass_minus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MagnifyingGlassMinus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/magnifying_glass_plus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MagnifyingGlassPlus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/minus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/minus_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MinusCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/minus_small.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MinusSmall(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/no_symbol.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func NoSymbol(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/paper_airplane.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func PaperAirplane(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/pause.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Pause(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/pause_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func PauseCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/play.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/plus.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/plus_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func PlusCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/plus_small.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func PlusSmall(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/power.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Power(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/queue_list.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func QueueList(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/rss.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Rss(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/stop.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/x_circle.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func XCircle(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/outline/x_mark.go: -------------------------------------------------------------------------------- 1 | package outline 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func XMark(children ...g.Node) g.Node { 10 | return h.Outline(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/arrow_up.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUp(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/arrow_up_left.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpLeft(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/arrow_up_right.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ArrowUpRight(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/bars2.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Bars2(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/check.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Check(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/chevron_down.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronDown(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/chevron_left.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronLeft(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/chevron_right.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronRight(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/chevron_up.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func ChevronUp(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/cloud.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Cloud(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/cube.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Cube(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/ellipsis_horizontal.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func EllipsisHorizontal(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/ellipsis_vertical.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func EllipsisVertical(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/lock_open.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func LockOpen(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/minus.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Minus(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/minus_small.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func MinusSmall(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/play.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Play(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/plus.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Plus(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/plus_small.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func PlusSmall(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/square2_stack.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Square2Stack(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(` 12 | `)) 13 | } 14 | -------------------------------------------------------------------------------- /v3/solid/stop.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func Stop(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | -------------------------------------------------------------------------------- /v3/solid/video_camera.go: -------------------------------------------------------------------------------- 1 | package solid 2 | 3 | import ( 4 | g "maragu.dev/gomponents" 5 | 6 | h "maragu.dev/gomponents-heroicons/v3" 7 | ) 8 | 9 | func VideoCamera(children ...g.Node) g.Node { 10 | return h.Solid(g.Group(children), 11 | g.Raw(``)) 12 | } 13 | --------------------------------------------------------------------------------