├── .prettierrc.json ├── apps └── website │ ├── README.md │ ├── public │ └── favicon.ico │ ├── app │ ├── navigation-bar.module.scss │ ├── navigation-rail │ │ └── navigation-rail.module.scss │ └── mainFont.ts │ ├── next.config.js │ ├── components │ └── ComponentCanvas.jsx │ ├── next-env.d.ts │ └── hooks │ └── usePrevious.js ├── packages ├── react │ ├── .gitignore │ ├── README.md │ ├── jest-setup.ts │ └── src │ │ ├── providers │ │ ├── ThemeProvider.ts │ │ ├── VariantProvider.ts │ │ └── UserThemeProvider.ts │ │ └── components │ │ └── Tabs │ │ └── TabSection.tsx ├── icons-react │ ├── .gitignore │ ├── README.md │ └── scripts │ │ └── generateReactIcons.js ├── common │ ├── src │ │ └── m3 │ │ │ ├── default │ │ │ └── fontWeights.ts │ │ │ └── media.ts │ └── CHANGELOG.md └── icons │ ├── resources │ └── icons │ │ ├── editor │ │ ├── mode_comment │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsround │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── title │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── space_bar │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── short_text │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── drag_handle │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── format_paint │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── publish │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── format_size │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── functions │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── notes │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── text_fields │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── vertical_align_top │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── add_comment │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── format_italic │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── format_quote │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── insert_drive_file │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── vertical_align_bottom │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── bar_chart │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── format_strikethrough │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── insert_chart │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── insert_photo │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── insert_comment │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── show_chart │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── border_all │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── table_chart │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── insert_invitation │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── vertical_align_center │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── format_align_center │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── format_align_justify │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── format_align_left │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── format_align_right │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── scatter_plot │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── insert_chart_outlined │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── bubble_chart │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── mode │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── format_textdirection_l_to_r │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── merge_type │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── padding │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── format_indent_increase │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── format_line_spacing │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── format_textdirection_r_to_l │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── border_outer │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── format_indent_decrease │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── av │ │ ├── fiber_manual_record │ │ │ ├── materialiconsround │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── stop │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsround │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── play_arrow │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── volume_mute │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── pause │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── skip_previous │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── skip_next │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── web_asset │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── fast_forward │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── featured_video │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── video_label │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── videocam │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── branding_watermark │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── call_to_action │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── equalizer │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── fast_rewind │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── note │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── explicit │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── featured_play_list │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── repeat │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── queue │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── remove_from_queue │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── video_library │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── library_add │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── video_call │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── subscriptions │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── action │ │ ├── maximize │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── minimize │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── bookmark │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsround │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── home │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── home_filled │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── trending_flat │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── turned_in │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── eject │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── get_app │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── arrow_right_alt │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── book │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── calendar_view_day │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── class │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── done │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── segment │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── view_agenda │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── label │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── markunread_mailbox │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── bookmarks │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── delete │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── horizontal_split │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── label_important │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── payment │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── report_problem │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── view_day │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── announcement │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── change_history │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── question_answer │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── reorder │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── subject │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── bookmark_border │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── calendar_today │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── credit_card │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── dashboard │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── feedback │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── turned_in_not │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── view_headline │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── assessment │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── line_weight │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── store │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── swap_vert │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── today │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── card_membership │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── event │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── open_in_browser │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── pan_tool │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── picture_in_picture │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── star_rate │ │ │ └── materialicons │ │ │ │ └── 18px.svg │ │ ├── swap_horiz │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── trending_down │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── trending_up │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── work │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── dashboard_customize │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── delete_outline │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── description │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── label_off │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── label_outline │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── picture_in_picture_alt │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── polymer │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── tour │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── vertical_split │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ └── view_stream │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── alert │ │ ├── warning │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── warning_amber │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── error │ │ │ ├── materialiconssharp │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ └── 24px.svg │ │ ├── content │ │ ├── remove │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── forward │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── add │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── flag │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── send │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── sort │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── tag │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── filter_list │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── mail │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── markunread │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── reply │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── add_box │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── content_copy │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── shield │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── file_copy │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── outlined_flag │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── weekend │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── inbox │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── device │ │ ├── signal_cellular_4_bar │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── battery_std │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── battery_full │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── signal_cellular_alt │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── signal_cellular_null │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── battery_alert │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── devices │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── sd_storage │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── battery_charging_full │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── graphic_eq │ │ │ └── materialicons │ │ │ └── 24px.svg │ │ ├── image │ │ ├── brightness_1 │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── flash_on │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── crop_16_9 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_3_2 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_5_4 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_7_5 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_din │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── assistant_photo │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_landscape │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_portrait │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop_square │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── dehaze │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── looks_one │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── navigate_before │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── navigate_next │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── view_compact │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── filter_b_and_w │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── looks_5 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── looks_two │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── slideshow │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── crop │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── exposure_neg_1 │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── lens │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsround │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── looks_4 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── looks_6 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── circle │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── filter_hdr │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── filter_none │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── image │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── landscape │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── looks_3 │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── panorama │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── photo │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── compare │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── straighten │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── wb_shade │ │ │ └── materialicons │ │ │ └── 24px.svg │ │ ├── navigation │ │ ├── arrow_drop_down │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── arrow_drop_up │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── arrow_left │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── arrow_right │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── menu │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── check │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── expand_more │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── chevron_left │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── chevron_right │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── expand_less │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── arrow_back_ios │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── arrow_back │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── arrow_forward │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── last_page │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── arrow_upward │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── first_page │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── arrow_downward │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ └── waterfall_chart │ │ │ └── materialicons │ │ │ └── 24px.svg │ │ ├── places │ │ └── meeting_room │ │ │ ├── materialicons │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── file │ │ ├── folder │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── file_upload │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── download │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── file_download │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── upload │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── folder_open │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── create_new_folder │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── download_done │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ └── file_download_done │ │ │ └── materialicons │ │ │ └── 24px.svg │ │ ├── communication │ │ ├── chat_bubble │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── call_made │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── call_received │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── clear_all │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── email │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── forum │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── call_missed │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── stay_current_landscape │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── stay_primary_landscape │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── stay_primary_portrait │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── chat_bubble_outline │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── stay_current_portrait │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── call_missed_outgoing │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── chat │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── import_export │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── mail_outline │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── pause_presentation │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── textsms │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── hardware │ │ ├── smartphone │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── tablet │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconsround │ │ │ │ └── 24px.svg │ │ ├── tv │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── computer │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── dock │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── keyboard_arrow_up │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── desktop_mac │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── phone_android │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── power_input │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ └── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ ├── desktop_windows │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── keyboard_arrow_down │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── keyboard_arrow_left │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── keyboard_arrow_right │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── keyboard_backspace │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── keyboard_return │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── laptop_chromebook │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── phonelink │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── laptop_windows │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── monitor │ │ │ └── materialicons │ │ │ └── 24px.svg │ │ ├── maps │ │ ├── navigation │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── near_me │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── transit_enterexit │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconstwotone │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── local_post_office │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── terrain │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── local_bar │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ └── local_hospital │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── notification │ │ ├── priority_high │ │ │ ├── materialicons │ │ │ │ └── 24px.svg │ │ │ ├── materialiconsoutlined │ │ │ │ └── 24px.svg │ │ │ ├── materialiconssharp │ │ │ │ └── 24px.svg │ │ │ └── materialiconstwotone │ │ │ │ └── 24px.svg │ │ ├── imagesearch_roller │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── account_tree │ │ │ └── materialicons │ │ │ │ └── 24px.svg │ │ ├── mms │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── personal_video │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── power │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── sms_failed │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── sd_card_alert │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── sms │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── sd_card │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── system_update │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── voice_chat │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ ├── toggle │ │ ├── check_box_outline_blank │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ ├── indeterminate_check_box │ │ │ └── materialiconssharp │ │ │ │ └── 24px.svg │ │ └── check_box │ │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ └── social │ │ ├── plus_one │ │ └── materialicons │ │ │ └── 24px.svg │ │ ├── poll │ │ └── materialiconssharp │ │ │ └── 24px.svg │ │ └── school │ │ └── materialicons │ │ └── 24px.svg │ ├── CHANGELOG.md │ └── README.md ├── .github └── FUNDING.yml ├── .prettierignore ├── .gitattributes ├── .vscode └── settings.json ├── lerna.json ├── .changeset ├── real-moons-applaud.md ├── blue-onions-yawn.md ├── seven-toes-obey.md ├── neat-bottles-notice.md └── spicy-worms-explode.md └── pnpm-workspace.yaml /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/website/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/.gitignore: -------------------------------------------------------------------------------- 1 | types/** -------------------------------------------------------------------------------- /packages/icons-react/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | icons -------------------------------------------------------------------------------- /packages/icons-react/README.md: -------------------------------------------------------------------------------- 1 | # icons-react 2 | -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- 1 | # @material-toys/react 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: nicrizzo 2 | patreon: nicrizzo -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /.yarn/releases/** binary 2 | /.yarn/plugins/** binary -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "prettier.configPath": ".prettierrc.json" 3 | } -------------------------------------------------------------------------------- /apps/website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koffilabs/material-toys/HEAD/apps/website/public/favicon.ico -------------------------------------------------------------------------------- /apps/website/app/navigation-bar.module.scss: -------------------------------------------------------------------------------- 1 | .bar-container{ 2 | //height: 200px; 3 | padding: 0; 4 | width:500px; 5 | } -------------------------------------------------------------------------------- /packages/react/jest-setup.ts: -------------------------------------------------------------------------------- 1 | // import "@testing-library/jest-dom/extend-expect"; 2 | import "@testing-library/jest-dom"; 3 | -------------------------------------------------------------------------------- /apps/website/app/navigation-rail/navigation-rail.module.scss: -------------------------------------------------------------------------------- 1 | .rail-container{ 2 | height: 500px; 3 | padding: 0; 4 | a{ 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /packages/common/src/m3/default/fontWeights.ts: -------------------------------------------------------------------------------- 1 | export const fontWeights = { 2 | Regular: 400, 3 | Medium: 500, 4 | Bold: 700, 5 | }; 6 | -------------------------------------------------------------------------------- /apps/website/app/mainFont.ts: -------------------------------------------------------------------------------- 1 | import { Roboto } from "next/font/google"; 2 | export const mainFont = Roboto({ 3 | weight: ["400", "700"], 4 | subsets: ["latin"], 5 | }); 6 | -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "node_modules/lerna/schemas/lerna-schema.json", 3 | "version": "0.1.41", 4 | "npmClient": "pnpm", 5 | "packages": [ 6 | "packages/*" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/mode_comment/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/title/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/fiber_manual_record/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/space_bar/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/short_text/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changeset/real-moons-applaud.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@material-toys/icons-react": minor 3 | "@material-toys/common": minor 4 | "@material-toys/icons": minor 5 | "@material-toys/react": minor 6 | --- 7 | 8 | minor fixes 9 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/stop/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/drag_handle/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/next.config.js: -------------------------------------------------------------------------------- 1 | const withBundleAnalyzer = require("@next/bundle-analyzer")({ 2 | enabled: process.env.ANALYZE === "true", 3 | output: "export", 4 | }); 5 | module.exports = withBundleAnalyzer({}); 6 | -------------------------------------------------------------------------------- /packages/icons/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @material-toys/icons 2 | 3 | ## 0.1.43 4 | 5 | ### Patch Changes 6 | 7 | - ab9d409: fix: publish 8 | 9 | ## 0.1.42 10 | 11 | ### Patch Changes 12 | 13 | - fix: publish 14 | -------------------------------------------------------------------------------- /packages/icons/README.md: -------------------------------------------------------------------------------- 1 | # `@material-toys/icons` 2 | 3 | > TODO: description 4 | 5 | ## Usage 6 | 7 | ``` 8 | const icons = require('@material-toys/icons'); 9 | 10 | // TODO: DEMONSTRATE API 11 | ``` 12 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/play_arrow/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_paint/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/publish/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/common/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @material-toys/common 2 | 3 | ## 0.1.43 4 | 5 | ### Patch Changes 6 | 7 | - ab9d409: fix: publish 8 | 9 | ## 0.1.42 10 | 11 | ### Patch Changes 12 | 13 | - fix: publish 14 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/maximize/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/minimize/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/warning/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/stop/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/remove/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_size/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/functions/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/notes/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changeset/blue-onions-yawn.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@material-toys/common": patch 3 | "@material-toys/icons": patch 4 | "@material-toys/icons-react": patch 5 | "@material-toys/react": patch 6 | --- 7 | 8 | fix: navigation drawer state 9 | -------------------------------------------------------------------------------- /.changeset/seven-toes-obey.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@material-toys/common": minor 3 | "@material-toys/icons": minor 4 | "@material-toys/icons-react": minor 5 | "@material-toys/react": minor 6 | --- 7 | 8 | fix: navigation drawer state 9 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/maximize/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/warning/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/volume_mute/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/text_fields/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_top/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/providers/ThemeProvider.ts: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { createContext } from "react"; 3 | 4 | export const ThemeContext = createContext(() => {}); 5 | export const ThemeProvider = ThemeContext.Provider; 6 | -------------------------------------------------------------------------------- /packages/react/src/providers/VariantProvider.ts: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { createContext } from "react"; 3 | 4 | export const VariantContext = createContext({}); 5 | export const VariantProvider = VariantContext.Provider; 6 | -------------------------------------------------------------------------------- /.changeset/neat-bottles-notice.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@material-toys/common": minor 3 | "@material-toys/icons": minor 4 | "@material-toys/icons-react": minor 5 | "@material-toys/react": minor 6 | --- 7 | 8 | fix: navigation drawer state 9 | -------------------------------------------------------------------------------- /.changeset/spicy-worms-explode.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@material-toys/icons-react": patch 3 | "@material-toys/common": patch 4 | "@material-toys/icons": patch 5 | "@material-toys/react": patch 6 | --- 7 | 8 | fix: navigation drawer state 9 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/maximize/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/maximize/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/minimize/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/minimize/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/minimize/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/pause/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/play_arrow/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/forward/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/remove/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/remove/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/remove/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_4_bar/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/add_comment/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_italic/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_quote/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/insert_drive_file/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/space_bar/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/title/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_bottom/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/brightness_1/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/flash_on/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_down/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_up/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_left/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/places/meeting_room/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/components/ComponentCanvas.jsx: -------------------------------------------------------------------------------- 1 | import classes from "./ComponentCanvas.module.scss"; 2 | export const ComponentCanvas = ({ children }) => { 3 | return
{children}
; 4 | }; 5 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/bookmark/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/home/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/home_filled/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/trending_flat/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/turned_in/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/fiber_manual_record/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/pause/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/pause/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/skip_previous/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/stop/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/volume_mute/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/add/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/bar_chart/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/title/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/folder/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/brightness_1/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/flash_on/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/flash_on/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_right/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/eject/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/fiber_manual_record/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/pause/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/skip_next/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/stop/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/web_asset/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/flag/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/forward/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/send/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/battery_std/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_4_bar/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/drag_handle/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_strikethrough/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/insert_chart/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/insert_photo/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/short_text/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/space_bar/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/space_bar/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/title/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/flash_on/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_down/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_down/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_up/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_up/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_up/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_right/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_right/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_right/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/providers/UserThemeProvider.ts: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { createContext } from "react"; 3 | 4 | export const UserThemeContext = createContext(() => {}); 5 | export const UserThemeProvider = UserThemeContext.Provider; 6 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/get_app/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/home/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/trending_flat/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/trending_flat/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/fast_forward/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/featured_video/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/skip_next/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/video_label/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/videocam/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/chat_bubble/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/add/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/add/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/add/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/sort/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/battery_full/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_4_bar/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_4_bar/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/insert_comment/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/publish/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/short_text/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/show_chart/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/file_upload/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_16_9/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_3_2/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_5_4/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_7_5/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_din/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_drop_down/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons-react/scripts/generateReactIcons.js: -------------------------------------------------------------------------------- 1 | const { generateIcons } = require("@material-toys/icons"); 2 | (async () => { 3 | await generateIcons({ 4 | targetDir: `${__dirname}/../icons`, 5 | targetLib: "react", 6 | }); 7 | })(); 8 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/arrow_right_alt/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/book/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/calendar_view_day/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/class/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/done/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/eject/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/segment/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/trending_flat/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_agenda/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/branding_watermark/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/call_to_action/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/equalizer/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/equalizer/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/fast_rewind/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/note/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/skip_previous/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/flag/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/tag/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/border_all/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/drag_handle/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_quote/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/functions/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/notes/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/table_chart/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/download/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/file_download/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/upload/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/smartphone/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/tablet/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/assistant_photo/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_landscape/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_portrait/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop_square/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/dehaze/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/looks_one/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/navigation/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/near_me/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_left/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/menu/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. 6 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/get_app/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/label/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/markunread_mailbox/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/warning/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/warning_amber/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/explicit/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/fast_rewind/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_made/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/filter_list/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/mail/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/send/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/sort/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/sort/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/sort/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_alt/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_size/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/insert_invitation/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_center/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_top/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/folder_open/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/tv/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/dehaze/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/dehaze/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_before/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_next/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/view_compact/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/near_me/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_left/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_left/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/check/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/expand_more/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/arrow_right_alt/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/arrow_right_alt/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/arrow_right_alt/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/bookmarks/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/delete/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/done/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/done/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/done/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/horizontal_split/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/label_important/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/payment/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/report_problem/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_day/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/warning_amber/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/warning_amber/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/equalizer/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/equalizer/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/play_arrow/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_received/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/clear_all/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/clear_all/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/email/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/forum/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/markunread/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/reply/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_null/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/bar_chart/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_center/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_justify/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_left/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_right/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_italic/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_size/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/functions/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/functions/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/scatter_plot/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_top/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/assistant_photo/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/dehaze/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/filter_b_and_w/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/looks_5/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/looks_two/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/slideshow/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/view_compact/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/navigation/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/transit_enterexit/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_left/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_right/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/expand_less/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/menu/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/menu/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/menu/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/priority_high/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/toggle/check_box_outline_blank/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/toggle/indeterminate_check_box/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/common/src/m3/media.ts: -------------------------------------------------------------------------------- 1 | export const media = { 2 | isMobile(){ 3 | 4 | }, 5 | isTablet(){ 6 | 7 | }, 8 | isLaptop(){ 9 | 10 | }, 11 | isDesktop(){ 12 | 13 | }, 14 | onChange(callback){ 15 | 16 | } 17 | } -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/announcement/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/bookmark/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/bookmark/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/calendar_view_day/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/change_history/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/horizontal_split/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/question_answer/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/reorder/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/subject/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/turned_in/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/error/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/featured_play_list/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/repeat/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/repeat/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_made/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_made/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_missed/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/clear_all/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/stay_current_landscape/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/stay_primary_landscape/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/add_box/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/filter_list/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/filter_list/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/filter_list/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/reply/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_null/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_null/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_size/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/insert_chart_outlined/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/notes/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/notes/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/text_fields/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/text_fields/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_bottom/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_bottom/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_top/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/computer/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/dock/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_up/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/crop/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/exposure_neg_1/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/lens/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/looks_4/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/looks_6/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_before/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_next/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/local_post_office/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/transit_enterexit/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_back_ios/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/imagesearch_roller/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/social/plus_one/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/bookmark/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/bookmark_border/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/calendar_today/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/change_history/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/change_history/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/credit_card/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/dashboard/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/feedback/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/reorder/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/report_problem/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/turned_in_not/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_headline/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/alert/error/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/repeat/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/stop/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_made/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/clear_all/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/stay_primary_portrait/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/content_copy/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/reply/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/reply/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/shield/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_alt/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_alt/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_null/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/bar_chart/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/bubble_chart/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_italic/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_italic/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_strikethrough/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/mode/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/show_chart/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/desktop_mac/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/phone_android/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/power_input/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/circle/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/exposure_neg_1/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/filter_hdr/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/filter_none/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/image/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/landscape/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/looks_3/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/panorama/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/photo/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/terrain/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/transit_enterexit/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/transit_enterexit/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_back/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_forward/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/check/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_right/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/expand_less/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/last_page/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/account_tree/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/mms/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/personal_video/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/power/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/priority_high/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/priority_high/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/priority_high/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/sms_failed/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/places/meeting_room/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/social/poll/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/hooks/usePrevious.js: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from "react"; 2 | 3 | export const usePrevious = (value) => { 4 | const previous = useRef(); 5 | useEffect(() => { 6 | previous.current = value; 7 | }); 8 | return previous.current; 9 | }; 10 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/assessment/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/dashboard/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/line_weight/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/line_weight/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/line_weight/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/maximize/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/reorder/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/reorder/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/store/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/subject/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/subject/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/subject/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/swap_vert/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/today/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/turned_in/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/turned_in/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_headline/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/play_arrow/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/queue/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/remove_from_queue/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/repeat/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/skip_next/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/video_library/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_missed/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_received/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_received/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/chat_bubble_outline/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/stay_current_portrait/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/file_copy/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/outlined_flag/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/weekend/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/battery_alert/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/devices/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/signal_cellular_alt/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/bar_chart/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_strikethrough/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_textdirection_l_to_r/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/merge_type/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/padding/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_bottom/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/desktop_windows/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_down/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_left/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_right/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_backspace/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_return/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/laptop_chromebook/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/phonelink/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/power_input/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/power_input/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/tablet/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/compare/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/exposure_neg_1/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/exposure_neg_1/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/lens/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/lens/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_before/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_next/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_next/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/straighten/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/local_bar/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/local_hospital/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/maps/terrain/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_upward/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/check/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/check/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_left/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_right/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_right/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/expand_less/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/expand_less/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/first_page/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/sd_card_alert/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/sms/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react/src/components/Tabs/TabSection.tsx: -------------------------------------------------------------------------------- 1 | import React, { ReactNode } from "react"; 2 | 3 | interface TabSectionProps { 4 | children?: ReactNode; 5 | } 6 | export const TabSection = ({ children }: TabSectionProps) => { 7 | return
{children}
; 8 | }; 9 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/calendar_view_day/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/card_membership/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/delete/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/eject/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/event/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/minimize/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/open_in_browser/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/pan_tool/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/picture_in_picture/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/star_rate/materialicons/18px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/swap_horiz/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/trending_down/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/trending_up/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_headline/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_headline/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/work/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/library_add/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/video_call/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/volume_mute/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_missed/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_received/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/chat_bubble/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/forward/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/inbox/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/outlined_flag/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/outlined_flag/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/remove/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/sd_storage/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/border_all/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_indent_increase/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_line_spacing/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_strikethrough/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_textdirection_r_to_l/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/mode_comment/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/show_chart/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/create_new_folder/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/download_done/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/download_done/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/download_done/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/file/file_download_done/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_down/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_left/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_right/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_up/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_up/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/laptop_chromebook/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/laptop_windows/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/monitor/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/power_input/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/smartphone/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/filter_hdr/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/landscape/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/navigate_before/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/view_compact/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/image/wb_shade/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_back/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_back/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_back/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_downward/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_upward/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/arrow_upward/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_left/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/chevron_left/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/navigation/waterfall_chart/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/sd_card/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/system_update/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/notification/voice_chat/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/social/school/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/toggle/check_box/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - "packages/*" 3 | - "apps/*" 4 | catalogs: 5 | react18: 6 | react: 18.3.1 7 | react-dom: 18.3.1 8 | prettier3: 9 | prettier: 3.4.1 10 | rollup4: 11 | rollup: 4.28.0 12 | esbuild: 13 | esbuild: 0.24.0 14 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/dashboard_customize/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/delete_outline/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/description/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/horizontal_split/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/label_off/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/label_outline/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/picture_in_picture_alt/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/polymer/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/store/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/swap_horiz/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/swap_vert/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/swap_vert/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/tour/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/vertical_split/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/action/view_stream/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/skip_previous/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/subscriptions/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/av/volume_mute/materialiconsround/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_missed/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_missed_outgoing/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/call_missed_outgoing/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/chat/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/import_export/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/import_export/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/mail_outline/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/pause_presentation/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/communication/textsms/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/content/outlined_flag/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/battery_charging_full/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/device/graphic_eq/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/border_outer/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_justify/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_left/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_align_right/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/format_indent_decrease/materialiconssharp/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/mode_comment/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_center/materialicons/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/editor/vertical_align_center/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_down/materialiconsoutlined/24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/icons/resources/icons/hardware/keyboard_arrow_down/materialiconstwotone/24px.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------