rapidfireai 0.0.1__py3-none-any.whl → 0.9.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rapidfireai might be problematic. Click here for more details.
- rapidfireai/__init__.py +11 -5
- rapidfireai/automl/__init__.py +20 -0
- rapidfireai/automl/base.py +48 -0
- rapidfireai/automl/datatypes.py +42 -0
- rapidfireai/automl/grid_search.py +125 -0
- rapidfireai/automl/model_config.py +102 -0
- rapidfireai/automl/random_search.py +145 -0
- rapidfireai/backend/__init__.py +0 -0
- rapidfireai/backend/chunks.py +63 -0
- rapidfireai/backend/controller.py +637 -0
- rapidfireai/backend/scheduler.py +137 -0
- rapidfireai/backend/worker.py +272 -0
- rapidfireai/cli.py +380 -0
- rapidfireai/db/__init__.py +0 -0
- rapidfireai/db/db_interface.py +135 -0
- rapidfireai/db/rf_db.py +694 -0
- rapidfireai/db/tables.sql +64 -0
- rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai/experiment.py +168 -0
- rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai/frontend/build/index.html +1 -0
- rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai/frontend/build/report.html +39 -0
- rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai/frontend/server.py +25 -0
- rapidfireai/ml/__init__.py +0 -0
- rapidfireai/ml/callbacks.py +176 -0
- rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai/ml/trainer.py +309 -0
- rapidfireai/start.sh +634 -0
- rapidfireai/utils/__init__.py +0 -0
- rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai/utils/constants.py +141 -0
- rapidfireai/utils/datapaths.py +69 -0
- rapidfireai/utils/exceptions.py +82 -0
- rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai/utils/logging.py +87 -0
- rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai/utils/serialize.py +15 -0
- rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai/version.py +6 -0
- rapidfireai-0.9.9.dist-info/METADATA +242 -0
- rapidfireai-0.9.9.dist-info/RECORD +318 -0
- rapidfireai-0.9.9.dist-info/entry_points.txt +2 -0
- rapidfireai-0.0.1.dist-info/METADATA +0 -37
- rapidfireai-0.0.1.dist-info/RECORD +0 -6
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/WHEEL +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/licenses/LICENSE +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[2589],{82589:function(e,o,n){n.d(o,{A0N:function(){return lv},A60:function(){return he},ADv:function(){return ls},AMh:function(){return Tp},AYc:function(){return Ph},BAM:function(){return Gs},BfH:function(){return tl},C1y:function(){return $o},CPw:function(){return _a},D$Q:function(){return Uf},D3D:function(){return en},DAb:function(){return _d},EPn:function(){return Xp},FcD:function(){return gs},Fjq:function(){return zc},GCP:function(){return oc},GYj:function(){return Oi},H$v:function(){return Xo},HI_:function(){return mu},Hjg:function(){return _s},ID_:function(){return eh},I_K:function(){return Vs},JGH:function(){return ta},KbA:function(){return jc},Kpk:function(){return me},L64:function(){return it},Lac:function(){return up},LoD:function(){return ss},MMv:function(){return tc},Mtm:function(){return rn},O4:function(){return hn},OKA:function(){return ro},P7m:function(){return Jr},PH6:function(){return wv},PLz:function(){return fp},QpV:function(){return Ys},QvX:function(){return js},R2l:function(){return xi},R9P:function(){return rv},Sc0:function(){return Qs},SvL:function(){return Gu},TdU:function(){return Fn},Trs:function(){return Ul},UfX:function(){return ha},W1t:function(){return yp},WIv:function(){return Ia},WP0:function(){return ur},XAe:function(){return Df},XIK:function(){return Fs},Xeq:function(){return Ui},Y9Y:function(){return tp},YGH:function(){return kr},ZFm:function(){return Vp},ZLN:function(){return ie},_s:function(){return Fu},_vn:function(){return ff},aFV:function(){return Ip},aS3:function(){return Ci},aTS:function(){return ml},b5C:function(){return fu},c11:function(){return ji},crD:function(){return Du},cuA:function(){return Pe},d98:function(){return Qp},dKS:function(){return vp},dOG:function(){return Pf},dhl:function(){return Cu},dn6:function(){return su},ejX:function(){return yd},fAJ:function(){return Mt},fI1:function(){return Qf},fNY:function(){return pa},fSU:function(){return ht},ffE:function(){return uv},ffj:function(){return Gp},flY:function(){return pe},fvL:function(){return qf},gGe:function(){return Pu},hKd:function(){return Lu},htq:function(){return Jd},iTX:function(){return mo},j9R:function(){return bs},jTC:function(){return Yu},jng:function(){return Sn},kFX:function(){return Fd},lQN:function(){return Sf},lVW:function(){return Xu},mCV:function(){return Kd},mFh:function(){return cv},m_M:function(){return Js},mc5:function(){return Eo},mo0:function(){return Wt},msM:function(){return Tu},nA6:function(){return Ts},nD3:function(){return fs},nEg:function(){return Wp},oL1:function(){return dp},oiI:function(){return El},oud:function(){return Bs},p4w:function(){return iv},pgH:function(){return Ll},qXK:function(){return Yp},qhh:function(){return ns},qzg:function(){return xs},rId:function(){return kh},s3U:function(){return dr},ssM:function(){return ii},sxL:function(){return Hf},tUM:function(){return dv},tsw:function(){return Ii},ucK:function(){return vd},udU:function(){return Pi},vIA:function(){return mp},vUj:function(){return hp},vwO:function(){return _p},wFz:function(){return Sc},wS0:function(){return Bf},wd0:function(){return Pr},xUE:function(){return Is},xfq:function(){return kt},z2z:function(){return nv}});var r=n(68254),t=n(89555),l=n(92509),i=n(79500),a=n(40391),c=n(66980),d=n(25319),s=n(69493),h=(n(72876),n(47691)),u=n(20283),f=n(86091),p=n(49604),v=n(354),g=n(90268),m=n(13982),w=n(57396),x=n(92792),b=n(67304),Y=n(51003),y=n(34763),H=n(49581),C=n(11067),R=n(4701),Z=n(40292),I=n(63138),M=n(12910),A=n(4018),V=n(50111),k=n(31014),D=n(45959),B=n.n(D),S=(n(77866),n(39299)),$=n(64661),P=n(72525),L=n.n(P),N=n(37055),F=n(51038),T=(n(13369),n(90598),n(15145),n(28161),n(34226)),z=n.n(T),_=(n(9834),n(21751),n(30352),n(53322)),O=(n(15230),n(25556)),E=n.n(O),W=n(21279),j=n.n(W),G=n(96422),K=n(95060),U=n.n(K);n(487),n(73029),n(26402),n(32842),n(65877),n(24633),n(74854),n(97226),n(61155);function q(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 2.5h14V1H1v1.5ZM11.5 5.75h-7v-1.5h7v1.5ZM15 8.75H1v-1.5h14v1.5ZM15 15H1v-1.5h14V15ZM4.5 11.75h7v-1.5h-7v1.5Z"})})}const X=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:q})));X.displayName="AlignCenterIcon";function Q(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 2.5h14V1H1v1.5ZM8 5.75H1v-1.5h7v1.5ZM1 8.75v-1.5h14v1.5H1ZM1 15v-1.5h14V15H1ZM1 11.75h7v-1.5H1v1.5Z"})})}const J=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Q})));J.displayName="AlignLeftIcon";function ee(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 2.5h14V1H1v1.5ZM15 5.75H8v-1.5h7v1.5ZM1 8.75v-1.5h14v1.5H1ZM1 15v-1.5h14V15H1ZM8 11.75h7v-1.5H8v1.5Z"})})}const oe=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ee})));oe.displayName="AlignRightIcon";function ne(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.75 1a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM8 1a1.75 1.75 0 1 0 0 3.5A1.75 1.75 0 0 0 8 1Zm5.25 0a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM2.75 6.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Zm5.25 0a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Zm5.25 0a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM2.75 11.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Zm5.25 0A1.75 1.75 0 1 0 8 15a1.75 1.75 0 0 0 0-3.5Zm5.25 0a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Z",clipRule:"evenodd"})})}const re=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ne})));re.displayName="AppIcon";function te(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.03 15.06 1 8.03l1.06-1.06 5.22 5.22V1h1.5v11.19L14 6.97l1.06 1.06-7.03 7.03Z",clipRule:"evenodd"})})}const le=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:te})));le.displayName="ArrowDownIcon";var ie=le;function ae(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M4.5 2.5h9v11h-9V11H3v3.25c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H3.75a.75.75 0 0 0-.75.75V5h1.5V2.5Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M12.06 8 8.03 3.97 6.97 5.03l2.22 2.22H1v1.5h8.19l-2.22 2.22 1.06 1.06L12.06 8Z"})]})}const ce=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ae})));ce.displayName="ArrowInIcon";function de(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 8.03 8.03 1l1.061 1.06-5.22 5.22h11.19v1.5H3.87L9.091 14l-1.06 1.06L1 8.03Z",clipRule:"evenodd"})})}const se=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:de})));se.displayName="ArrowLeftIcon";var he=se;function ue(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.06 8.03-7.03 7.03L6.97 14l5.22-5.22H1v-1.5h11.19L6.97 2.06 8.03 1l7.03 7.03Z",clipRule:"evenodd"})})}const fe=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ue})));fe.displayName="ArrowRightIcon";var pe=fe;function ve(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m8.03 1 7.03 7.03L14 9.091l-5.22-5.22v11.19h-1.5V3.87l-5.22 5.22L1 8.031 8.03 1Z",clipRule:"evenodd"})})}const ge=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ve})));ge.displayName="ArrowUpIcon";var me=ge;function we(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M5.03 1 1 5.03l1.06 1.061 2.22-2.22v6.19h1.5V3.87L8 6.091l1.06-1.06L5.03 1ZM11.03 15.121l4.03-4.03-1.06-1.06-2.22 2.219V6.06h-1.5v6.19l-2.22-2.22L7 11.091l4.03 4.03Z"})})}const xe=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:we})));xe.displayName="ArrowsUpDownIcon";function be(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M11.28 11.03H4.73v-1.7h6.55v1.7Zm-2.8-4.7H4.73v1.7h3.75v-1.7ZM15.79 8h-1.7a6.09 6.09 0 0 1-6.08 6.08H3.12l.58-.58c.33-.33.33-.87 0-1.2A6.044 6.044 0 0 1 1.92 8 6.09 6.09 0 0 1 8 1.92V.22C3.71.22.22 3.71.22 8c0 1.79.6 3.49 1.71 4.87L.47 14.33c-.24.24-.32.61-.18.93.13.32.44.52.79.52h6.93c4.29 0 7.78-3.49 7.78-7.78Zm-.62-3.47c.4-.15.4-.72 0-.88l-1.02-.38c-.73-.28-1.31-.85-1.58-1.58L12.19.67c-.08-.2-.26-.3-.44-.3s-.36.1-.44.3l-.38 1.02c-.28.73-.85 1.31-1.58 1.58l-1.02.38c-.4.15-.4.72 0 .88l1.02.38c.73.28 1.31.85 1.58 1.58l.38 1.02c.08.2.26.3.44.3s.36-.1.44-.3l.38-1.02c.28-.73.85-1.31 1.58-1.58l1.02-.38Z"})})}const Ye=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:be})));Ye.displayName="AssistantIcon";function ye(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"m5.56 8.53 1.97 1.97-1.06 1.06-3.03-3.03L6.47 5.5l1.06 1.06-1.97 1.97ZM10.49 8.53 8.52 6.56 9.58 5.5l3.03 3.03-3.03 3.03-1.06-1.06 1.97-1.97Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a3.25 3.25 0 0 0-3 2H1.75a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75H11a3.25 3.25 0 0 0-3-2ZM6.285 2.9a1.75 1.75 0 0 1 3.43 0c.07.349.378.6.735.6h3.05v10h-11v-10h3.05a.75.75 0 0 0 .735-.6Z",clipRule:"evenodd"})]})}const He=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ye})));He.displayName="BadgeCodeIcon";function Ce(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 17",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M16 2.75v11.19l-1.5-1.5V3.5h-3.05a.75.75 0 0 1-.735-.6 1.75 1.75 0 0 0-3.43 0 .75.75 0 0 1-.735.6h-.99L4.06 2H6a3.25 3.25 0 0 1 6 0h3.25a.75.75 0 0 1 .75.75Z"}),(0,V.Y)("path",{fill:"currentColor",d:"m12.1 10.04-1.06-1.06.48-.48-1.97-1.97 1.06-1.06 3.031 3.03-1.54 1.54Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.94 15 1.03 1.03 1.06-1.06-13-13L.97 3.03 2 4.06v10.19c0 .414.336.75.75.75h10.19Zm-4.455-4.454L7.47 11.56 4.44 8.53l1.014-1.016L3.5 5.561V13.5h7.94l-2.955-2.954Z",clipRule:"evenodd"})]})}const Re=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ce})));Re.displayName="BadgeCodeOffIcon";function Ze(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M1 1v13.25c0 .414.336.75.75.75H15v-1.5H2.5V1H1Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M7 1v11h1.5V1H7ZM10 5v7h1.5V5H10ZM4 5v7h1.5V5H4ZM13 12V8h1.5v4H13Z"})]})}const Ie=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ze})));Ie.displayName="BarChartIcon";function Me(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.25 2a.75.75 0 0 0-.75.75V7H9.25a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75h6a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75h-3Zm-.75 10.5v-4H10v4h1.5Zm1.5 0h1.5v-9H13v9ZM3.75 5a.75.75 0 0 0-.75.75V9H.75a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h6a.75.75 0 0 0 .75-.75v-7.5A.75.75 0 0 0 6.75 5h-3ZM3 12.5v-2H1.5v2H3Zm1.5 0H6v-6H4.5v6Z",clipRule:"evenodd"})})}const Ae=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Me})));Ae.displayName="BarGroupedIcon";function Ve(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.25 1a.75.75 0 0 0-.75.75V7H2.75a.75.75 0 0 0-.75.75v6.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75v-9.5a.75.75 0 0 0-.75-.75H10.5V1.75A.75.75 0 0 0 9.75 1h-3.5ZM9 8.5v5H7v-5h2ZM9 7V2.5H7V7h2Zm3.5 6.5h-2v-1.75h2v1.75Zm-2-8v4.75h2V5.5h-2Zm-5 4.75V8.5h-2v1.75h2Zm0 3.25v-1.75h-2v1.75h2Z",clipRule:"evenodd"})})}const ke=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ve})));ke.displayName="BarStackedIcon";function De(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 12 14",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.88 0c-.415 0-.38 0 0 0H.75A.75.75 0 0 0 0 .75v12.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75V.5c0-.414-.336-.5-.75-.5H3.88ZM7 7.5v5H5v-5h2ZM7 6V1.5H5V6h2Zm3.5 6.5h-2v-1.75h2v1.75Zm-2-11v7.75h2V1.5h-2Zm-5 7.75V1.5h-2v7.75h2Zm0 3.25v-1.75h-2v1.75h2Z",clipRule:"evenodd"})})}const Be=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:De})));Be.displayName="BarStackedPercentageIcon";function Se(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.75 1a.75.75 0 0 0-.75.75v6.089c0 .38-.173.739-.47.976l-2.678 2.143A2.27 2.27 0 0 0 3.27 15h9.46a2.27 2.27 0 0 0 1.418-4.042L11.47 8.815A1.25 1.25 0 0 1 11 7.839V1.75a.75.75 0 0 0-.75-.75h-4.5Zm.75 6.839V2.5h3v5.339c0 .606.2 1.188.559 1.661H5.942A2.75 2.75 0 0 0 6.5 7.839ZM4.2 11 2.79 12.13a.77.77 0 0 0 .48 1.37h9.461a.77.77 0 0 0 .481-1.37L11.8 11H4.201Z",clipRule:"evenodd"})})}const $e=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Se})));$e.displayName="BeakerIcon";var Pe=$e;function Le(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 3a2 2 0 1 1 4 0v2a2 2 0 1 1-4 0V3Zm2-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0V3a.5.5 0 0 0-.5-.5Zm3.378-.628c.482 0 .872-.39.872-.872h1.5v4.25H10v1.5H6v-1.5h1.25V3.206c-.27.107-.564.166-.872.166H6v-1.5h.378Zm5 0c.482 0 .872-.39.872-.872h1.5v4.25H15v1.5h-4v-1.5h1.25V3.206c-.27.107-.564.166-.872.166H11v-1.5h.378ZM6 11a2 2 0 1 1 4 0v2a2 2 0 1 1-4 0v-2Zm2-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm-6.622-.378c.482 0 .872-.39.872-.872h1.5v4.25H5V15H1v-1.5h1.25v-2.044c-.27.107-.564.166-.872.166H1v-1.5h.378Zm10 0c.482 0 .872-.39.872-.872h1.5v4.25H15V15h-4v-1.5h1.25v-2.044c-.27.107-.564.166-.872.166H11v-1.5h.378Z",clipRule:"evenodd"})})}const Ne=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Le})));Ne.displayName="BinaryIcon";function Fe(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.75 3a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h4.375a2.875 2.875 0 0 0 1.496-5.33A2.875 2.875 0 0 0 8.375 3H4.75Zm.75 5.75v2.75h3.625a1.375 1.375 0 0 0 0-2.75H5.5Zm2.877-1.5a1.375 1.375 0 0 0-.002-2.75H5.5v2.75h2.877Z",clipRule:"evenodd"})})}const Te=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Fe})));Te.displayName="BoldIcon";function ze(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.75 1a.75.75 0 0 0-.75.75v13.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H2.75ZM7.5 2.5h-4v6.055l1.495-1.36a.75.75 0 0 1 1.01 0L7.5 8.555V2.5Zm-4 8.082 2-1.818 2.245 2.041A.75.75 0 0 0 9 10.25V2.5h3.5v12h-9v-3.918Z",clipRule:"evenodd"})})}const _e=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ze})));_e.displayName="BookIcon";function Oe(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M2.75 0A.75.75 0 0 0 2 .75v14.5a.75.75 0 0 0 1.28.53L8 11.06l4.72 4.72a.75.75 0 0 0 1.28-.53V.75a.75.75 0 0 0-.75-.75H2.75Z"})})}const Ee=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Oe})));Ee.displayName="BookmarkFillIcon";function We(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 .75A.75.75 0 0 1 2.75 0h10.5a.75.75 0 0 1 .75.75v14.5a.75.75 0 0 1-1.28.53L8 11.06l-4.72 4.72A.75.75 0 0 1 2 15.25V.75Zm1.5.75v11.94l3.97-3.97a.75.75 0 0 1 1.06 0l3.97 3.97V1.5h-9Z",clipRule:"evenodd"})})}const je=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:We})));je.displayName="BookmarkIcon";function Ge(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 17",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.5 4.5v10h1v-10h-1ZM1 3a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H1ZM6.5 1.5v13h2v-13h-2ZM6 0a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1H6Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.63 7.74 1.773 6.773.967-.254-1.773-6.771-.967.253Zm-.864-1.324a1 1 0 0 0-.714 1.221l2.026 7.74a1 1 0 0 0 1.22.713l1.936-.506a1 1 0 0 0 .714-1.22l-2.026-7.74a1 1 0 0 0-1.22-.714l-1.936.506Z",clipRule:"evenodd"})]})}const Ke=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ge})));Ke.displayName="BooksIcon";function Ue(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M5.5 2a2.75 2.75 0 0 0-2.75 2.75v1C2.75 6.44 2.19 7 1.5 7H1v2h.5c.69 0 1.25.56 1.25 1.25v1A2.75 2.75 0 0 0 5.5 14H6v-1.5h-.5c-.69 0-1.25-.56-1.25-1.25v-1c0-.93-.462-1.752-1.168-2.25A2.747 2.747 0 0 0 4.25 5.75v-1c0-.69.56-1.25 1.25-1.25H6V2h-.5ZM13.25 4.75A2.75 2.75 0 0 0 10.5 2H10v1.5h.5c.69 0 1.25.56 1.25 1.25v1c0 .93.462 1.752 1.168 2.25a2.747 2.747 0 0 0-1.168 2.25v1c0 .69-.56 1.25-1.25 1.25H10V14h.5a2.75 2.75 0 0 0 2.75-2.75v-1c0-.69.56-1.25 1.25-1.25h.5V7h-.5c-.69 0-1.25-.56-1.25-1.25v-1Z"})})}const qe=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ue})));qe.displayName="BracketsCurlyIcon";function Xe(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1H5v1.5H2.5v11H5V15H1.75a.75.75 0 0 1-.75-.75V1.75Zm12.5.75H11V1h3.25a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H11v-1.5h2.5v-11Z",clipRule:"evenodd"})})}const Qe=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Xe})));Qe.displayName="BracketsSquareIcon";function Je(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#BracketsXIcon_svg__a)",children:[(0,V.Y)("path",{d:"M1.75 4.75A2.75 2.75 0 0 1 4.5 2H5v1.5h-.5c-.69 0-1.25.56-1.25 1.25v1c0 .93-.462 1.752-1.168 2.25a2.747 2.747 0 0 1 1.168 2.25v1c0 .69.56 1.25 1.25 1.25H5V14h-.5a2.75 2.75 0 0 1-2.75-2.75v-1C1.75 9.56 1.19 9 .5 9H0V7h.5c.69 0 1.25-.56 1.25-1.25v-1ZM11.5 2a2.75 2.75 0 0 1 2.75 2.75v1c0 .69.56 1.25 1.25 1.25h.5v2h-.5c-.69 0-1.25.56-1.25 1.25v1A2.75 2.75 0 0 1 11.5 14H11v-1.5h.5c.69 0 1.25-.56 1.25-1.25v-1c0-.93.462-1.752 1.168-2.25a2.747 2.747 0 0 1-1.168-2.25v-1c0-.69-.56-1.25-1.25-1.25H11V2h.5Z"}),(0,V.Y)("path",{d:"M4.97 6.03 6.94 8 4.97 9.97l1.06 1.06L8 9.06l1.97 1.97 1.06-1.06L9.06 8l1.97-1.97-1.06-1.06L8 6.94 6.03 4.97 4.97 6.03Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const eo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Je})));eo.displayName="BracketsXIcon";function oo(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 4a3 3 0 1 1 5.186 2.055 3.229 3.229 0 0 0 2 1.155 3.001 3.001 0 1 1-.152 1.494A4.73 4.73 0 0 1 4.911 6.86a2.982 2.982 0 0 1-.161.046v2.19a3.001 3.001 0 1 1-1.5 0v-2.19A3.001 3.001 0 0 1 1 4Zm3-1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM2.5 12a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm7-3.75a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z",clipRule:"evenodd"})})}const no=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:oo})));no.displayName="BranchIcon";var ro=no;function to(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5 4V2.75C5 1.784 5.784 1 6.75 1h2.5c.966 0 1.75.784 1.75 1.75V4h3.25a.75.75 0 0 1 .75.75v9.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75v-9.5A.75.75 0 0 1 1.75 4H5Zm1.5-1.25a.25.25 0 0 1 .25-.25h2.5a.25.25 0 0 1 .25.25V4h-3V2.75Zm-4 5.423V6.195A7.724 7.724 0 0 0 8 8.485c2.15 0 4.095-.875 5.5-2.29v1.978A9.211 9.211 0 0 1 8 9.985a9.21 9.21 0 0 1-5.5-1.812Z",clipRule:"evenodd"})})}const lo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:to})));lo.displayName="BriefcaseFillIcon";function io(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 4H5V2.75C5 1.784 5.784 1 6.75 1h2.5c.966 0 1.75.784 1.75 1.75V4h3.25a.75.75 0 0 1 .75.75v9.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75v-9.5A.75.75 0 0 1 1.75 4Zm5-1.5a.25.25 0 0 0-.25.25V4h3V2.75a.25.25 0 0 0-.25-.25h-2.5ZM2.5 8.173V13.5h11V8.173A9.211 9.211 0 0 1 8 9.985a9.21 9.21 0 0 1-5.5-1.812Zm0-1.978A7.724 7.724 0 0 0 8 8.485c2.15 0 4.095-.875 5.5-2.29V5.5h-11v.695Z",clipRule:"evenodd"})})}const ao=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:io})));ao.displayName="BriefcaseIcon";function co(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.5 0v2H1.75a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75H6v-1.5H2.5V7H15V2.75a.75.75 0 0 0-.75-.75H11.5V0H10v2H6V0H4.5Zm9 5.5v-2h-11v2h11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M10.25 10.5V12c0 .199.079.39.22.53l1 1 1.06-1.06-.78-.78V10.5h-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7 12a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z",clipRule:"evenodd"})]})}const so=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:co})));so.displayName="CalendarClockIcon";function ho(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8.5 10.25a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 2H6V0H4.5v2H1.75a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75H11.5V0H10v2ZM2.5 3.5v2h11v-2h-11Zm0 10V7h11v6.5h-11Z",clipRule:"evenodd"})]})}const uo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ho})));uo.displayName="CalendarEventIcon";function fo(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.5 0v2H1.75a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75H11.5V0H10v2H6V0H4.5Zm9 3.5v2h-11v-2h11ZM2.5 7v6.5h11V7h-11Z",clipRule:"evenodd"})})}const po=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:fo})));po.displayName="CalendarIcon";function vo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 10a.75.75 0 0 1-.59-.286l-2.164-2.75a.75.75 0 0 1 .589-1.214h4.33a.75.75 0 0 1 .59 1.214l-2.166 2.75A.75.75 0 0 1 8 10Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11h11v11h-11Z",clipRule:"evenodd"})]})}const go=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:vo})));go.displayName="CaretDownSquareIcon";var mo=go;function wo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 5.75a.75.75 0 0 1 .59.286l2.164 2.75A.75.75 0 0 1 10.165 10h-4.33a.75.75 0 0 1-.59-1.214l2.166-2.75A.75.75 0 0 1 8 5.75Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11h11v11h-11Z",clipRule:"evenodd"})]})}const xo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:wo})));xo.displayName="CaretUpSquareIcon";function bo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.5 13.25V4.792c.306.134.644.208 1 .208h8v1H13V.75a.75.75 0 0 0-.75-.75H3.5A2.5 2.5 0 0 0 1 2.5v10.75A2.75 2.75 0 0 0 3.75 16H4v-1.5h-.25c-.69 0-1.25-.56-1.25-1.25Zm9-9.75h-8a1 1 0 0 1 0-2h8v2Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.179 7a3.608 3.608 0 0 0-3.464 2.595 3.251 3.251 0 0 0 .443 6.387.756.756 0 0 0 .163.018h5.821C14.758 16 16 14.688 16 13.107c0-1.368-.931-2.535-2.229-2.824A3.608 3.608 0 0 0 10.18 7Zm-2.805 7.496c.015 0 .03.002.044.004H12.973a.736.736 0 0 1 .1-.002l.07.002c.753 0 1.357-.607 1.357-1.393s-.604-1.393-1.357-1.393h-.107a.75.75 0 0 1-.75-.75v-.357a2.107 2.107 0 0 0-4.199-.26.75.75 0 0 1-.698.656 1.75 1.75 0 0 0-.015 3.493Z",clipRule:"evenodd"})]})}const Yo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bo})));Yo.displayName="CatalogCloudIcon";function yo(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.75 0A2.75 2.75 0 0 0 2 2.75V13.5A2.5 2.5 0 0 0 4.5 16h8.75a.75.75 0 0 0 .75-.75V.75a.75.75 0 0 0-.75-.75h-8.5Zm7.75 11V1.5H4.75c-.69 0-1.25.56-1.25 1.25v8.458a2.492 2.492 0 0 1 1-.208h8Zm-9 2.5a1 1 0 0 0 1 1h8v-2h-8a1 1 0 0 0-1 1Z",clipRule:"evenodd"})})}const Ho=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:yo})));Ho.displayName="CatalogIcon";function Co(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M14.03.75v10.69l-1.5-1.5V1.5H4.78c-.2 0-.39.047-.558.131L3.136.545A2.738 2.738 0 0 1 4.78 0h8.5a.75.75 0 0 1 .75.75Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.03 3.56 1 2.53l1.06-1.06 13 13L14 15.53l-.017-.017a.75.75 0 0 1-.703.487H4.53a2.5 2.5 0 0 1-2.5-2.5V3.56Zm8.94 8.94 1.56 1.56v.44h-8a1 1 0 1 1 0-2h6.44ZM9.47 11H4.53c-.355 0-.693.074-1 .208V5.061L9.47 11Z",clipRule:"evenodd"})]})}const Ro=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Co})));Ro.displayName="CatalogOffIcon";function Zo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M1 1v13.25c0 .414.336.75.75.75H15v-1.5H2.5V1H1Z"}),(0,V.Y)("path",{fill:"currentColor",d:"m15.03 5.03-1.06-1.06L9.5 8.44 7 5.94 3.47 9.47l1.06 1.06L7 8.06l2.5 2.5 5.53-5.53Z"})]})}const Io=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Zo})));Io.displayName="ChartLineIcon";function Mo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"m10.47 5.47 1.06 1.06L7 11.06 4.47 8.53l1.06-1.06L7 8.94l3.47-3.47ZM16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M1.5 8a6.5 6.5 0 0 1 13-.084c.54.236 1.031.565 1.452.967a8 8 0 1 0-7.07 7.07 5.008 5.008 0 0 1-.966-1.454A6.5 6.5 0 0 1 1.5 8Z"})]})}const Ao=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Mo})));Ao.displayName="CheckCircleBadgeIcon";function Vo(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm11.53-1.47-1.06-1.06L7 8.94 5.53 7.47 4.47 8.53l2 2 .53.53.53-.53 4-4Z",clipRule:"evenodd"})})}const ko=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Vo})));ko.displayName="CheckCircleFillIcon";var Do=ko;function Bo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M11.53 6.53 7 11.06 4.47 8.53l1.06-1.06L7 8.94l3.47-3.47 1.06 1.06Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z",clipRule:"evenodd"})]})}const So=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Bo})));So.displayName="CheckCircleIcon";var $o=So;function Po(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M15.06 2.06 14 1 5.53 9.47 2.06 6 1 7.06l4.53 4.531 9.53-9.53ZM1.03 15.03h14v-1.5h-14v1.5Z",clipRule:"evenodd"})})}const Lo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Po})));Lo.displayName="CheckLineIcon";function No(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M1.75 2a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h11.5a.75.75 0 0 0 .75-.75V9h-1.5v4.5h-10v-10H10V2H1.75Z"}),(0,V.Y)("path",{fill:"currentColor",d:"m15.03 4.03-1.06-1.06L7.5 9.44 5.53 7.47 4.47 8.53l3.03 3.03 7.53-7.53Z"})]})}const Fo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:No})));Fo.displayName="CheckboxIcon";function To(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"m5.5 2 1.06 1.06-3.53 3.531L1 4.561 2.06 3.5l.97.97L5.5 2ZM15.03 4.53h-7v-1.5h7v1.5ZM1.03 14.53v-1.5h14v1.5h-14ZM8.03 9.53h7v-1.5h-7v1.5ZM6.56 8.06 5.5 7 3.03 9.47l-.97-.97L1 9.56l2.03 2.031 3.53-3.53Z"})})}const zo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:To})));zo.displayName="ChecklistIcon";function _o(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M10.947 7.954 8 10.891 5.056 7.954 3.997 9.016l4.004 3.993 4.005-3.993-1.06-1.062Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M10.947 3.994 8 6.931 5.056 3.994 3.997 5.056 8.001 9.05l4.005-3.993-1.06-1.062Z"})]})}const Oo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:_o})));Oo.displayName="ChevronDoubleDownIcon";var Eo=Oo;function Wo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8.047 10.944 5.11 8l2.937-2.944-1.062-1.06L2.991 8l3.994 4.003 1.062-1.06Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M12.008 10.944 9.07 8l2.938-2.944-1.062-1.06L6.952 8l3.994 4.003 1.062-1.06Z"})]})}const jo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Wo})));jo.displayName="ChevronDoubleLeftIcon";function Go(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"m7.954 5.056 2.937 2.946-2.937 2.945 1.062 1.059L13.01 8 9.016 3.998l-1.062 1.06Z"}),(0,V.Y)("path",{fill:"currentColor",d:"m3.994 5.056 2.937 2.946-2.937 2.945 1.062 1.059L9.05 8 5.056 3.998l-1.062 1.06Z"})]})}const Ko=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Go})));Ko.displayName="ChevronDoubleRightIcon";function Uo(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M5.056 8.047 8 5.11l2.944 2.937 1.06-1.062L8 2.991 3.997 6.985l1.059 1.062Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M5.056 12.008 8 9.07l2.944 2.937 1.06-1.062L8 6.952l-4.003 3.994 1.059 1.062Z"})]})}const qo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Uo})));qo.displayName="ChevronDoubleUpIcon";var Xo=qo;function Qo(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 8.917 10.947 6 12 7.042 8 11 4 7.042 5.053 6 8 8.917Z",clipRule:"evenodd"})})}const Jo=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Qo})));Jo.displayName="ChevronDownIcon";var en=Jo;function on(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 7.083 5.053 10 4 8.958 8 5l4 3.958L10.947 10 8 7.083Z",clipRule:"evenodd"})})}const nn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:on})));nn.displayName="ChevronUpIcon";var rn=nn;function tn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M12.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z"})})}const ln=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:tn})));ln.displayName="CircleIcon";function an(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.5 0a.75.75 0 0 0-.75.75V1h-2a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75h-2V.75A.75.75 0 0 0 10.5 0h-5Zm5.75 2.5v.75a.75.75 0 0 1-.75.75h-5a.75.75 0 0 1-.75-.75V2.5H3.5v11h9v-11h-1.25Zm-5 0v-1h3.5v1h-3.5Z",clipRule:"evenodd"})})}const cn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:an})));cn.displayName="ClipboardIcon";function dn(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 4v4c0 .199.079.39.22.53l2 2 1.06-1.06-1.78-1.78V4h-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z",clipRule:"evenodd"})]})}const sn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:dn})));sn.displayName="ClockIcon";var hn=sn;function un(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 1.5a6.5 6.5 0 0 0-5.07 10.57l-1.065 1.065A8 8 0 1 1 15.418 11h-1.65A6.5 6.5 0 0 0 8 1.5Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M7.25 8V4h1.5v3.25H11v1.5H8A.75.75 0 0 1 7.25 8Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4 13a3 3 0 0 1 5.959-.5h4.291a.75.75 0 0 1 .75.75V16h-1.5v-2h-1v2H11v-2H9.83A3.001 3.001 0 0 1 4 13Zm3-1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",clipRule:"evenodd"})]})}const fn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:un})));fn.displayName="ClockKeyIcon";function pn(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 2a4.752 4.752 0 0 0-4.606 3.586 4.251 4.251 0 0 0 .427 8.393A.75.75 0 0 0 4 14v-1.511a2.75 2.75 0 0 1 .077-5.484.75.75 0 0 0 .697-.657 3.25 3.25 0 0 1 6.476.402v.5c0 .414.336.75.75.75h.25a2.25 2.25 0 1 1-.188 4.492.75.75 0 0 0-.062-.002V14a.757.757 0 0 0 .077-.004 3.75 3.75 0 0 0 .668-7.464A4.75 4.75 0 0 0 8 2Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M7.25 11.19 5.03 8.97l-1.06 1.06L8 14.06l4.03-4.03-1.06-1.06-2.22 2.22V6h-1.5v5.19Z"})]})}const vn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:pn})));vn.displayName="CloudDownloadIcon";function gn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.394 5.586a4.752 4.752 0 0 1 9.351.946 3.75 3.75 0 0 1-.668 7.464A.757.757 0 0 1 12 14H4a.75.75 0 0 1-.179-.021 4.25 4.25 0 0 1-.427-8.393Zm.72 6.914h7.762a.745.745 0 0 1 .186-.008A2.25 2.25 0 1 0 12.25 8H12a.75.75 0 0 1-.75-.75v-.5a3.25 3.25 0 0 0-6.476-.402.75.75 0 0 1-.697.657 2.75 2.75 0 0 0-.024 5.488.74.74 0 0 1 .062.007Z",clipRule:"evenodd"})})}const mn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:gn})));mn.displayName="CloudIcon";function wn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.394 5.586a4.752 4.752 0 0 1 9.351.946A3.754 3.754 0 0 1 15.787 9H14.12a2.248 2.248 0 0 0-1.871-1H12a.75.75 0 0 1-.75-.75v-.5a3.25 3.25 0 0 0-6.476-.402.75.75 0 0 1-.697.657A2.75 2.75 0 0 0 4 12.49V14a.75.75 0 0 1-.179-.021 4.25 4.25 0 0 1-.427-8.393ZM15.25 10.5h-4.291a3 3 0 1 0-.13 1.5H12v2h1.5v-2h1v2H16v-2.75a.75.75 0 0 0-.75-.75ZM8 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",clipRule:"evenodd"})})}const xn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:wn})));xn.displayName="CloudKeyIcon";function bn(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M3.394 5.586a4.752 4.752 0 0 1 9.351.946A3.754 3.754 0 0 1 15.787 9H14.12a2.248 2.248 0 0 0-1.871-1H12a.75.75 0 0 1-.75-.75v-.5a3.25 3.25 0 0 0-6.476-.402.75.75 0 0 1-.697.657A2.75 2.75 0 0 0 4 12.49V14a.75.75 0 0 1-.179-.021 4.25 4.25 0 0 1-.427-8.393Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 7a2.25 2.25 0 0 1 2.03 3.22l.5.5a2.25 2.25 0 1 1-1.06 1.06l-.5-.5A2.25 2.25 0 1 1 8 7Zm.75 2.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm3.5 3.5a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z",clipRule:"evenodd"})]})}const Yn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bn})));Yn.displayName="CloudModelIcon";function yn(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.97 14.53 2.47 3.03l-1 1 1.628 1.628a4.252 4.252 0 0 0 .723 8.32A.75.75 0 0 0 4 14h7.44l1.53 1.53 1-1ZM4.077 7.005a.748.748 0 0 0 .29-.078L9.939 12.5H4.115a.74.74 0 0 0-.062-.007 2.75 2.75 0 0 1 .024-5.488Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M4.8 3.24a4.75 4.75 0 0 1 7.945 3.293 3.75 3.75 0 0 1 1.928 6.58l-1.067-1.067A2.25 2.25 0 0 0 12.25 8H12a.75.75 0 0 1-.75-.75v-.5a3.25 3.25 0 0 0-5.388-2.448L4.8 3.239Z"})]})}const Hn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:yn})));Hn.displayName="CloudOffIcon";function Cn(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 2a4.752 4.752 0 0 0-4.606 3.586 4.251 4.251 0 0 0 .427 8.393A.75.75 0 0 0 4 14v-1.511a2.75 2.75 0 0 1 .077-5.484.75.75 0 0 0 .697-.657 3.25 3.25 0 0 1 6.476.402v.5c0 .414.336.75.75.75h.25a2.25 2.25 0 1 1-.188 4.492.75.75 0 0 0-.062-.002V14a.757.757 0 0 0 .077-.004 3.75 3.75 0 0 0 .668-7.464A4.75 4.75 0 0 0 8 2Z"}),(0,V.Y)("path",{fill:"currentColor",d:"m8.75 8.81 2.22 2.22 1.06-1.06L8 5.94 3.97 9.97l1.06 1.06 2.22-2.22V14h1.5V8.81Z"})]})}const Rn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Cn})));Rn.displayName="CloudUploadIcon";function Zn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M4.03 12.06 5.091 11l-2.97-2.97 2.97-2.97L4.031 4 0 8.03l4.03 4.03ZM12.091 4l4.03 4.03-4.03 4.03-1.06-1.06L14 8.03l-2.97-2.97L12.091 4Z"})})}const In=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Zn})));In.displayName="CodeIcon";function Mn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.5 1v1.59l4.88 4.88a.75.75 0 0 1 0 1.06l-4.242 4.243a2.75 2.75 0 0 1-3.89 0l-2.421-2.422a2.75 2.75 0 0 1 0-3.889L6 2.29V1h1.5ZM6 8V4.41L2.888 7.524a1.25 1.25 0 0 0 0 1.768l2.421 2.421a1.25 1.25 0 0 0 1.768 0L10.789 8 7.5 4.71V8H6Zm7.27 1.51a.76.76 0 0 0-1.092.001 8.53 8.53 0 0 0-1.216 1.636c-.236.428-.46.953-.51 1.501-.054.576.083 1.197.587 1.701a2.385 2.385 0 0 0 3.372 0c.505-.504.644-1.126.59-1.703-.05-.55-.274-1.075-.511-1.503a8.482 8.482 0 0 0-1.22-1.633Zm-.995 2.363c.138-.25.3-.487.451-.689.152.201.313.437.452.687.19.342.306.657.33.913.02.228-.03.377-.158.505a.885.885 0 0 1-1.25 0c-.125-.125-.176-.272-.155-.501.024-.256.14-.572.33-.915Z",clipRule:"evenodd"})})}const An=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Mn})));An.displayName="ColorFillIcon";function Vn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.5 9V6h3v3h-3Zm3 1.5v3h-3v-3h3Zm1.5-.75v-9a.75.75 0 0 0-.75-.75h-4.5A.75.75 0 0 0 5 .75v13.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-4.5ZM6.5 4.5v-3h3v3h-3Z",clipRule:"evenodd"})})}const kn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Vn})));kn.displayName="ColumnIcon";function Dn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V1.75ZM2.5 13.5v-11H5v11H2.5Zm4 0h3v-11h-3v11Zm4.5-11v11h2.5v-11H11Z",clipRule:"evenodd"})})}const Bn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Dn})));Bn.displayName="ColumnsIcon";var Sn=Bn;function $n(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.78 3.97 5.03 1.22a.75.75 0 0 0-1.06 0L1.22 3.97a.75.75 0 0 0 0 1.06l2.75 2.75a.75.75 0 0 0 1.06 0l2.75-2.75a.75.75 0 0 0 0-1.06Zm-1.59.53L4.5 6.19 2.81 4.5 4.5 2.81 6.19 4.5ZM15 11.75a3.25 3.25 0 1 0-6.5 0 3.25 3.25 0 0 0 6.5 0ZM11.75 10a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M14.25 1H9v1.5h4.5V7H15V1.75a.75.75 0 0 0-.75-.75ZM1 9v5.25c0 .414.336.75.75.75H7v-1.5H2.5V9H1Z"})]})}const Pn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:$n})));Pn.displayName="ConnectIcon";function Ln(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75H5v3.25c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75H11V1.75a.75.75 0 0 0-.75-.75h-8.5ZM9.5 5V2.5h-7v7H5V5.75A.75.75 0 0 1 5.75 5H9.5Zm-3 8.5v-7h7v7h-7Z",clipRule:"evenodd"})})}const Nn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ln})));Nn.displayName="CopyIcon";var Fn=Nn;function Tn(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 3.75h1c.69 0 1.25.56 1.25 1.25v6c0 .69-.56 1.25-1.25 1.25H8v1.5h1c.788 0 1.499-.331 2-.863a2.742 2.742 0 0 0 2 .863h1v-1.5h-1c-.69 0-1.25-.56-1.25-1.25V5c0-.69.56-1.25 1.25-1.25h1v-1.5h-1c-.788 0-1.499.331-2 .863a2.742 2.742 0 0 0-2-.863H8v1.5Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M5.936 8.003 3 5.058 4.062 4l3.993 4.004-3.993 4.005L3 10.948l2.936-2.945Z"})]})}const zn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Tn})));zn.displayName="CursorTypeIcon";function _n(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 1.75A.75.75 0 0 1 8.75 1h5.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-5.5A.75.75 0 0 1 8 5.25v-1H5.5c-.69 0-1.25.56-1.25 1.25h2a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-2c0 .69.56 1.25 1.25 1.25H8v-1a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1-.75-.75v-1H5.5a2.75 2.75 0 0 1-2.75-2.75h-2A.75.75 0 0 1 0 9.75v-3.5a.75.75 0 0 1 .75-.75h2A2.75 2.75 0 0 1 5.5 2.75H8v-1Zm1.5.75v2h4v-2h-4ZM1.5 9V7h4v2h-4Zm8 4.5v-2h4v2h-4Z",clipRule:"evenodd"})})}const On=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:_n})));On.displayName="DagIcon";function En(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.75 4.5a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75h2a3.5 3.5 0 1 0 0-7h-2ZM6.5 10V6h1.25a2 2 0 1 1 0 4H6.5Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11h11v11h-11Z",clipRule:"evenodd"})]})}const Wn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:En})));Wn.displayName="DIcon";function jn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.78 11.533-4.242 4.243a.75.75 0 0 1-.53.22H4.996a.75.75 0 0 1-.53-.22L.224 11.533a.75.75 0 0 1-.22-.53v-6.01a.75.75 0 0 1 .22-.53L4.467.22a.75.75 0 0 1 .53-.22h6.01a.75.75 0 0 1 .53.22l4.243 4.242c.141.141.22.332.22.53v6.011a.75.75 0 0 1-.22.53Zm-8.528-.785a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm1.5-5.75v4h-1.5v-4h1.5Z",clipRule:"evenodd"})})}const Gn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:jn})));Gn.displayName="DangerFillIcon";var Kn=Gn;function Un(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M15 8.75H1v-1.5h14v1.5Z",clipRule:"evenodd"})})}const qn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Un})));qn.displayName="DashIcon";function Xn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V1.75Zm1.5 8.75v3h4.75v-3H2.5Zm0-1.5h4.75V2.5H2.5V9Zm6.25-6.5v3h4.75v-3H8.75Zm0 11V7h4.75v6.5H8.75Z",clipRule:"evenodd"})})}const Qn=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Xn})));Qn.displayName="DashboardIcon";function Jn(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.646.368a.75.75 0 0 0-1.292 0l-3.25 5.5A.75.75 0 0 0 4.75 7h6.5a.75.75 0 0 0 .646-1.132l-3.25-5.5ZM8 2.224 9.936 5.5H6.064L8 2.224ZM8.5 9.25a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-.75.75h-5a.75.75 0 0 1-.75-.75v-5ZM10 10v3.5h3.5V10H10ZM1 11.75a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM4.25 10a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Z",clipRule:"evenodd"})})}const er=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Jn})));er.displayName="DataIcon";function or(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.727 3.695c-.225.192-.227.298-.227.305 0 .007.002.113.227.305.223.19.59.394 1.108.58C4.865 5.256 6.337 5.5 8 5.5c1.663 0 3.135-.244 4.165-.615.519-.186.885-.39 1.108-.58.225-.192.227-.298.227-.305 0-.007-.002-.113-.227-.305-.223-.19-.59-.394-1.108-.58C11.135 2.744 9.663 2.5 8 2.5c-1.663 0-3.135.244-4.165.615-.519.186-.885.39-1.108.58ZM13.5 5.94a6.646 6.646 0 0 1-.826.358C11.442 6.74 9.789 7 8 7c-1.79 0-3.442-.26-4.673-.703a6.641 6.641 0 0 1-.827-.358V8c0 .007.002.113.227.305.223.19.59.394 1.108.58C4.865 9.256 6.337 9.5 8 9.5c1.663 0 3.135-.244 4.165-.615.519-.186.885-.39 1.108-.58.225-.192.227-.298.227-.305V5.939ZM15 8V4c0-.615-.348-1.1-.755-1.447-.41-.349-.959-.63-1.571-.85C11.442 1.26 9.789 1 8 1c-1.79 0-3.442.26-4.673.703-.613.22-1.162.501-1.572.85C1.348 2.9 1 3.385 1 4v8c0 .615.348 1.1.755 1.447.41.349.959.63 1.572.85C4.558 14.74 6.21 15 8 15c1.79 0 3.441-.26 4.674-.703.612-.22 1.161-.501 1.571-.85.407-.346.755-.832.755-1.447V8Zm-1.5 1.939a6.654 6.654 0 0 1-.826.358C11.442 10.74 9.789 11 8 11c-1.79 0-3.442-.26-4.673-.703a6.649 6.649 0 0 1-.827-.358V12c0 .007.002.113.227.305.223.19.59.394 1.108.58 1.03.371 2.502.615 4.165.615 1.663 0 3.135-.244 4.165-.615.519-.186.885-.39 1.108-.58.225-.192.227-.298.227-.305V9.939Z",clipRule:"evenodd"})})}const nr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:or})));nr.displayName="DatabaseIcon";function rr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3 10a3 3 0 1 0 6 0V6a3 3 0 0 0-6 0v4Zm3 1.5A1.5 1.5 0 0 1 4.5 10V6a1.5 1.5 0 1 1 3 0v4A1.5 1.5 0 0 1 6 11.5ZM10 10a3 3 0 1 0 6 0V6a3 3 0 1 0-6 0v4Zm3 1.5a1.5 1.5 0 0 1-1.5-1.5V6a1.5 1.5 0 0 1 3 0v4a1.5 1.5 0 0 1-1.5 1.5Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M1 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})]})}const tr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:rr})));tr.displayName="DecimalIcon";function lr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#DotsCircleIcon_svg__a)",children:[(0,V.Y)("path",{d:"M6 8a.75.75 0 1 1-1.5 0A.75.75 0 0 1 6 8ZM8 8.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM10.75 8.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"}),(0,V.Y)("path",{fillRule:"evenodd",d:"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z",clipRule:"evenodd"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const ir=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:lr})));ir.displayName="DotsCircleIcon";function ar(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 13.5h14V15H1v-1.5ZM12.53 6.53l-1.06-1.06-2.72 2.72V1h-1.5v7.19L4.53 5.47 3.47 6.53 8 11.06l4.53-4.53Z"})})}const cr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ar})));cr.displayName="DownloadIcon";var dr=cr;function sr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M5.25 1a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM10.75 1a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM5.25 6.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM10.75 6.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM5.25 11.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM10.75 11.5a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Z"})})}const hr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:sr})));hr.displayName="DragIcon";var ur=hr;function fr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("mask",{id:"ERDIcon_svg__a",width:6,height:5,x:10,y:1,maskUnits:"userSpaceOnUse",style:{maskType:"luminance"},children:(0,V.Y)("path",{fill:"#fff",d:"M11.25 6h4a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("g",{mask:"url(#ERDIcon_svg__a)",children:(0,V.Y)("path",{stroke:"currentColor",strokeWidth:3,d:"M11.25 6h4a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("mask",{id:"ERDIcon_svg__b",width:6,height:5,x:10,y:10,maskUnits:"userSpaceOnUse",style:{maskType:"luminance"},children:(0,V.Y)("path",{fill:"#fff",d:"M11.25 15h4a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("g",{mask:"url(#ERDIcon_svg__b)",children:(0,V.Y)("path",{stroke:"currentColor",strokeWidth:3,d:"M11.25 15h4a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("mask",{id:"ERDIcon_svg__c",width:6,height:5,x:0,y:1,maskUnits:"userSpaceOnUse",style:{maskType:"luminance"},children:(0,V.Y)("path",{fill:"#fff",d:"M.75 6h4a.75.75 0 0 0 .75-.75v-3.5A.75.75 0 0 0 4.75 1h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("g",{mask:"url(#ERDIcon_svg__c)",children:(0,V.Y)("path",{stroke:"currentColor",strokeWidth:3,d:"M.75 6h4a.75.75 0 0 0 .75-.75v-3.5A.75.75 0 0 0 4.75 1h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("mask",{id:"ERDIcon_svg__d",width:6,height:5,x:0,y:10,maskUnits:"userSpaceOnUse",style:{maskType:"luminance"},children:(0,V.Y)("path",{fill:"#fff",d:"M.75 15h4a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("g",{mask:"url(#ERDIcon_svg__d)",children:(0,V.Y)("path",{stroke:"currentColor",strokeWidth:3,d:"M.75 15h4a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("mask",{id:"ERDIcon_svg__e",width:6,height:6,x:5,y:5,maskUnits:"userSpaceOnUse",style:{maskType:"luminance"},children:(0,V.Y)("path",{fill:"#fff",d:"M6 10.5h4a.75.75 0 0 0 .75-.75v-3.5A.75.75 0 0 0 10 5.5H6a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("g",{mask:"url(#ERDIcon_svg__e)",children:(0,V.Y)("path",{stroke:"currentColor",strokeWidth:3,d:"M6 10.5h4a.75.75 0 0 0 .75-.75v-3.5A.75.75 0 0 0 10 5.5H6a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75Z"})}),(0,V.Y)("path",{stroke:"currentColor",strokeWidth:1.5,d:"M11.5 11 9.75 9.5M4.5 5l1.75 1.5M11.5 5 9.75 6.5M4.5 11l1.75-1.5"})]})}const pr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:fr})));pr.displayName="ErdIcon";function vr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 17",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M12.06 1.06 11 0 8.03 2.97 5.06 0 4 1.06l4.03 4.031 4.03-4.03ZM4 15l4.03-4.03L12.06 15 11 16.06l-2.97-2.969-2.97 2.97L4 15Z"})})}const gr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:vr})));gr.displayName="ExpandLessIcon";function mr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 17",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"m4 4.03 1.06 1.061 2.97-2.97L11 5.091l1.06-1.06L8.03 0 4 4.03ZM12.06 12.091l-4.03 4.03L4 12.091l1.06-1.06L8.03 14 11 11.03l1.06 1.061Z"})})}const wr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:mr})));wr.displayName="ExpandMoreIcon";function xr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 17",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 1.75A.75.75 0 0 1 2.75 1h6a.75.75 0 0 1 .53.22l4.5 4.5c.141.14.22.331.22.53V10h-1.5V7H8.75A.75.75 0 0 1 8 6.25V2.5H3.5V16H2V1.75Zm7.5 1.81 1.94 1.94H9.5V3.56Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M7.47 9.97 4.44 13l3.03 3.03 1.06-1.06L6.56 13l1.97-1.97-1.06-1.06ZM11.03 9.97l-1.06 1.06L11.94 13l-1.97 1.97 1.06 1.06L14.06 13l-3.03-3.03Z"})]})}const br=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:xr})));br.displayName="FileCodeIcon";function Yr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 1.75A.75.75 0 0 1 2.75 1h6a.75.75 0 0 1 .53.22l4.5 4.5c.141.14.22.331.22.53V10h-1.5V7H8.75A.75.75 0 0 1 8 6.25V2.5H3.5V16H2V1.75Zm7.5 1.81 1.94 1.94H9.5V3.56Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M5 11.5V13h9v-1.5H5ZM14 16H5v-1.5h9V16Z"})]})}const yr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Yr})));yr.displayName="FileDocumentIcon";function Hr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 1.75A.75.75 0 0 1 2.75 1h6a.75.75 0 0 1 .53.22l4.5 4.5c.141.14.22.331.22.53v9a.75.75 0 0 1-.75.75H2.75a.75.75 0 0 1-.75-.75V1.75Zm1.5.75v12h9V7H8.75A.75.75 0 0 1 8 6.25V2.5H3.5Zm6 1.06 1.94 1.94H9.5V3.56Z",clipRule:"evenodd"})})}const Cr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Hr})));Cr.displayName="FileIcon";function Rr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 1.75A.75.75 0 0 1 2.75 1h6a.75.75 0 0 1 .53.22l4.5 4.5c.141.14.22.331.22.53V10h-1.5V7H8.75A.75.75 0 0 1 8 6.25V2.5H3.5V16H2V1.75Zm7.5 1.81 1.94 1.94H9.5V3.56Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.466 10a.75.75 0 0 0-.542.27l-3.75 4.5A.75.75 0 0 0 6.75 16h6.5a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.22-.53l-2.75-2.75a.75.75 0 0 0-.564-.22Zm2.034 3.81v.69H8.351l2.2-2.639 1.949 1.95ZM6.5 7.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM5.75 9.5a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})]})}const Zr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Rr})));Zr.displayName="FileImageIcon";function Ir(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.75 1a.75.75 0 0 0-.75.75V16h1.5V2.5H8v3.75c0 .414.336.75.75.75h3.75v3H14V6.25a.75.75 0 0 0-.22-.53l-4.5-4.5A.75.75 0 0 0 8.75 1h-6Zm8.69 4.5L9.5 3.56V5.5h1.94Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.75 11.5a2.25 2.25 0 1 1-2.03 1.28l-.5-.5a2.25 2.25 0 1 1 1.06-1.06l.5.5c.294-.141.623-.22.97-.22Zm.75 2.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0ZM8.25 9.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z",clipRule:"evenodd"})]})}const Mr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ir})));Mr.displayName="FileModelIcon";function Ar(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75V4a.75.75 0 0 1-.22.53L10 9.31v4.94a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1-.75-.75V9.31L1.22 4.53A.75.75 0 0 1 1 4V1.75Zm1.5.75v1.19l4.78 4.78c.141.14.22.331.22.53v4.5h1V9a.75.75 0 0 1 .22-.53l4.78-4.78V2.5h-11Z",clipRule:"evenodd"})})}const Vr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ar})));Vr.displayName="FilterIcon";var kr=Vr;function Dr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M0 5.25A2.25 2.25 0 0 0 2.25 3h1.5v8.5H6V13H0v-1.5h2.25V6c-.627.471-1.406.75-2.25.75v-1.5ZM10 5.75A2.75 2.75 0 0 1 12.75 3h.39a2.86 2.86 0 0 1 1.57 5.252l-2.195 1.44a2.25 2.25 0 0 0-1.014 1.808H16V13h-6v-1.426a3.75 3.75 0 0 1 1.692-3.135l2.194-1.44A1.36 1.36 0 0 0 13.14 4.5h-.389c-.69 0-1.25.56-1.25 1.25V6H10v-.25ZM8 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"})})}const Br=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Dr})));Br.displayName="FloatIcon";function Sr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 2.75A.75.75 0 0 1 .75 2h3.922c.729 0 1.428.29 1.944.805L7.811 4h7.439a.75.75 0 0 1 .75.75V8h-1.5V5.5h-7a.75.75 0 0 1-.53-.22L5.555 3.866a1.25 1.25 0 0 0-.883-.366H1.5v9H5V14H.75a.75.75 0 0 1-.75-.75V2.75ZM9 8.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM7 9a2 2 0 1 1 3.778.917c.376.58.888 1.031 1.414 1.227a2 2 0 1 1-.072 1.54c-.977-.207-1.795-.872-2.37-1.626v1.087a2 2 0 1 1-1.5 0v-1.29A2 2 0 0 1 7 9Zm7 2.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Zm-5 2a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z",clipRule:"evenodd"})})}const $r=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Sr})));$r.displayName="FolderBranchIcon";var Pr=$r;function Lr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#FolderCloudFilledIcon_svg__a)",children:[(0,V.Y)("path",{d:"M0 2.75A.75.75 0 0 1 .75 2h3.922c.729 0 1.428.29 1.944.805L7.811 4h7.439a.75.75 0 0 1 .75.75v5.02a4.4 4.4 0 0 0-.921-.607 5.11 5.11 0 0 0-9.512-.753A4.75 4.75 0 0 0 2.917 14H.75a.75.75 0 0 1-.75-.75V2.75Z"}),(0,V.Y)("path",{fillRule:"evenodd",d:"M6.715 9.595a3.608 3.608 0 0 1 7.056.688C15.07 10.572 16 11.739 16 13.107 16 14.688 14.757 16 13.143 16a2.795 2.795 0 0 1-.107 0H7.32a.757.757 0 0 1-.163-.018 3.25 3.25 0 0 1-.443-6.387Zm.703 4.905a1.75 1.75 0 0 1-.03-3.497.75.75 0 0 0 .7-.657 2.108 2.108 0 0 1 4.198.261v.357c0 .415.335.75.75.75h.107c.753 0 1.357.607 1.357 1.393s-.604 1.393-1.357 1.393c-.024 0-.047 0-.07-.002a.736.736 0 0 0-.1.002H7.418Z",clipRule:"evenodd"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Nr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Lr})));Nr.displayName="FolderCloudFilledIcon";function Fr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#FolderCloudIcon_svg__a)",children:[(0,V.Y)("path",{d:"M.75 2a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75H3v-1.5H1.5v-9h3.172c.331 0 .649.132.883.366L6.97 5.28c.14.141.331.22.53.22h7V8H16V4.75a.75.75 0 0 0-.75-.75H7.81L6.617 2.805A2.75 2.75 0 0 0 4.672 2H.75Z"}),(0,V.Y)("path",{fillRule:"evenodd",d:"M10.179 7a3.608 3.608 0 0 0-3.464 2.595 3.251 3.251 0 0 0 .443 6.387.757.757 0 0 0 .163.018h5.821C14.758 16 16 14.688 16 13.107c0-1.368-.931-2.535-2.229-2.824A3.608 3.608 0 0 0 10.18 7Zm-2.805 7.496c.015 0 .03.002.044.004h5.555a.736.736 0 0 1 .1-.002l.07.002c.753 0 1.357-.607 1.357-1.393s-.604-1.393-1.357-1.393h-.107a.75.75 0 0 1-.75-.75v-.357a2.107 2.107 0 0 0-4.199-.26.75.75 0 0 1-.698.656 1.75 1.75 0 0 0-.015 3.493Z",clipRule:"evenodd"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Tr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Fr})));Tr.displayName="FolderCloudIcon";function zr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M.75 2a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h14.5a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75H7.81L6.617 2.805A2.75 2.75 0 0 0 4.672 2H.75Z"})})}const _r=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:zr})));_r.displayName="FolderFillIcon";function Or(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 2.75A.75.75 0 0 1 .75 2h3.922c.729 0 1.428.29 1.944.805L7.811 4h7.439a.75.75 0 0 1 .75.75v8.5a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1-.75-.75V2.75Zm1.5.75v9h13v-7h-7a.75.75 0 0 1-.53-.22L5.555 3.866a1.25 1.25 0 0 0-.883-.366H1.5Z",clipRule:"evenodd"})})}const Er=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Or})));Er.displayName="FolderIcon";function Wr(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#FontIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.197 3.473a.75.75 0 0 0-1.393-.001L-.006 13H1.61l.6-1.5h4.562l.596 1.5h1.614L5.197 3.473ZM6.176 10 4.498 5.776 2.809 10h3.367Zm4.07-2.385c.593-.205 1.173-.365 1.754-.365a1.5 1.5 0 0 1 1.42 1.014A3.764 3.764 0 0 0 12 8c-.741 0-1.47.191-2.035.607A2.301 2.301 0 0 0 9 10.5c0 .81.381 1.464.965 1.893.565.416 1.294.607 2.035.607.524 0 1.042-.096 1.5-.298V13H15V8.75a3 3 0 0 0-3-3c-.84 0-1.614.23-2.245.448l.49 1.417ZM13.5 10.5a.804.804 0 0 0-.353-.685C12.897 9.631 12.5 9.5 12 9.5c-.5 0-.897.131-1.146.315a.804.804 0 0 0-.354.685c0 .295.123.515.354.685.25.184.645.315 1.146.315.502 0 .897-.131 1.147-.315.23-.17.353-.39.353-.685Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const jr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Wr})));jr.displayName="FontIcon";function Gr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 2.75a2.75 2.75 0 1 1 3.5 2.646V6.75h3.75A2.75 2.75 0 0 1 12 9.5v.104a2.751 2.751 0 1 1-1.5 0V9.5c0-.69-.56-1.25-1.25-1.25H5.5v1.354a2.751 2.751 0 1 1-1.5 0V5.396A2.751 2.751 0 0 1 2 2.75ZM4.75 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM3.5 12.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm6.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z",clipRule:"evenodd"})})}const Kr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Gr})));Kr.displayName="ForkIcon";function Ur(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M6 1v4.25a.75.75 0 0 1-.75.75H1V4.5h3.5V1H6ZM10 15v-4.25a.75.75 0 0 1 .75-.75H15v1.5h-3.5V15H10ZM10.75 6H15V4.5h-3.5V1H10v4.25c0 .414.336.75.75.75ZM1 10h4.25a.75.75 0 0 1 .75.75V15H4.5v-3.5H1V10Z"})})}const qr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ur})));qr.displayName="FullscreenExitIcon";function Xr(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M6 1H1.75a.75.75 0 0 0-.75.75V6h1.5V2.5H6V1ZM10 2.5V1h4.25a.75.75 0 0 1 .75.75V6h-1.5V2.5H10ZM10 13.5h3.5V10H15v4.25a.75.75 0 0 1-.75.75H10v-1.5ZM2.5 10v3.5H6V15H1.75a.75.75 0 0 1-.75-.75V10h1.5Z"})})}const Qr=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Xr})));Qr.displayName="FullscreenIcon";var Jr=Qr;function et(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#FunctionIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.93 2.988c-.774-.904-2.252-.492-2.448.682L7.094 6h2.005a2.75 2.75 0 0 1 2.585 1.81l.073.202 2.234-2.063 1.018 1.102-2.696 2.489.413 1.137c.18.494.65.823 1.175.823H15V13h-1.1a2.75 2.75 0 0 1-2.585-1.81l-.198-.547-2.61 2.408-1.017-1.102 3.07-2.834-.287-.792A1.25 1.25 0 0 0 9.099 7.5H6.844l-.846 5.076c-.405 2.43-3.464 3.283-5.067 1.412l1.139-.976c.774.904 2.252.492 2.448-.682l.805-4.83H3V6h2.573l.43-2.576C6.407.994 9.465.14 11.068 2.012l-1.138.976Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M16 0H0v16h16z"})})})]})}const ot=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:et})));ot.displayName="FunctionIcon";function nt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.965 0c-.34 0-.675.021-1.004.063a.75.75 0 0 0-.62.51l-.639 1.946c-.21.087-.413.185-.61.294L3.172 2.1a.75.75 0 0 0-.784.165c-.481.468-.903.996-1.255 1.572a.75.75 0 0 0 .013.802l1.123 1.713a5.898 5.898 0 0 0-.15.66L.363 8.07a.75.75 0 0 0-.36.716c.067.682.22 1.34.447 1.962a.75.75 0 0 0 .635.489l2.042.19c.13.184.271.36.422.529l-.27 2.032a.75.75 0 0 0 .336.728 7.97 7.97 0 0 0 1.812.874.75.75 0 0 0 .778-.192l1.422-1.478a5.924 5.924 0 0 0 .677 0l1.422 1.478a.75.75 0 0 0 .778.192 7.972 7.972 0 0 0 1.812-.874.75.75 0 0 0 .335-.728l-.269-2.032a5.94 5.94 0 0 0 .422-.529l2.043-.19a.75.75 0 0 0 .634-.49c.228-.621.38-1.279.447-1.961a.75.75 0 0 0-.36-.716l-1.756-1.056a5.89 5.89 0 0 0-.15-.661l1.123-1.713a.75.75 0 0 0 .013-.802 8.034 8.034 0 0 0-1.255-1.572.75.75 0 0 0-.784-.165l-1.92.713c-.197-.109-.4-.207-.61-.294L9.589.573a.75.75 0 0 0-.619-.51A8.07 8.07 0 0 0 7.965 0Zm.02 10.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z",clipRule:"evenodd"})})}const rt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:nt})));rt.displayName="GearFillIcon";function tt(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",fillRule:"evenodd",clipPath:"url(#GearIcon_svg__a)",clipRule:"evenodd",children:[(0,V.Y)("path",{d:"M7.984 5a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1.5 3a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"}),(0,V.Y)("path",{d:"M7.965 0c-.34 0-.675.021-1.004.063a.75.75 0 0 0-.62.51l-.639 1.946c-.21.087-.413.185-.61.294L3.172 2.1a.75.75 0 0 0-.784.165c-.481.468-.903.996-1.255 1.572a.75.75 0 0 0 .013.802l1.123 1.713a5.898 5.898 0 0 0-.15.66L.363 8.07a.75.75 0 0 0-.36.716c.067.682.22 1.34.447 1.962a.75.75 0 0 0 .635.489l2.042.19c.13.184.271.36.422.529l-.27 2.032a.75.75 0 0 0 .336.728 7.97 7.97 0 0 0 1.812.874.75.75 0 0 0 .778-.192l1.422-1.478a5.924 5.924 0 0 0 .677 0l1.422 1.478a.75.75 0 0 0 .778.192 7.972 7.972 0 0 0 1.812-.874.75.75 0 0 0 .335-.728l-.269-2.032a5.94 5.94 0 0 0 .422-.529l2.043-.19a.75.75 0 0 0 .634-.49c.228-.621.38-1.279.447-1.961a.75.75 0 0 0-.36-.716l-1.756-1.056a5.89 5.89 0 0 0-.15-.661l1.123-1.713a.75.75 0 0 0 .013-.802 8.034 8.034 0 0 0-1.255-1.572.75.75 0 0 0-.784-.165l-1.92.713c-.197-.109-.4-.207-.61-.294L9.589.573a.75.75 0 0 0-.619-.51A8.071 8.071 0 0 0 7.965 0Zm-.95 3.328.598-1.819a6.62 6.62 0 0 1 .705 0l.597 1.819a.75.75 0 0 0 .472.476c.345.117.67.275.97.468a.75.75 0 0 0 .668.073l1.795-.668c.156.176.303.36.44.552l-1.05 1.6a.75.75 0 0 0-.078.667c.12.333.202.685.24 1.05a.75.75 0 0 0 .359.567l1.642.988c-.04.234-.092.463-.156.687l-1.909.178a.75.75 0 0 0-.569.353c-.19.308-.416.59-.672.843a.75.75 0 0 0-.219.633l.252 1.901a6.48 6.48 0 0 1-.635.306l-1.33-1.381a.75.75 0 0 0-.63-.225 4.483 4.483 0 0 1-1.08 0 .75.75 0 0 0-.63.225l-1.33 1.381a6.473 6.473 0 0 1-.634-.306l.252-1.9a.75.75 0 0 0-.219-.634 4.449 4.449 0 0 1-.672-.843.75.75 0 0 0-.569-.353l-1.909-.178a6.456 6.456 0 0 1-.156-.687L3.2 8.113a.75.75 0 0 0 .36-.567c.037-.365.118-.717.239-1.05a.75.75 0 0 0-.078-.666L2.67 4.229c.137-.192.284-.376.44-.552l1.795.668a.75.75 0 0 0 .667-.073c.3-.193.626-.351.97-.468a.75.75 0 0 0 .472-.476Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const lt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:tt})));lt.displayName="GearIcon";var it=lt;function at(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3 3.25A2.25 2.25 0 0 1 5.25 1C6.365 1 7.36 1.522 8 2.335A3.494 3.494 0 0 1 10.75 1a2.25 2.25 0 0 1 2.122 3h1.378a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75H14v5.75a.75.75 0 0 1-.75.75H2.75a.75.75 0 0 1-.75-.75V8.5h-.25A.75.75 0 0 1 1 7.75v-3A.75.75 0 0 1 1.75 4h1.378A2.246 2.246 0 0 1 3 3.25ZM5.25 4h1.937A2 2 0 0 0 5.25 2.5a.75.75 0 0 0 0 1.5Zm2 1.5H2.5V7h4.75V5.5Zm0 3H3.5v5h3.75v-5Zm1.5 5v-5h3.75v5H8.75Zm0-6.5V5.5h4.75V7H8.75Zm.063-3h1.937a.75.75 0 0 0 0-1.5A2 2 0 0 0 8.813 4Z",clipRule:"evenodd"})})}const ct=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:at})));ct.displayName="GiftIcon";function dt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM4.07 7.25a4.001 4.001 0 0 1 7.86 0H16v1.5h-4.07a4.001 4.001 0 0 1-7.86 0H0v-1.5h4.07Z",clipRule:"evenodd"})})}const st=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:dt})));st.displayName="GitCommitIcon";var ht=st;function ut(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#GlobeIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm5.354-5.393c.088-.231.184-.454.287-.666A6.506 6.506 0 0 0 1.543 7.25h2.971c.067-1.777.368-3.399.84-4.643Zm.661 4.643c.066-1.627.344-3.062.742-4.11.23-.607.485-1.046.73-1.32.247-.274.421-.32.513-.32.092 0 .266.046.512.32s.501.713.731 1.32c.398 1.048.676 2.483.742 4.11h-3.97Zm3.97 1.5h-3.97c.066 1.627.344 3.062.742 4.11.23.607.485 1.046.73 1.32.247.274.421.32.513.32.092 0 .266-.046.512-.32s.501-.713.731-1.32c.398-1.048.676-2.483.742-4.11Zm1.501-1.5c-.067-1.777-.368-3.399-.84-4.643a7.912 7.912 0 0 0-.287-.666 6.506 6.506 0 0 1 4.098 5.309h-2.971Zm2.971 1.5h-2.971c-.067 1.777-.368 3.399-.84 4.643a7.918 7.918 0 0 1-.287.666 6.506 6.506 0 0 0 4.098-5.309Zm-9.943 0H1.543a6.506 6.506 0 0 0 4.098 5.309 7.921 7.921 0 0 1-.287-.666c-.472-1.244-.773-2.866-.84-4.643Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 16h16V0H0z"})})})]})}const ft=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ut})));ft.displayName="GlobeIcon";function pt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 1.75V4h1.5V2.5H4V1H1.75a.75.75 0 0 0-.75.75ZM15 14.25V12h-1.5v1.5H12V15h2.25a.75.75 0 0 0 .75-.75ZM12 1h2.25a.75.75 0 0 1 .75.75V4h-1.5V2.5H12V1ZM1.75 15H4v-1.5H2.5V12H1v2.25a.75.75 0 0 0 .75.75ZM10 2.5H6V1h4v1.5ZM6 15h4v-1.5H6V15ZM13.5 10V6H15v4h-1.5ZM1 6v4h1.5V6H1Z"})})}const vt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:pt})));vt.displayName="GridDashIcon";function gt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h4.5A.75.75 0 0 0 7 6.25v-4.5A.75.75 0 0 0 6.25 1h-4.5Zm.75 4.5v-3h3v3h-3ZM1.75 9a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-4.5A.75.75 0 0 0 6.25 9h-4.5Zm.75 4.5v-3h3v3h-3ZM9 1.75A.75.75 0 0 1 9.75 1h4.5a.75.75 0 0 1 .75.75v4.49a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 9 6.24V1.75Zm1.5.75v2.99h3V2.5h-3ZM9.75 9a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75h-4.5Zm.75 4.5v-3h3v3h-3Z",clipRule:"evenodd"})})}const mt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:gt})));mt.displayName="GridIcon";function wt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 3v10h1.5V8.75H6V13h1.5V3H6v4.25H2.5V3H1ZM11.25 3A2.25 2.25 0 0 1 9 5.25v1.5c.844 0 1.623-.279 2.25-.75v5.5H9V13h6v-1.5h-2.25V3h-1.5Z"})})}const xt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:wt})));xt.displayName="H1Icon";function bt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 3v10h1.5V8.75H6V13h1.5V3H6v4.25H2.5V3H1ZM11.75 3A2.75 2.75 0 0 0 9 5.75V6h1.5v-.25c0-.69.56-1.25 1.25-1.25h.39a1.36 1.36 0 0 1 .746 2.498L10.692 8.44A3.75 3.75 0 0 0 9 11.574V13h6v-1.5h-4.499a2.25 2.25 0 0 1 1.014-1.807l2.194-1.44A2.86 2.86 0 0 0 12.14 3h-.389Z"})})}const Yt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bt})));Yt.displayName="H2Icon";function yt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 3h1.5v4.25H6V3h1.5v10H6V8.75H2.5V13H1V3ZM9 5.75A2.75 2.75 0 0 1 11.75 3h.375a2.875 2.875 0 0 1 1.937 5 2.875 2.875 0 0 1-1.937 5h-.375A2.75 2.75 0 0 1 9 10.25V10h1.5v.25c0 .69.56 1.25 1.25 1.25h.375a1.375 1.375 0 1 0 0-2.75H11v-1.5h1.125a1.375 1.375 0 1 0 0-2.75h-.375c-.69 0-1.25.56-1.25 1.25V6H9v-.25Z"})})}const Ht=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:yt})));Ht.displayName="H3Icon";function Ct(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#HistoryIcon_svg__a)",children:[(0,V.Y)("path",{d:"m3.507 7.73.963-.962 1.06 1.06-2.732 2.732L-.03 7.732l1.06-1.06.979.978a7 7 0 1 1 2.041 5.3l1.061-1.06a5.5 5.5 0 1 0-1.604-4.158Z"}),(0,V.Y)("path",{d:"M8.25 8V4h1.5v3.69l1.78 1.78-1.06 1.06-2-2A.75.75 0 0 1 8.25 8Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Rt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ct})));Rt.displayName="HistoryIcon";function Zt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.625 1.1a.75.75 0 0 1 .75 0l6.25 3.61a.75.75 0 0 1 .375.65v8.89a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75V10H7v4.25a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75V5.355a.75.75 0 0 1 .375-.65L7.625 1.1ZM2.5 5.79V13.5h3V9.25a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 .75.75v4.25h3V5.792L8 2.616 2.5 5.789Z",clipRule:"evenodd"})})}const It=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Zt})));It.displayName="HomeIcon";var Mt=It;function At(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.25 3.998a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-.75 2.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75v12.492a.75.75 0 0 1-.75.75H5.038l-.009.009-.008-.009H1.75a.75.75 0 0 1-.75-.75V1.75Zm12.5 11.742H6.544l4.455-4.436 2.47 2.469.031-.03v1.997Zm0-10.992v6.934l-1.97-1.968a.75.75 0 0 0-1.06-.001l-6.052 6.027H2.5V2.5h11Z",clipRule:"evenodd"})]})}const Vt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:At})));Vt.displayName="ImageIcon";var kt=Vt;function Dt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M16 2H0v1.5h16V2ZM16 5.5H7V7h9V5.5ZM16 9H7v1.5h9V9ZM16 12.5H0V14h16v-1.5ZM3.97 11.03.94 8l3.03-3.03 1.06 1.06L3.06 8l1.97 1.97-1.06 1.06Z"})})}const Bt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Dt})));Bt.displayName="IndentDecreaseIcon";function St(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M16 2H0v1.5h16V2ZM16 5.5H7V7h9V5.5ZM16 9H7v1.5h9V9ZM16 12.5H0V14h16v-1.5ZM2.03 4.97 5.06 8l-3.03 3.03L.97 9.97 2.94 8 .97 6.03l1.06-1.06Z"})})}const $t=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:St})));$t.displayName="IndentIncreaseIcon";function Pt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m8 6.94 1.59-1.592a3.75 3.75 0 1 1 0 5.304L8 9.06l-1.591 1.59a3.75 3.75 0 1 1 0-5.303L8 6.94Zm2.652-.531a2.25 2.25 0 1 1 0 3.182L9.06 8l1.59-1.591ZM6.939 8 5.35 6.409a2.25 2.25 0 1 0 0 3.182l1.588-1.589L6.939 8Z",clipRule:"evenodd"})})}const Lt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Pt})));Lt.displayName="InfinityIcon";function Nt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 2v9.882c0 .772.635 1.412 1.4 1.412h4.612c.148.423.544.705.988.706.444 0 .84-.283.988-.706H13.6c.765 0 1.4-.64 1.4-1.412V2h-4.9c-.848 0-1.585.407-2.1 1.013C7.485 2.407 6.748 2 5.9 2H1Zm1.4 1.412h3.5c.782 0 1.4.623 1.4 1.412h1.4c0-.789.618-1.412 1.4-1.412h3.5v8.47H2.4v-8.47Zm7.7 2.117v1.412h1.4V5.53h-1.4Zm0 2.118v2.824h1.4V7.647h-1.4Z"})})}const Ft=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Nt})));Ft.displayName="InfoBookIcon";function Tt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0Zm-8.75 3V7h1.5v4h-1.5ZM8 4.5A.75.75 0 1 1 8 6a.75.75 0 0 1 0-1.5Z",clipRule:"evenodd"})})}const zt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Tt})));zt.displayName="InfoFillIcon";var _t=zt;function Ot(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 11V7h1.5v4h-1.5ZM8 4.5A.75.75 0 1 1 8 6a.75.75 0 0 1 0-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z",clipRule:"evenodd"})]})}const Et=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ot})));Et.displayName="InfoIcon";var Wt=Et;function jt(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M15 2.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V6H12V3.25h1.5v9.5H12V10h-1.5v3.5c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75v-11Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.75 0c1.26 0 2.322.848 2.648 2.004A2.75 2.75 0 0 1 9 4.75v2.5h3v1.5H9v2.5a2.75 2.75 0 0 1-2.602 2.746 2.751 2.751 0 1 1-3.47-3.371 2.751 2.751 0 0 1 0-5.25A2.751 2.751 0 0 1 3.75 0ZM5 2.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm-.428 2.625a2.756 2.756 0 0 0 1.822-1.867A1.25 1.25 0 0 1 7.5 4.75v2.5H6.396a2.756 2.756 0 0 0-1.824-1.875ZM6.396 8.75H7.5v2.5a1.25 1.25 0 0 1-1.106 1.242 2.756 2.756 0 0 0-1.822-1.867A2.756 2.756 0 0 0 6.396 8.75ZM3.75 12a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm0-5.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"})]})}const Gt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:jt})));Gt.displayName="IngestionIcon";function Kt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.648 4.5H12V3H6v1.5h2.102l-1.75 7H4V13h6v-1.5H7.898l1.75-7Z",clipRule:"evenodd"})})}const Ut=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Kt})));Ut.displayName="ItalicIcon";function qt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a4 4 0 0 1 7.93-.75h7.32A.75.75 0 0 1 16 8v3h-1.5V8.75H13V11h-1.5V8.75H7.93A4.001 4.001 0 0 1 0 8Zm4-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z",clipRule:"evenodd"})})}const Xt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:qt})));Xt.displayName="KeyIcon";function Qt(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M.75 2a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h14.5a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75H.75Zm.75 10.5v-9h13v9h-13Zm2.75-8h-1.5V6h1.5V4.5Zm1.5 0V6h1.5V4.5h-1.5Zm3 0V6h1.5V4.5h-1.5Zm3 0V6h1.5V4.5h-1.5Zm-1.5 2.75h-1.5v1.5h1.5v-1.5Zm1.5 1.5v-1.5h1.5v1.5h-1.5Zm-4.5 0v-1.5h-1.5v1.5h1.5Zm-3 0v-1.5h-1.5v1.5h1.5ZM11 10H5v1.5h6V10Z",clipRule:"evenodd"})})}const Jt=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Qt})));Jt.displayName="KeyboardIcon";function el(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 3.75a2.75 2.75 0 1 1 3.5 2.646v3.208c.916.259 1.637.98 1.896 1.896h3.208a2.751 2.751 0 1 1 0 1.5H6.396A2.751 2.751 0 1 1 3 9.604V6.396A2.751 2.751 0 0 1 1 3.75Zm11.25 9.75a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5Zm-8.5-11a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm0 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M10 1.5h3.75a.75.75 0 0 1 .75.75V6H13V3h-3V1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.75 4a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h3.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75h-3.5Zm.75 3.5v-2h2v2h-2Z",clipRule:"evenodd"})]})}const ol=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:el})));ol.displayName="LayerGraphIcon";function nl(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M13.5 2.5H7V1h7.25a.75.75 0 0 1 .75.75V9h-1.5V2.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 7.75A.75.75 0 0 1 1.75 7h6.5a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75h-6.5a.75.75 0 0 1-.75-.75v-6.5Zm1.5.75v5h5v-5h-5Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M4 5.32h6.5V12H12V4.57a.75.75 0 0 0-.75-.75H4v1.5Z"})]})}const rl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:nl})));rl.displayName="LayerIcon";var tl=rl;function ll(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.25 1h2.174a2.126 2.126 0 0 1 1.81 3.243 2.126 2.126 0 0 1-1.36 3.761H6.25a.75.75 0 0 1-.75-.75V1.75A.75.75 0 0 1 6.25 1ZM7 6.504V5.252h1.874a.626.626 0 1 1 0 1.252H7Zm2.05-3.378c0 .345-.28.625-.625.626H7.001L7 2.5h1.424c.346 0 .626.28.626.626ZM3.307 6a.75.75 0 0 1 .697.473L6.596 13H4.982l-.238-.6H1.855l-.24.6H0l2.61-6.528A.75.75 0 0 1 3.307 6Zm-.003 2.776.844 2.124H2.455l.85-2.124Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M12.5 15a2.5 2.5 0 0 0 2.5-2.5h-1.5a1 1 0 1 1-2 0v-1.947c0-.582.472-1.053 1.053-1.053.523 0 .947.424.947.947v.053H15v-.053A2.447 2.447 0 0 0 12.553 8 2.553 2.553 0 0 0 10 10.553V12.5a2.5 2.5 0 0 0 2.5 2.5Z"})]})}const il=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ll})));il.displayName="LettersIcon";function al(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"m8.301 1.522 5.25 13.5 1.398-.544-5.25-13.5-1.398.544ZM1 15V1h1.5v14H1ZM5 15V1h1.5v14H5Z"})})}const cl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:al})));cl.displayName="LibrariesIcon";function dl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.49.04a.75.75 0 0 1 .51.71V6h3.25a.75.75 0 0 1 .596 1.206l-6.5 8.5A.75.75 0 0 1 6 15.25V10H2.75a.75.75 0 0 1-.596-1.206l6.5-8.5A.75.75 0 0 1 9.491.04ZM4.269 8.5H6.75a.75.75 0 0 1 .75.75v3.785L11.732 7.5H9.25a.75.75 0 0 1-.75-.75V2.965L4.268 8.5Z",clipRule:"evenodd"})})}const sl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:dl})));sl.displayName="LightningIcon";function hl(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M4 4h3v1.5H4a2.5 2.5 0 0 0 0 5h3V12H4a4 4 0 0 1 0-8ZM12 10.5H9V12h3a4 4 0 0 0 0-8H9v1.5h3a2.5 2.5 0 0 1 0 5Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M4 8.75h8v-1.5H4v1.5Z"})]})}const ul=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:hl})));ul.displayName="LinkIcon";function fl(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M14.035 11.444A4 4 0 0 0 12 4H9v1.5h3a2.5 2.5 0 0 1 .917 4.826l1.118 1.118ZM14 13.53 2.47 2l-1 1 1.22 1.22A4.002 4.002 0 0 0 4 12h3v-1.5H4a2.5 2.5 0 0 1-.03-5l1.75 1.75H4v1.5h3.22L13 14.53l1-1Z"}),(0,V.Y)("path",{fill:"currentColor",d:"m9.841 7.25 1.5 1.5H12v-1.5H9.841Z"})]})}const pl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:fl})));pl.displayName="LinkOffIcon";function vl(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M12 8.75H7v-1.5h5v1.5ZM7 5.5h5V4H7v1.5ZM12 12H7v-1.5h5V12ZM4.75 5.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM5.5 8A.75.75 0 1 1 4 8a.75.75 0 0 1 1.5 0ZM4.75 12a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V1.75Zm1.5.75v11h11v-11h-11Z",clipRule:"evenodd"})]})}const gl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:vl})));gl.displayName="ListBorderIcon";var ml=gl;function wl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 14",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M10.133 14 8.89 12.775 11.2 10.5 8.889 8.225 10.133 7l2.311 2.275L14.756 7 16 8.225 13.689 10.5 16 12.775 14.756 14l-2.312-2.275L10.134 14ZM0 8.75V7h6.222v1.75H0Zm0-3.5V3.5h9.778v1.75H0Zm0-3.5V0h9.778v1.75H0Z"})})}const xl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:wl})));xl.displayName="ListClearIcon";function bl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1.5 2.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM3 2h13v1.5H3V2ZM3 5.5h13V7H3V5.5ZM3 9h13v1.5H3V9ZM3 12.5h13V14H3v-1.5ZM.75 7a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM1.5 13.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM.75 10.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"})})}const Yl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bl})));Yl.displayName="ListIcon";var yl=Yl;function Hl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 6V4a4 4 0 0 0-8 0v2H2.75a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75H12ZM5.5 6h5V4a2.5 2.5 0 0 0-5 0v2Zm1.75 7V9h1.5v4h-1.5Z",clipRule:"evenodd"})})}const Cl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Hl})));Cl.displayName="LockFillIcon";function Rl(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 9v4h1.5V9h-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12 6V4a4 4 0 0 0-8 0v2H2.75a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75H12Zm.5 1.5v7h-9v-7h9ZM5.5 4v2h5V4a2.5 2.5 0 0 0-5 0Z",clipRule:"evenodd"})]})}const Zl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Rl})));Zl.displayName="LockIcon";function Il(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M10 11.75v-1.5H6v1.5h4Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.25 6H5.5V4a2.5 2.5 0 0 1 5 0v.5H12V4a4 4 0 0 0-8 0v2H2.75a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75ZM3.5 7.5h9v7h-9v-7Z",clipRule:"evenodd"})]})}const Ml=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Il})));Ml.displayName="LockUnlockedIcon";function Al(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M6.42 5.415A.75.75 0 0 0 5 5.75V11h1.5V8.927l.83 1.658a.75.75 0 0 0 1.34 0l.83-1.658V11H11V5.75a.75.75 0 0 0-1.42-.335L8 8.573 6.42 5.415Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11h11v11h-11Z",clipRule:"evenodd"})]})}const Vl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Al})));Vl.displayName="MIcon";function kl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M.75 2a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h14.5a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75H.75Zm.75 2.347V12.5h13V4.347L9.081 8.604a1.75 1.75 0 0 1-2.162 0L1.5 4.347ZM13.15 3.5H2.85l4.996 3.925a.25.25 0 0 0 .308 0L13.15 3.5Z",clipRule:"evenodd"})})}const Dl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:kl})));Dl.displayName="MailIcon";function Bl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M15 4H1V2.5h14V4Zm0 4.75H1v-1.5h14v1.5Zm0 4.75H1V12h14v1.5Z",clipRule:"evenodd"})})}const Sl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Bl})));Sl.displayName="MenuIcon";function $l(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M11.5 8.75h-7v-1.5h7v1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11h11v11h-11Z",clipRule:"evenodd"})]})}const Pl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:$l})));Pl.displayName="MinusBoxIcon";var Ll=Pl;function Nl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm3.5-7.25h-7v-1.5h7v1.5Z",clipRule:"evenodd"})})}const Fl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Nl})));Fl.displayName="MinusCircleFillIcon";function Tl(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M4.5 8.75v-1.5h7v1.5h-7Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z",clipRule:"evenodd"})]})}const zl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Tl})));zl.displayName="MinusCircleIcon";function _l(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#ModelsIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 4.75a2.75 2.75 0 0 1 5.145-1.353l4.372-.95a2.75 2.75 0 1 1 3.835 2.823l.282 2.257a2.75 2.75 0 1 1-2.517 4.46l-2.62 1.145.003.118a2.75 2.75 0 1 1-4.415-2.19L3.013 7.489A2.75 2.75 0 0 1 0 4.75ZM2.75 3.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm2.715 1.688c.018-.11.029-.22.033-.333l4.266-.928a2.753 2.753 0 0 0 2.102 1.546l.282 2.257c-.377.165-.71.412-.976.719L5.465 5.188ZM4.828 6.55a2.767 2.767 0 0 1-.413.388l1.072 3.573a2.747 2.747 0 0 1 2.537 1.19l2.5-1.093a2.792 2.792 0 0 1 .01-.797l-5.706-3.26ZM12 10.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM5.75 12a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM11 2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Ol=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:_l})));Ol.displayName="ModelsIcon";var El=Ol;function Wl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM1.5 8a6.5 6.5 0 0 1 10.535-5.096l-9.131 9.131A6.472 6.472 0 0 1 1.5 8Zm2.465 5.096a6.5 6.5 0 0 0 9.131-9.131l-9.131 9.131Z",clipRule:"evenodd"})})}const jl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Wl})));jl.displayName="NoIcon";function Gl(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3 1.75A.75.75 0 0 1 3.75 1h10.5a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H3.75a.75.75 0 0 1-.75-.75V12.5H1V11h2V8.75H1v-1.5h2V5H1V3.5h2V1.75Zm1.5.75v11H6v-11H4.5Zm3 0v11h6v-11h-6Z",clipRule:"evenodd"})})}const Kl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Gl})));Kl.displayName="NotebookIcon";var Ul=Kl;function ql(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 1a5 5 0 0 0-5 5v1.99c0 .674-.2 1.332-.573 1.892l-1.301 1.952A.75.75 0 0 0 1.75 13h3.5v.25a2.75 2.75 0 1 0 5.5 0V13h3.5a.75.75 0 0 0 .624-1.166l-1.301-1.952A3.41 3.41 0 0 1 13 7.99V6a5 5 0 0 0-5-5Zm1.25 12h-2.5v.25a1.25 1.25 0 1 0 2.5 0V13ZM4.5 6a3.5 3.5 0 1 1 7 0v1.99c0 .97.287 1.918.825 2.724l.524.786H3.15l.524-.786A4.91 4.91 0 0 0 4.5 7.99V6Z",clipRule:"evenodd"})})}const Xl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ql})));Xl.displayName="NotificationIcon";function Ql(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m14.47 13.53-12-12-1 1L3.28 4.342A4.992 4.992 0 0 0 3 6v1.99c0 .674-.2 1.332-.573 1.892l-1.301 1.952A.75.75 0 0 0 1.75 13h3.5v.25a2.75 2.75 0 1 0 5.5 0V13h1.19l1.53 1.53 1-1ZM13.038 8.5A3.409 3.409 0 0 1 13 7.99V6a5 5 0 0 0-7.965-4.026l1.078 1.078A3.5 3.5 0 0 1 11.5 6v1.99c0 .158.008.316.023.472l.038.038h1.477ZM4.5 6c0-.14.008-.279.024-.415L10.44 11.5H3.151l.524-.786A4.91 4.91 0 0 0 4.5 7.99V6Zm2.25 7.25V13h2.5v.25a1.25 1.25 0 1 1-2.5 0Z",clipRule:"evenodd"})})}const Jl=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ql})));Jl.displayName="NotificationOffIcon";function ei(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M7.889 1A2.389 2.389 0 0 0 5.5 3.389H7c0-.491.398-.889.889-.889h.371a.74.74 0 0 1 .292 1.42l-1.43.613A2.675 2.675 0 0 0 5.5 6.992V8h5V6.5H7.108c.12-.26.331-.472.604-.588l1.43-.613A2.24 2.24 0 0 0 8.26 1H7.89ZM2.75 6a1.5 1.5 0 0 1-1.5 1.5H1V9h.25c.546 0 1.059-.146 1.5-.401V11.5H1V13h5v-1.5H4.25V6h-1.5ZM10 12.85A2.15 2.15 0 0 0 12.15 15h.725a2.125 2.125 0 0 0 1.617-3.504 2.138 2.138 0 0 0-1.656-3.521l-.713.008A2.15 2.15 0 0 0 10 10.133v.284h1.5v-.284a.65.65 0 0 1 .642-.65l.712-.009a.638.638 0 1 1 .008 1.276H12v1.5h.875a.625.625 0 1 1 0 1.25h-.725a.65.65 0 0 1-.65-.65v-.267H10v.267Z"})})}const oi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ei})));oi.displayName="NumbersIcon";function ni(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M4 8.75h8v-1.5H4v1.5ZM7 5.75H4v-1.5h3v1.5ZM4 11.75h8v-1.5H4v1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V5a.75.75 0 0 0-.75-.75H10v-2.5A.75.75 0 0 0 9.25 1h-7.5Zm.75 1.5h6V5c0 .414.336.75.75.75h4.25v7.75h-11v-11Z",clipRule:"evenodd"})]})}const ri=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ni})));ri.displayName="OfficeIcon";function ti(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M8 1a1.75 1.75 0 1 0 0 3.5A1.75 1.75 0 0 0 8 1ZM8 6.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM8 11.5A1.75 1.75 0 1 0 8 15a1.75 1.75 0 0 0 0-3.5Z"})})}const li=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ti})));li.displayName="OverflowIcon";var ii=li;function ai(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 3.06 2.06 2l5.97 5.97L14 2l1.06 1.06-7.03 7.031L1 3.061Zm14.03 10.47v1.5h-14v-1.5h14Z",clipRule:"evenodd"})})}const ci=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ai})));ci.displayName="PageBottomIcon";function di(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m12.97 1 1.06 1.06-5.97 5.97L14.03 14l-1.06 1.06-7.03-7.03L12.97 1ZM2.5 15.03H1v-14h1.5v14Z",clipRule:"evenodd"})})}const si=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:di})));si.displayName="PageFirstIcon";function hi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.06 1 2 2.06l5.97 5.97L2 14l1.06 1.06 7.031-7.03L3.061 1Zm10.47 14.03h1.5v-14h-1.5v14Z",clipRule:"evenodd"})})}const ui=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:hi})));ui.displayName="PageLastIcon";function fi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m1 12.97 1.06 1.06 5.97-5.97L14 14.03l1.06-1.06-7.03-7.03L1 12.97ZM15.03 2.5V1h-14v1.5h14Z",clipRule:"evenodd"})})}const pi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:fi})));pi.displayName="PageTopIcon";function vi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.5,d:"M5.25 3v10M10.752 3v10"})})}const gi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:vi})));gi.displayName="PauseIcon";function mi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.487 1.513a1.75 1.75 0 0 0-2.474 0L1.22 11.306a.75.75 0 0 0-.22.53v2.5c0 .414.336.75.75.75h2.5a.75.75 0 0 0 .53-.22l9.793-9.793a1.75 1.75 0 0 0 0-2.475l-1.086-1.085Zm-1.414 1.06a.25.25 0 0 1 .354 0l1.086 1.086a.25.25 0 0 1 0 .354L12 5.525l-1.44-1.44 1.513-1.512ZM9.5 5.146l-7 7v1.44h1.44l7-7-1.44-1.44Z",clipRule:"evenodd"})})}const wi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:mi})));wi.displayName="PencilIcon";var xi=wi;function bi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M5.75 0A.75.75 0 0 0 5 .75v1.19l9 9V9a.75.75 0 0 0-.22-.53l-2.12-2.122a2.25 2.25 0 0 1-.66-1.59V.75a.75.75 0 0 0-.75-.75h-4.5ZM10.94 12l2.53 2.53 1.06-1.06-11.5-11.5-1.06 1.06 2.772 2.773c-.104.2-.239.383-.4.545L2.22 8.47A.75.75 0 0 0 2 9v2.25c0 .414.336.75.75.75h4.5v4h1.5v-4h2.19Z"})})}const Yi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bi})));Yi.displayName="PinCancelIcon";function yi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M5 .75A.75.75 0 0 1 5.75 0h4.5a.75.75 0 0 1 .75.75v4.007c0 .597.237 1.17.659 1.591L13.78 8.47c.141.14.22.331.22.53v2.25a.75.75 0 0 1-.75.75h-4.5v4h-1.5v-4h-4.5a.75.75 0 0 1-.75-.75V9a.75.75 0 0 1 .22-.53L4.34 6.348A2.25 2.25 0 0 0 5 4.758V.75Z"})})}const Hi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:yi})));Hi.displayName="PinFillIcon";var Ci=Hi;function Ri(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.75 0A.75.75 0 0 0 5 .75v4.007a2.25 2.25 0 0 1-.659 1.591L2.22 8.47A.75.75 0 0 0 2 9v2.25c0 .414.336.75.75.75h4.5v4h1.5v-4h4.5a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.22-.53L11.66 6.348A2.25 2.25 0 0 1 11 4.758V.75a.75.75 0 0 0-.75-.75h-4.5Zm.75 4.757V1.5h3v3.257a3.75 3.75 0 0 0 1.098 2.652L12.5 9.311V10.5h-9V9.31L5.402 7.41A3.75 3.75 0 0 0 6.5 4.757Z",clipRule:"evenodd"})})}const Zi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ri})));Zi.displayName="PinIcon";var Ii=Zi;function Mi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.75 6.75A5.75 5.75 0 0 0 5 1H1.75a.75.75 0 0 0-.75.75V6c0 .414.336.75.75.75H5a.25.25 0 0 1 .25.25v2.25A5.75 5.75 0 0 0 11 15h3.25a.75.75 0 0 0 .75-.75V10a.75.75 0 0 0-.75-.75H11a.25.25 0 0 1-.25-.25V6.75ZM5.5 2.53a4.25 4.25 0 0 1 3.75 4.22V9a1.75 1.75 0 0 0 1.25 1.678v2.793A4.25 4.25 0 0 1 6.75 9.25V7A1.75 1.75 0 0 0 5.5 5.322V2.53ZM4 2.5v2.75H2.5V2.5H4Zm9.5 8.25H12v2.75h1.5v-2.75Z",clipRule:"evenodd"})})}const Ai=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Mi})));Ai.displayName="PipelineIcon";function Vi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm7.125-2.815A.75.75 0 0 0 6 5.835v4.33a.75.75 0 0 0 1.125.65l3.75-2.166a.75.75 0 0 0 0-1.299l-3.75-2.165Z",clipRule:"evenodd"})})}const ki=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Vi})));ki.displayName="PlayCircleFillIcon";function Di(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M11.25 8a.75.75 0 0 1-.375.65l-3.75 2.165A.75.75 0 0 1 6 10.165v-4.33a.75.75 0 0 1 1.125-.65l3.75 2.165a.75.75 0 0 1 .375.65Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z",clipRule:"evenodd"})]})}const Bi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Di})));Bi.displayName="PlayCircleIcon";function Si(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M12.125 8.864a.75.75 0 0 0 0-1.3l-6-3.464A.75.75 0 0 0 5 4.75v6.928a.75.75 0 0 0 1.125.65l6-3.464Z"})})}const $i=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Si})));$i.displayName="PlayIcon";var Pi=$i;function Li(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m14.168 2.953.893-.892L14 1l-.893.893a4.001 4.001 0 0 0-5.077.48l-.884.884a.75.75 0 0 0 0 1.061l4.597 4.596a.75.75 0 0 0 1.06 0l.884-.884a4.001 4.001 0 0 0 .48-5.077ZM12.627 6.97l-.354.353-3.536-3.535.354-.354a2.5 2.5 0 1 1 3.536 3.536ZM7.323 10.152 5.91 8.737l1.414-1.414-1.06-1.06-1.415 1.414-.53-.53a.75.75 0 0 0-1.06 0l-.885.883a4.001 4.001 0 0 0-.48 5.077L1 14l1.06 1.06.893-.892a4.001 4.001 0 0 0 5.077-.48l.884-.885a.75.75 0 0 0 0-1.06l-.53-.53 1.414-1.415-1.06-1.06-1.415 1.414Zm-3.889 2.475a2.5 2.5 0 0 0 3.536 0l.353-.354-3.535-3.536-.354.354a2.5 2.5 0 0 0 0 3.536Z",clipRule:"evenodd"})})}const Ni=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Li})));Ni.displayName="PlugIcon";function Fi(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm-.75-4.5V8.75H4.5v-1.5h2.75V4.5h1.5v2.75h2.75v1.5H8.75v2.75h-1.5Z",clipRule:"evenodd"})})}const Ti=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Fi})));Ti.displayName="PlusCircleFillIcon";function zi(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 11.5V8.75H4.5v-1.5h2.75V4.5h1.5v2.75h2.75v1.5H8.75v2.75h-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z",clipRule:"evenodd"})]})}const _i=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:zi})));_i.displayName="PlusCircleIcon";var Oi=_i;function Ei(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.25 7.25V1h1.5v6.25H15v1.5H8.75V15h-1.5V8.75H1v-1.5h6.25Z",clipRule:"evenodd"})})}const Wi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ei})));Wi.displayName="PlusIcon";var ji=Wi;function Gi(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 7.25V4.5h1.5v2.75h2.75v1.5H8.75v2.75h-1.5V8.75H4.5v-1.5h2.75Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V1.75Zm1.5.75v11h11v-11h-11Z",clipRule:"evenodd"})]})}const Ki=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Gi})));Ki.displayName="PlusSquareIcon";var Ui=Ki;function qi(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M12 12H8v-1.5h4V12ZM5.53 11.53 7.56 9.5 5.53 7.47 4.47 8.53l.97.97-.97.97 1.06 1.06Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 3V2.5h11V4h-11Zm0 1.5v8h11v-8h-11Z",clipRule:"evenodd"})]})}const Xi=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:qi})));Xi.displayName="QueryEditorIcon";function Qi(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#QueryIcon_svg__a)",children:[(0,V.Y)("path",{fillRule:"evenodd",d:"M2 1.75A.75.75 0 0 1 2.75 1h6a.75.75 0 0 1 .53.22l4.5 4.5c.141.14.22.331.22.53V10h-1.5V7H8.75A.75.75 0 0 1 8 6.25V2.5H3.5V16h-.75a.75.75 0 0 1-.75-.75V1.75Zm7.5 1.81 1.94 1.94H9.5V3.56Z",clipRule:"evenodd"}),(0,V.Y)("path",{d:"M5.53 9.97 8.56 13l-3.03 3.03-1.06-1.06L6.44 13l-1.97-1.97 1.06-1.06ZM14 14.5H9V16h5v-1.5Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Ji=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Qi})));Ji.displayName="QueryIcon";function ea(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm2.207-10.189a2.25 2.25 0 0 1-1.457 2.56V9h-1.5V7.75A.75.75 0 0 1 8 7a.75.75 0 1 0-.75-.75h-1.5a2.25 2.25 0 0 1 4.457-.439ZM7.25 10.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z",clipRule:"evenodd"})})}const oa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ea})));oa.displayName="QuestionMarkFillIcon";function na(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 10.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM10.079 7.111A2.25 2.25 0 1 0 5.75 6.25h1.5A.75.75 0 1 1 8 7a.75.75 0 0 0-.75.75V9h1.5v-.629a2.25 2.25 0 0 0 1.329-1.26Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z",clipRule:"evenodd"})]})}const ra=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:na})));ra.displayName="QuestionMarkIcon";var ta=ra;function la(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M10.207 5.311A2.25 2.25 0 0 1 8 8h-.75V6.5H8a.75.75 0 1 0-.75-.75h-1.5a2.25 2.25 0 0 1 4.457-.439ZM7.25 9.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 1a6 6 0 0 0-6 6v.25a5.751 5.751 0 0 0 5 5.701v2.299a.75.75 0 0 0 1.28.53L9.06 13H10a6 6 0 0 0 0-12H6ZM1.5 7A4.5 4.5 0 0 1 6 2.5h4a4.5 4.5 0 1 1 0 9H8.75a.75.75 0 0 0-.53.22L6.5 13.44v-1.19a.75.75 0 0 0-.75-.75A4.25 4.25 0 0 1 1.5 7.25V7Z",clipRule:"evenodd"})]})}const ia=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:la})));ia.displayName="QuestionMarkSpeechBubbleIcon";function aa(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M13 4.5h-3V6h3V4.5ZM13 7.25h-3v1.5h3v-1.5ZM13 10h-3v1.5h3V10Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M.75 2a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h14.5a.75.75 0 0 0 .75-.75V2.75a.75.75 0 0 0-.75-.75H.75Zm.75 10.5v-9h5.75v9H1.5Zm7.25 0h5.75v-9H8.75v9Z",clipRule:"evenodd"})]})}const ca=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:aa})));ca.displayName="ReaderModeIcon";function da(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#RedoIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m13.19 5-2.72-2.72 1.06-1.06 4.53 4.53-4.53 4.53-1.06-1.06 2.72-2.72H4.5a3 3 0 1 0 0 6H9V14H4.5a4.5 4.5 0 0 1 0-9h8.69Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 16h16V0H0z"})})})]})}const sa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:da})));sa.displayName="RedoIcon";var ha=sa;function ua(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 8a7 7 0 0 1 11.85-5.047l.65.594V2H15v4h-4V4.5h1.32l-.496-.453-.007-.007a5.5 5.5 0 1 0 .083 7.839l1.063 1.058A7 7 0 0 1 1 8Z",clipRule:"evenodd"})})}const fa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ua})));fa.displayName="RefreshIcon";var pa=fa;function va(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a.75.75 0 0 1 .75.75V3h5.5a.75.75 0 0 1 .75.75V6h.25a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75H15v2.25a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V12H.75a.75.75 0 0 1-.75-.75v-4.5A.75.75 0 0 1 .75 6H1V3.75A.75.75 0 0 1 1.75 3h5.5V.75A.75.75 0 0 1 8 0ZM2.5 4.5v9h11v-9h-11ZM5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-6.25 2.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z",clipRule:"evenodd"})})}const ga=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:va})));ga.displayName="RobotIcon";function ma(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#RunningIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 14.5A6.5 6.5 0 0 0 14.5 8H16a8 8 0 0 1-8 8v-1.5ZM0 8a8 8 0 0 1 8-8v1.5A6.5 6.5 0 0 0 1.5 8H0Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const wa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ma})));wa.displayName="RunningIcon";function xa(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M10 9.25H6v1.5h4v-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1H11a.75.75 0 0 1 .53.22l3.25 3.25c.141.14.22.331.22.53v9.25a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V1.75Zm1.5.75H5v3.75c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75V2.81l2.5 2.5v8.19h-11v-11Zm4 0h3v3h-3v-3Z",clipRule:"evenodd"})]})}const ba=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:xa})));ba.displayName="SaveIcon";function Ya(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"#5F7281",fillRule:"evenodd",d:"M2.75 0A.75.75 0 0 0 2 .75v3a.75.75 0 0 0 .75.75h1v7a2.75 2.75 0 0 0 2.75 2.75H7v1c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v.5h-.5c-.69 0-1.25-.56-1.25-1.25V8.45c.375.192.8.3 1.25.3H7v.75c0 .414.336.75.75.75h5.5A.75.75 0 0 0 14 9.5v-3a.75.75 0 0 0-.75-.75h-5.5A.75.75 0 0 0 7 6.5v.75h-.5c-.69 0-1.25-.56-1.25-1.25V4.5h8a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75H2.75Zm.75 3V1.5h9V3h-9Zm5 10v1.5h4V13h-4Zm0-4.25v-1.5h4v1.5h-4Z",clipRule:"evenodd"})})}const ya=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ya})));ya.displayName="SchemaIcon";function Ha(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M16 7a.75.75 0 0 0-.37-.647l-7.25-4.25a.75.75 0 0 0-.76 0L.37 6.353a.75.75 0 0 0 0 1.294L3 9.188V12a.75.75 0 0 0 .4.663l4.25 2.25a.75.75 0 0 0 .7 0l4.25-2.25A.75.75 0 0 0 13 12V9.188l1.5-.879V12H16V7Zm-7.62 4.897 3.12-1.83v1.481L8 13.401l-3.5-1.853v-1.48l3.12 1.829a.75.75 0 0 0 .76 0ZM8 3.619 2.233 7 8 10.38 13.767 7 8 3.62Z",clipRule:"evenodd"})})}const Ca=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ha})));Ca.displayName="SchoolIcon";function Ra(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#SearchIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 1a7 7 0 1 0 4.39 12.453l2.55 2.55 1.06-1.06-2.55-2.55A7 7 0 0 0 8 1ZM2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Za=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ra})));Za.displayName="SearchIcon";var Ia=Za;function Ma(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 1.75A.75.75 0 0 1 2.75 1h10.5a.75.75 0 0 1 .75.75v7.465a5.75 5.75 0 0 1-2.723 4.889l-2.882 1.784a.75.75 0 0 1-.79 0l-2.882-1.784A5.75 5.75 0 0 1 2 9.214V1.75Zm1.5.75V7h3.75V2.5H3.5Zm5.25 0V7h3.75V2.5H8.75Zm3.75 6H8.75v5.404l1.737-1.076A4.25 4.25 0 0 0 12.5 9.215V8.5Zm-5.25 5.404V8.5H3.5v.715a4.25 4.25 0 0 0 2.013 3.613l1.737 1.076Z",clipRule:"evenodd"})})}const Aa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ma})));Aa.displayName="SecurityIcon";function Va(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M16 8a.75.75 0 0 1-.435.68l-13.5 6.25a.75.75 0 0 1-1.02-.934L3.202 8 1.044 2.004a.75.75 0 0 1 1.021-.935l13.5 6.25A.75.75 0 0 1 16 8Zm-11.473.75-1.463 4.065L13.464 8l-10.4-4.815L4.527 7.25H8v1.5H4.527Z",clipRule:"evenodd"})})}const ka=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Va})));ka.displayName="SendIcon";function Da(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M3.97 5.03 8 1l4.03 4.03-1.06 1.061-2.22-2.22v7.19h-1.5V3.87l-2.22 2.22-1.06-1.06Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M2.5 13.56v-6.5H1v7.25c0 .415.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V7.06h-1.5v6.5h-11Z"})]})}const Ba=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Da})));Ba.displayName="ShareIcon";function Sa(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H15v-1.5H5.5v-11H15V1H1.75ZM4 2.5H2.5v11H4v-11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"m9.06 8 1.97 1.97-1.06 1.06L6.94 8l3.03-3.03 1.06 1.06L9.06 8ZM11.97 6.03 13.94 8l-1.97 1.97 1.06 1.06L16.06 8l-3.03-3.03-1.06 1.06Z"})]})}const $a=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Sa})));$a.displayName="SidebarAutoIcon";function Pa(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H15v-1.5H5.5v-11H15V1H1.75ZM4 2.5H2.5v11H4v-11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"m9.81 8.75 1.22 1.22-1.06 1.06L6.94 8l3.03-3.03 1.06 1.06-1.22 1.22H14v1.5H9.81Z"})]})}const La=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Pa})));La.displayName="SidebarCollapseIcon";function Na(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H15v-1.5H5.5v-11H15V1H1.75ZM4 2.5H2.5v11H4v-11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M11.19 8.75 9.97 9.97l1.06 1.06L14.06 8l-3.03-3.03-1.06 1.06 1.22 1.22H7v1.5h4.19Z"})]})}const Fa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Na})));Fa.displayName="SidebarExpandIcon";function Ta(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11H4v11H2.5Zm3 0h8v-11h-8v11Z",clipRule:"evenodd"})})}const za=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ta})));za.displayName="SidebarIcon";var _a=za;function Oa(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2 3.104V2h1.5v1.104a2.751 2.751 0 0 1 0 5.292V14H2V8.396a2.751 2.751 0 0 1 0-5.292ZM1.5 5.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12.5 2v1.104a2.751 2.751 0 0 0 0 5.292V14H14V8.396a2.751 2.751 0 0 0 0-5.292V2h-1.5Zm.75 2.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM7.25 14v-1.104a2.751 2.751 0 0 1 0-5.292V2h1.5v5.604a2.751 2.751 0 0 1 0 5.292V14h-1.5ZM8 11.5A1.25 1.25 0 1 1 8 9a1.25 1.25 0 0 1 0 2.5Z",clipRule:"evenodd"})})}const Ea=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Oa})));Ea.displayName="SlidersIcon";function Wa(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#SortAlphabeticalAscendingIcon_svg__a)",children:[(0,V.Y)("path",{fillRule:"evenodd",d:"M4.307 0a.75.75 0 0 1 .697.473L7.596 7H5.982l-.238-.6H2.855l-.24.6H1L3.61.472A.75.75 0 0 1 4.307 0Zm-.852 4.9h1.693l-.844-2.124L3.455 4.9Z",clipRule:"evenodd"}),(0,V.Y)("path",{d:"M4.777 9.5H1.5V8h4.75a.75.75 0 0 1 .607 1.191L3.723 13.5H7V15H2.25a.75.75 0 0 1-.607-1.191L4.777 9.5ZM12 .94l4.03 4.03-1.06 1.06-2.22-2.22V10h-1.5V3.81L9.03 6.03 7.97 4.97 12 .94Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const ja=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Wa})));ja.displayName="SortAlphabeticalAscendingIcon";function Ga(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#SortAlphabeticalDescendingIcon_svg__a)",children:[(0,V.Y)("path",{fillRule:"evenodd",d:"M4.307 0a.75.75 0 0 1 .697.473L7.596 7H5.982l-.238-.6H2.855l-.24.6H1L3.61.472A.75.75 0 0 1 4.307 0Zm-.852 4.9h1.693l-.844-2.124L3.455 4.9Z",clipRule:"evenodd"}),(0,V.Y)("path",{d:"M4.777 9.5H1.5V8h4.75a.75.75 0 0 1 .607 1.191L3.723 13.5H7V15H2.25a.75.75 0 0 1-.607-1.191L4.777 9.5ZM12 15.06l-4.03-4.03 1.06-1.06 2.22 2.22V6h1.5v6.19l2.22-2.22 1.06 1.06L12 15.06Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Ka=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ga})));Ka.displayName="SortAlphabeticalDescendingIcon";function Ua(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#SortAlphabeticalLeftIcon_svg__a)",children:[(0,V.Y)("path",{d:"M.94 4 4.97-.03l1.06 1.06-2.22 2.22H10v1.5H3.81l2.22 2.22-1.06 1.06L.94 4Z"}),(0,V.Y)("path",{fillRule:"evenodd",d:"M4.307 9a.75.75 0 0 1 .697.473L7.596 16H5.982l-.238-.6H2.855l-.24.6H1l2.61-6.528A.75.75 0 0 1 4.307 9Zm-.852 4.9h1.693l-.844-2.124-.849 2.124Z",clipRule:"evenodd"}),(0,V.Y)("path",{d:"M11.777 10.5H8.5V9h4.75a.75.75 0 0 1 .607 1.191L10.723 14.5H14V16H9.25a.75.75 0 0 1-.607-1.191l3.134-4.309Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const qa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ua})));qa.displayName="SortAlphabeticalLeftIcon";function Xa(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#SortAlphabeticalRightIcon_svg__a)",children:[(0,V.Y)("path",{d:"m14.06 4-4.03 4.03-1.06-1.06 2.22-2.22H5v-1.5h6.19L8.97 1.03l1.06-1.06L14.06 4Z"}),(0,V.Y)("path",{fillRule:"evenodd",d:"M4.307 9a.75.75 0 0 1 .697.473L7.596 16H5.982l-.238-.6H2.855l-.24.6H1l2.61-6.528A.75.75 0 0 1 4.307 9Zm-.852 4.9h1.693l-.844-2.124-.849 2.124Z",clipRule:"evenodd"}),(0,V.Y)("path",{d:"M11.777 10.5H8.5V9h4.75a.75.75 0 0 1 .607 1.191l-3.134 4.31H14V16H9.25a.75.75 0 0 1-.607-1.192l3.134-4.309Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Qa=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Xa})));Qa.displayName="SortAlphabeticalRightIcon";function Ja(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"m11.5.94 4.03 4.03-1.06 1.06-2.22-2.22V10h-1.5V3.81L8.53 6.03 7.47 4.97 11.5.94ZM1 4.5h4V6H1V4.5ZM1 12.5h10V14H1v-1.5ZM8 8.5H1V10h7V8.5Z"})})}const ec=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ja})));ec.displayName="SortAscendingIcon";var oc=ec;function nc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 3.5h10V2H1v1.5Zm0 8h4V10H1v1.5Zm7-4H1V6h7v1.5Zm3.5 7.56 4.03-4.03-1.06-1.06-2.22 2.22V6h-1.5v6.19L8.53 9.97l-1.06 1.06 4.03 4.03Z",clipRule:"evenodd"})})}const rc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:nc})));rc.displayName="SortDescendingIcon";var tc=rc;function lc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M11.5.94 7.47 4.97l1.06 1.06 2.22-2.22v8.38L8.53 9.97l-1.06 1.06 4.03 4.03 4.03-4.03-1.06-1.06-2.22 2.22V3.81l2.22 2.22 1.06-1.06L11.5.94ZM6 3.5H1V5h5V3.5ZM6 11.5H1V13h5v-1.5ZM1 7.5h5V9H1V7.5Z"})})}const ic=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:lc})));ic.displayName="SortUnsortedIcon";var ac=ic;function cc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"m7.7 6.407-1.14.43c-.45.17-.45.81 0 .98l1.14.43c.82.31 1.46.95 1.77 1.77l.43 1.14c.17.45.81.45.98 0l.43-1.14c.31-.82.95-1.46 1.77-1.77l1.14-.43c.45-.17.45-.81 0-.98l-1.14-.43c-.82-.31-1.46-.95-1.77-1.77l-.43-1.14a.524.524 0 0 0-.98 0l-.43 1.14c-.31.82-.95 1.46-1.77 1.77ZM3.855 11.045l-.66.25c-.26.1-.26.47 0 .57l.66.25c.47.18.85.55 1.03 1.03l.25.66c.1.26.47.26.57 0l.25-.66c.18-.47.55-.85 1.03-1.03l.66-.25c.26-.1.26-.47 0-.57l-.66-.25c-.47-.18-.85-.55-1.03-1.03l-.25-.66a.306.306 0 0 0-.57 0l-.25.66c-.18.47-.55.85-1.03 1.03ZM2.713 4.723l-.551.203a.25.25 0 0 0 0 .468l.55.203c.396.144.707.455.85.85l.204.551a.25.25 0 0 0 .468 0l.203-.55c.144-.396.455-.707.85-.85l.551-.204a.25.25 0 0 0 0-.468l-.55-.203a1.422 1.422 0 0 1-.85-.85l-.204-.551a.25.25 0 0 0-.468 0l-.203.55a1.422 1.422 0 0 1-.85.85Z"})})}const dc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:cc})));dc.displayName="SparkleIcon";function sc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8 8.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM11.5 8A.75.75 0 1 1 10 8a.75.75 0 0 1 1.5 0ZM5.25 8.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 15c-.099 0-.197-.002-.295-.006A.762.762 0 0 1 7.61 15H1.75a.75.75 0 0 1-.53-1.28l1.328-1.329A7 7 0 1 1 8 15ZM2.5 8a5.5 5.5 0 1 1 5.156 5.49.75.75 0 0 0-.18.01H3.56l.55-.55a.75.75 0 0 0 0-1.06A5.48 5.48 0 0 1 2.5 8Z",clipRule:"evenodd"})]})}const hc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:sc})));hc.displayName="SpeechBubbleIcon";function uc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M7.25 9.5V7.75H5.5v-1.5h1.75V4.5h1.5v1.75h1.75v1.5H8.75V9.5h-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 1a6 6 0 0 0-6 6v.25a5.751 5.751 0 0 0 5 5.701v2.299a.75.75 0 0 0 1.28.53L9.06 13H10a6 6 0 0 0 0-12H6ZM1.5 7A4.5 4.5 0 0 1 6 2.5h4a4.5 4.5 0 1 1 0 9H8.75a.75.75 0 0 0-.53.22L6.5 13.44v-1.19a.75.75 0 0 0-.75-.75A4.25 4.25 0 0 1 1.5 7.25V7Z",clipRule:"evenodd"})]})}const fc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:uc})));fc.displayName="SpeechBubblePlusIcon";function pc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 1a6 6 0 0 0-6 6v.25a5.751 5.751 0 0 0 5 5.701v2.299a.75.75 0 0 0 1.28.53L9.06 13H10a6 6 0 0 0 0-12H6ZM1.5 7A4.5 4.5 0 0 1 6 2.5h4a4.5 4.5 0 1 1 0 9H8.75a.75.75 0 0 0-.53.22L6.5 13.44v-1.19a.75.75 0 0 0-.75-.75A4.25 4.25 0 0 1 1.5 7.25V7Zm8.707-1.689A2.25 2.25 0 0 1 8 8h-.75V6.5H8a.75.75 0 1 0-.75-.75h-1.5a2.25 2.25 0 0 1 4.457-.439ZM7.25 9.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z",clipRule:"evenodd"})})}const vc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:pc})));vc.displayName="SpeechBubbleQuestionMarkIcon";function gc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#SpeechBubbleStarIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",d:"M1.599 0C.719 0 .006.72.006 1.6L0 11.2c0 .884.716 1.601 1.6 1.601H3.2v3.2l3.2-3.2h8c.88 0 1.601-.72 1.601-1.6v-9.6C16 .72 15.28 0 14.4 0H1.599Zm0 1.6h12.8v9.601H1.6l-.001-9.6Zm6.4.85L6.937 4.965l-2.726.232 2.066 1.79-.62 2.664 2.342-1.413 2.343 1.413-.62-2.669 2.065-1.79-2.725-.232-1.063-2.51Z"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const mc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:gc})));mc.displayName="SpeechBubbleStarIcon";function wc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M7.995 0a.75.75 0 0 1 .714.518l1.459 4.492h4.723a.75.75 0 0 1 .44 1.356l-3.82 2.776 1.459 4.492a.75.75 0 0 1-1.154.838l-3.82-2.776-3.821 2.776a.75.75 0 0 1-1.154-.838L4.48 9.142.66 6.366A.75.75 0 0 1 1.1 5.01h4.723L7.282.518A.75.75 0 0 1 7.995 0Z"})})}const xc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:wc})));xc.displayName="StarFillIcon";function bc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.995 0a.75.75 0 0 1 .714.518l1.459 4.492h4.723a.75.75 0 0 1 .44 1.356l-3.82 2.776 1.459 4.492a.75.75 0 0 1-1.154.838l-3.82-2.776-3.821 2.776a.75.75 0 0 1-1.154-.838L4.48 9.142.66 6.366A.75.75 0 0 1 1.1 5.01h4.723L7.282.518A.75.75 0 0 1 7.995 0Zm0 3.177-.914 2.814a.75.75 0 0 1-.713.519h-2.96l2.394 1.739a.75.75 0 0 1 .273.839l-.915 2.814 2.394-1.74a.75.75 0 0 1 .882 0l2.394 1.74-.914-2.814a.75.75 0 0 1 .272-.839l2.394-1.74H9.623a.75.75 0 0 1-.713-.518l-.915-2.814Z",clipRule:"evenodd"})})}const Yc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bc})));Yc.displayName="StarIcon";function yc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m7.47 10.53-4-4 1.06-1.06 2.72 2.72V1h1.5v7.19l2.72-2.72 1.06 1.06-4 4-.53.53-.53-.53Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M6.5 13.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z"})]})}const Hc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:yc})));Hc.displayName="StepIntoIcon";function Cc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m7.47 5.47-4 4 1.06 1.06 2.72-2.72V15h1.5V7.81l2.72 2.72 1.06-1.06-4-4L8 4.94l-.53.53Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M6.5 2.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"})]})}const Rc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Cc})));Rc.displayName="StepOutIcon";function Zc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M9.5 13.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.012 4c2.179 0 4.137.931 5.488 2.412V4H15v5h-1.5v-.018H10v-1.5h2.608a6.018 6.018 0 0 0-4.596-2.116A6.001 6.001 0 0 0 2.477 9C2.5 9 1.27 8.313 1.27 8.313A7.389 7.389 0 0 1 8.012 4Z",clipRule:"evenodd"})]})}const Ic=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Zc})));Ic.displayName="StepOverIcon";function Mc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16ZM6.125 5.5a.625.625 0 0 0-.625.625v3.75c0 .345.28.625.625.625h3.75c.345 0 .625-.28.625-.625v-3.75a.625.625 0 0 0-.625-.625h-3.75Z",clipRule:"evenodd"})})}const Ac=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Mc})));Ac.displayName="StopCircleFillIcon";function Vc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0ZM8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM5.5 6a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V6Z",clipRule:"evenodd"})})}const kc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Vc})));kc.displayName="StopCircleIcon";function Dc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M4.5 4a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-7Z"})})}const Bc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Dc})));Bc.displayName="StopIcon";var Sc=Bc;function $c(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.52 2.3a.75.75 0 0 1 .6-.3h7.76a.75.75 0 0 1 .6.3l2.37 3.158a.75.75 0 0 1 .15.45v.842c0 .04-.003.077-.009.115A2.311 2.311 0 0 1 14 8.567v5.683a.75.75 0 0 1-.75.75H2.75a.75.75 0 0 1-.75-.75V8.567A2.311 2.311 0 0 1 1 6.75v-.841a.75.75 0 0 1 .15-.45l2.37-3.16Zm7.605 6.068c.368.337.847.557 1.375.6V13.5h-9V8.968a2.303 2.303 0 0 0 1.375-.6c.411.377.96.607 1.563.607.602 0 1.15-.23 1.562-.607.411.377.96.607 1.563.607.602 0 1.15-.23 1.562-.607Zm2.375-2.21v.532l-.001.019a.813.813 0 0 1-1.623 0 .754.754 0 0 0-.008-.076.756.756 0 0 0 .012-.133V4L13.5 6.16Zm-3.113.445a.762.762 0 0 0-.013.106.813.813 0 0 1-1.624-.019V3.5h1.63v3c0 .035.002.07.007.103ZM7.25 3.5v3.19a.813.813 0 0 1-1.624.019.757.757 0 0 0-.006-.064V3.5h1.63ZM4.12 4 2.5 6.16v.531l.001.019a.813.813 0 0 0 1.619.045V4Z",clipRule:"evenodd"})})}const Pc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:$c})));Pc.displayName="StorefrontIcon";function Lc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM1.52 7.48a6.5 6.5 0 0 1 12.722-1.298l-.09-.091a3.75 3.75 0 0 0-5.304 0L6.091 8.848a2.25 2.25 0 0 1-3.182 0L1.53 7.47l-.01.01Zm.238 2.338A6.5 6.5 0 0 0 14.48 8.52l-.01.01-1.379-1.378a2.25 2.25 0 0 0-3.182 0L7.152 9.909a3.75 3.75 0 0 1-5.304 0l-.09-.09Z",clipRule:"evenodd"})})}const Nc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Lc})));Nc.displayName="StreamIcon";function Fc(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M8 2.5a5.48 5.48 0 0 1 3.817 1.54l.009.009.5.451H11V6h4V2h-1.5v1.539l-.651-.588A7 7 0 0 0 1 8h1.5A5.5 5.5 0 0 1 8 2.5ZM1 10h4v1.5H3.674l.5.451.01.01A5.5 5.5 0 0 0 13.5 8h1.499a7 7 0 0 1-11.849 5.048L2.5 12.46V14H1v-4Z"})})}const Tc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Fc})));Tc.displayName="SyncIcon";var zc=Tc;function _c(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H4v-1.5H2.5V7H5v2h1.5V7h3v2H11V7h2.5v2H15V1.75a.75.75 0 0 0-.75-.75H1.75ZM13.5 5.5v-3h-11v3h11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.75 10a.75.75 0 0 0-.707.5H9.957a.751.751 0 0 0-.708-.5H5.75a.75.75 0 0 0-.75.75v1.75a2.5 2.5 0 0 0 5 0V12h1v.5a2.5 2.5 0 0 0 5 0v-1.75a.75.75 0 0 0-.75-.75h-3.5Zm.75 2.5v-1h2v1a1 1 0 1 1-2 0Zm-6-1v1a1 1 0 1 0 2 0v-1h-2Z",clipRule:"evenodd"})]})}const Oc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:_c})));Oc.displayName="TableGlassesIcon";function Ec(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 1.75A.75.75 0 0 1 1.75 1h12.5a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V1.75Zm1.5.75v3h11v-3h-11Zm0 11V7H5v6.5H2.5Zm4 0h3V7h-3v6.5ZM11 7v6.5h2.5V7H11Z",clipRule:"evenodd"})})}const Wc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ec})));Wc.displayName="TableIcon";var jc=Wc;function Gc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H8v-1.5H6.5V7h7v2H15V1.75a.75.75 0 0 0-.75-.75H1.75ZM5 7H2.5v6.5H5V7Zm8.5-1.5v-3h-11v3h11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"m8.43 11.512 3-3.5 1.14.976-1.94 2.262H14a.75.75 0 0 1 .57 1.238l-3 3.5-1.14-.976 1.94-2.262H9a.75.75 0 0 1-.57-1.238Z"})]})}const Kc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Gc})));Kc.displayName="TableLightningIcon";function Uc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 15",...e,children:[(0,V.Y)("path",{stroke:"currentColor",strokeWidth:1.5,d:"M.75 1A.25.25 0 0 1 1 .75h12a.25.25 0 0 1 .25.25v12a.25.25 0 0 1-.25.25H1A.25.25 0 0 1 .75 13V1ZM1 5.25h12M5.25 13V6"}),(0,V.Y)("path",{fill:"#fff",d:"M7 7h9v7.5H7z"}),(0,V.Y)("path",{stroke:"currentColor",d:"M10.5 12H15m0 0-1.5-1.5M15 12l-1.5 1.5M12.5 9.5H8m0 0L9.5 11M8 9.5 9.5 8"})]})}const qc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Uc})));qc.displayName="TableOnlineViewIcon";function Xc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H6.5V7h3v1H11V7h2.5v1H15V1.75a.75.75 0 0 0-.75-.75H1.75ZM5 7v6.5H2.5V7H5Zm8.5-1.5v-3h-11v3h11Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",d:"M9.024 10.92a1.187 1.187 0 0 1 1.876.03 2.687 2.687 0 0 0 4.247.066l.439-.548-1.172-.937-.438.548a1.187 1.187 0 0 1-1.876-.03 2.687 2.687 0 0 0-4.247-.066l-.439.548 1.172.937.438-.547Z"}),(0,V.Y)("path",{fill:"currentColor",d:"M9.024 13.92a1.187 1.187 0 0 1 1.876.03 2.687 2.687 0 0 0 4.247.066l.439-.548-1.172-.937-.438.548a1.187 1.187 0 0 1-1.876-.03 2.687 2.687 0 0 0-4.247-.066l-.439.548 1.172.937.438-.547Z"})]})}const Qc=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Xc})));Qc.displayName="TableStreamIcon";function Jc(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H8v-1.5H6.5V7h7v2H15V1.75a.75.75 0 0 0-.75-.75H1.75ZM5 7H2.5v6.5H5V7Zm8.5-1.5v-3h-11v3h11Z",clipRule:"evenodd"}),(0,V.Y)("circle",{cx:12,cy:12,r:1,fill:"currentColor"}),(0,V.Y)("circle",{cx:12.5,cy:9.5,r:.5,fill:"currentColor"}),(0,V.Y)("circle",{cx:9.5,cy:12.5,r:.5,fill:"currentColor"}),(0,V.Y)("circle",{cx:13.75,cy:13.75,r:.75,fill:"currentColor"}),(0,V.Y)("circle",{cx:9.75,cy:9.75,r:.75,fill:"currentColor"}),(0,V.Y)("path",{stroke:"currentColor",strokeWidth:.3,d:"M13.5 13.5 12 12m0 0 .5-2.5M12 12l-2.5.5M10 10l2 2"})]})}const ed=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Jc})));ed.displayName="TableVectorIcon";function od(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",fillRule:"evenodd",clipPath:"url(#TableViewIcon_svg__a)",clipRule:"evenodd",children:[(0,V.Y)("path",{d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H4v-1.5H2.5V7H5v2h1.5V7h3v2H11V7h2.5v2H15V1.75a.75.75 0 0 0-.75-.75H1.75ZM13.5 5.5v-3h-11v3h11Z"}),(0,V.Y)("path",{d:"M11.75 10a.75.75 0 0 0-.707.5H9.957a.75.75 0 0 0-.707-.5h-3.5a.75.75 0 0 0-.75.75v1.75a2.5 2.5 0 0 0 5 0V12h1v.5a2.5 2.5 0 0 0 5 0v-1.75a.75.75 0 0 0-.75-.75h-3.5Zm.75 2.5v-1h2v1a1 1 0 1 1-2 0Zm-6-1v1a1 1 0 1 0 2 0v-1h-2Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const nd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:od})));nd.displayName="TableViewIcon";function rd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 -960 960 960",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M570-104q-23 23-57 23t-57-23L104-456q-11-11-17.5-26T80-514v-286q0-33 23.5-56.5T160-880h286q17 0 32 6.5t26 17.5l352 353q23 23 23 56.5T856-390L570-104Zm-57-56 286-286-353-354H160v286l353 354ZM260-640q25 0 42.5-17.5T320-700q0-25-17.5-42.5T260-760q-25 0-42.5 17.5T200-700q0 25 17.5 42.5T260-640ZM160-800Z"})})}const td=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:rd})));td.displayName="TagIcon";function ld(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M8 11.111a2.996 2.996 0 0 1-2.197-.914A2.996 2.996 0 0 1 4.889 8c0-.856.305-1.588.914-2.197A2.996 2.996 0 0 1 8 4.889c.856 0 1.588.305 2.197.914.61.609.914 1.341.914 2.197 0 .856-.305 1.588-.914 2.197-.609.61-1.341.914-2.197.914Zm0-1.555c.428 0 .794-.153 1.099-.457.304-.305.457-.671.457-1.099 0-.428-.153-.794-.457-1.099A1.498 1.498 0 0 0 8 6.444c-.428 0-.794.153-1.099.457-.304.305-.457.671-.457 1.099 0 .428.153.794.457 1.099.305.304.671.457 1.099.457ZM2.556 15c-.428 0-.794-.152-1.1-.457A1.498 1.498 0 0 1 1 13.444v-3.11h1.556v3.11h3.11V15h-3.11Zm7.777 0v-1.556h3.111v-3.11H15v3.11c0 .428-.152.794-.457 1.1-.305.304-.67.456-1.099.456h-3.11ZM1 5.667V2.556c0-.428.152-.794.457-1.1.305-.304.67-.456 1.099-.456h3.11v1.556h-3.11v3.11H1Zm12.444 0V2.556h-3.11V1h3.11c.428 0 .794.152 1.1.457.304.305.456.67.456 1.099v3.11h-1.556Z"})})}const id=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ld})));id.displayName="TargetIcon";function ad(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75V1.75a.75.75 0 0 0-.75-.75H1.75Zm.75 12.5v-11h11v11h-11ZM5 6h2.25v5.5h1.5V6H11V4.5H5V6Z",clipRule:"evenodd"})})}const cd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:ad})));cd.displayName="TextBoxIcon";function dd(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#ThumbsDownIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.655 2.274a.79.79 0 0 0-.528-.19h-1.044v5.833h1.044a.79.79 0 0 0 .79-.643V2.725a.79.79 0 0 0-.262-.451Zm-3.072 6.233V2.083H3.805a.583.583 0 0 0-.583.496v.001l-.92 6a.585.585 0 0 0 .583.67h3.782a.75.75 0 0 1 .75.75v2.667a1.25 1.25 0 0 0 .8 1.166l2.366-5.326Zm1.238.91L9.352 14.97a.75.75 0 0 1-.685.446 2.75 2.75 0 0 1-2.75-2.75V10.75h-3.02A2.082 2.082 0 0 1 .82 8.354l.92-6A2.085 2.085 0 0 1 3.816.584h9.29a2.29 2.29 0 0 1 2.303 1.982.751.751 0 0 1 .007.1v4.667a.751.751 0 0 1-.007.1 2.29 2.29 0 0 1-2.303 1.984h-1.286Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const sd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:dd})));sd.displayName="ThumbsDownIcon";function hd(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#ThumbsUpIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.648 1.029a.75.75 0 0 1 .685-.446 2.75 2.75 0 0 1 2.75 2.75V5.25h3.02a2.083 2.083 0 0 1 2.079 2.396l-.92 6a2.085 2.085 0 0 1-2.08 1.77H2.668a2.083 2.083 0 0 1-2.084-2.082V8.667a2.083 2.083 0 0 1 2.084-2.083h1.512l2.469-5.555ZM3.917 8.084h-1.25a.583.583 0 0 0-.584.583v4.667a.583.583 0 0 0 .584.583h1.25V8.084Zm1.5 5.833h6.778a.583.583 0 0 0 .583-.496l.92-6a.584.584 0 0 0-.583-.67H9.333a.75.75 0 0 1-.75-.75V3.332a1.25 1.25 0 0 0-.8-1.166L5.417 7.493v6.424Z",clipRule:"evenodd"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const ud=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:hd})));ud.displayName="ThumbsUpIcon";function fd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 0a.75.75 0 0 0-.712.513L4.46 3H1v1.5h1.077l1.177 10.831A.75.75 0 0 0 4 16h8a.75.75 0 0 0 .746-.669L13.923 4.5H15V3h-3.46L10.712.513A.75.75 0 0 0 10 0H6Zm3.96 3-.5-1.5H6.54L6.04 3h3.92ZM3.585 4.5l1.087 10h6.654l1.087-10H3.586Z",clipRule:"evenodd"})})}const pd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:fd})));pd.displayName="TrashIcon";var vd=pd;function gd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.004 9.602a2.751 2.751 0 1 0 3.371 3.47 2.751 2.751 0 0 0 5.25 0 2.751 2.751 0 1 0 3.371-3.47A2.75 2.75 0 0 0 11.25 7h-2.5v-.604a2.751 2.751 0 1 0-1.5 0V7h-2.5a2.75 2.75 0 0 0-2.746 2.602ZM2.75 11a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm4.5-2.5h-2.5a1.25 1.25 0 0 0-1.242 1.106 2.756 2.756 0 0 1 1.867 1.822A2.756 2.756 0 0 1 7.25 9.604V8.5Zm1.5 0v1.104c.892.252 1.6.942 1.875 1.824a2.756 2.756 0 0 1 1.867-1.822A1.25 1.25 0 0 0 11.25 8.5h-2.5ZM12 12.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm-5.25 0a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0ZM8 5a1.25 1.25 0 1 1 0-2.5A1.25 1.25 0 0 1 8 5Z",clipRule:"evenodd"})})}const md=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:gd})));md.displayName="TreeIcon";function wd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.544 6.466 4.6 2.988l1.5.024-.056 3.478A1.978 1.978 0 1 0 10 6.522V3h1.5v3.522a3.478 3.478 0 1 1-6.956-.056ZM12 13H4v-1.5h8V13Z",clipRule:"evenodd"})})}const xd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:wd})));xd.displayName="UnderlineIcon";function bd(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("g",{clipPath:"url(#UndoIcon_svg__a)",children:(0,V.Y)("path",{fill:"currentColor",d:"M2.81 6.5h8.69a3 3 0 0 1 0 6H7V14h4.5a4.5 4.5 0 0 0 0-9H2.81l2.72-2.72-1.06-1.06-4.53 4.53 4.53 4.53 1.06-1.06L2.81 6.5Z"})}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M16 16H0V0h16z"})})})]})}const Yd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:bd})));Yd.displayName="UndoIcon";var yd=Yd;function Hd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M1 13.56h14v1.5H1v-1.5ZM12.53 5.53l-1.06 1.061-2.72-2.72v7.19h-1.5V3.87l-2.72 2.72-1.06-1.06L8 1l4.53 4.53Z"})})}const Cd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Hd})));Cd.displayName="UploadIcon";function Rd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",d:"M8 0a.75.75 0 0 1 .65.375l1.299 2.25a.75.75 0 0 1-.65 1.125H8.75V9.5h2.75V8h-.25a.75.75 0 0 1-.75-.75v-2a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-.75.75H13v2.25a.75.75 0 0 1-.75.75h-3.5v1.668a1.75 1.75 0 1 1-1.5 0V11h-3.5a.75.75 0 0 1-.75-.75V7.832a1.75 1.75 0 1 1 1.5 0V9.5h2.75V3.75h-.549a.75.75 0 0 1-.65-1.125l1.3-2.25A.75.75 0 0 1 8 0Z"})})}const Zd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Rd})));Zd.displayName="UsbIcon";function Id(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 5.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5ZM6.75 8a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m4.401 2.5.386-.867A2.75 2.75 0 0 1 7.3 0h1.4a2.75 2.75 0 0 1 2.513 1.633l.386.867h1.651a.75.75 0 0 1 .75.75v12a.75.75 0 0 1-.75.75H2.75a.75.75 0 0 1-.75-.75v-12a.75.75 0 0 1 .75-.75h1.651Zm1.756-.258A1.25 1.25 0 0 1 7.3 1.5h1.4c.494 0 .942.29 1.143.742l.114.258H6.043l.114-.258ZM8 12a8.71 8.71 0 0 0-4.5 1.244V4h9v9.244A8.71 8.71 0 0 0 8 12Zm0 1.5c1.342 0 2.599.364 3.677 1H4.323A7.216 7.216 0 0 1 8 13.5Z",clipRule:"evenodd"})]})}const Md=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Id})));Md.displayName="UserBadgeIcon";function Ad(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M5.25 6.75a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM8 5.5A1.25 1.25 0 1 0 8 8a1.25 1.25 0 0 0 0-2.5Z",clipRule:"evenodd"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 0 0-4.773 10.912A8.728 8.728 0 0 1 8 11c1.76 0 3.4.52 4.773 1.412A6.5 6.5 0 0 0 8 1.5Zm3.568 11.934A7.231 7.231 0 0 0 8 12.5a7.23 7.23 0 0 0-3.568.934A6.47 6.47 0 0 0 8 14.5a6.47 6.47 0 0 0 3.568-1.066Z",clipRule:"evenodd"})]})}const Vd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ad})));Vd.displayName="UserCircleIcon";function kd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.25 3.75a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM5 2.5A1.25 1.25 0 1 0 5 5a1.25 1.25 0 0 0 0-2.5ZM9.502 14H.75a.75.75 0 0 1-.75-.75V11a.75.75 0 0 1 .164-.469C1.298 9.114 3.077 8 5.125 8c1.76 0 3.32.822 4.443 1.952A5.545 5.545 0 0 1 11.75 9.5c1.642 0 3.094.745 4.041 1.73a.75.75 0 0 1 .209.52v1.5a.75.75 0 0 1-.75.75H9.502ZM1.5 12.5v-1.228C2.414 10.228 3.72 9.5 5.125 9.5c1.406 0 2.71.728 3.625 1.772V12.5H1.5Zm8.75 0h4.25v-.432A4.168 4.168 0 0 0 11.75 11c-.53 0-1.037.108-1.5.293V12.5ZM11.75 3.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM11 5.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z",clipRule:"evenodd"})})}const Dd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:kd})));Dd.displayName="UserGroupIcon";function Bd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 1a3.25 3.25 0 1 0 0 6.5A3.25 3.25 0 0 0 8 1ZM6.25 4.25a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM8 9a8.735 8.735 0 0 0-6.836 3.287.75.75 0 0 0-.164.469v1.494c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75v-1.494a.75.75 0 0 0-.164-.469A8.735 8.735 0 0 0 8 9Zm-5.5 4.5v-.474A7.232 7.232 0 0 1 8 10.5c2.2 0 4.17.978 5.5 2.526v.474h-11Z",clipRule:"evenodd"})})}const Sd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Bd})));Sd.displayName="UserIcon";function $d(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.75 1a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75H8v-1.5H6.5V7h7v2H15V1.75a.75.75 0 0 0-.75-.75H1.75ZM5 7H2.5v6.5H5V7Zm8.5-1.5v-3h-11v3h11Z",clipRule:"evenodd"}),(0,V.Y)("circle",{cx:12,cy:12,r:1,fill:"currentColor"}),(0,V.Y)("circle",{cx:12.5,cy:9.5,r:.5,fill:"currentColor"}),(0,V.Y)("circle",{cx:9.5,cy:12.5,r:.5,fill:"currentColor"}),(0,V.Y)("circle",{cx:13.75,cy:13.75,r:.75,fill:"currentColor"}),(0,V.Y)("circle",{cx:9.75,cy:9.75,r:.75,fill:"currentColor"}),(0,V.Y)("path",{stroke:"currentColor",strokeWidth:.3,d:"M13.5 13.5 12 12m0 0 .5-2.5M12 12l-2.5.5M10 10l2 2"})]})}const Pd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:$d})));Pd.displayName="VectorTableIcon";function Ld(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",fillRule:"evenodd",clipPath:"url(#VisibleIcon_svg__a)",clipRule:"evenodd",children:[(0,V.Y)("path",{d:"M8 5a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM6.5 8a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"}),(0,V.Y)("path",{d:"M8 2A8.389 8.389 0 0 0 .028 7.777a.75.75 0 0 0 0 .466 8.389 8.389 0 0 0 15.944 0 .75.75 0 0 0 0-.466A8.389 8.389 0 0 0 8 2Zm0 10.52a6.888 6.888 0 0 1-6.465-4.51 6.888 6.888 0 0 1 12.93 0A6.888 6.888 0 0 1 8 12.52Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const Nd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ld})));Nd.displayName="VisibleIcon";var Fd=Nd;function Td(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.FD)("g",{fill:"currentColor",clipPath:"url(#VisibleOffIcon_svg__a)",children:[(0,V.Y)("path",{fillRule:"evenodd",d:"m11.634 13.194 1.335 1.336 1.061-1.06-11.5-11.5-1.06 1.06 1.027 1.028a8.395 8.395 0 0 0-2.469 3.72.75.75 0 0 0 0 .465 8.389 8.389 0 0 0 11.606 4.951Zm-1.14-1.139-1.301-1.301a3 3 0 0 1-3.946-3.946L3.56 5.121A6.898 6.898 0 0 0 1.535 8.01a6.888 6.888 0 0 0 8.96 4.045Z",clipRule:"evenodd"}),(0,V.Y)("path",{d:"M15.972 8.243a8.384 8.384 0 0 1-1.946 3.223l-1.06-1.06a6.887 6.887 0 0 0 1.499-2.396 6.888 6.888 0 0 0-8.187-4.293L5.082 2.522a8.389 8.389 0 0 1 10.89 5.256.75.75 0 0 1 0 .465Z"}),(0,V.Y)("path",{d:"M11 8c0 .14-.01.277-.028.411L7.589 5.028A3 3 0 0 1 11 8Z"})]}),(0,V.Y)("defs",{children:(0,V.Y)("clipPath",{children:(0,V.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const zd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Td})));zd.displayName="VisibleOffIcon";var _d=zd;function Od(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.649 1.374a.75.75 0 0 0-1.298 0l-7.25 12.5A.75.75 0 0 0 .75 15h14.5a.75.75 0 0 0 .649-1.126l-7.25-12.5ZM7.25 10V6.5h1.5V10h-1.5Zm1.5 1.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z",clipRule:"evenodd"})})}const Ed=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Od})));Ed.displayName="WarningFillIcon";var Wd=Ed;function jd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.75 4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm2.646-.5a2.751 2.751 0 1 1 0-1.5h5.229a3.375 3.375 0 0 1 .118 6.748L8.436 11.11a.75.75 0 0 1-.872 0l-3.3-2.357a1.875 1.875 0 0 0 .111 3.747h5.229a2.751 2.751 0 1 1 0 1.5H4.375a3.375 3.375 0 0 1-.118-6.748L7.564 4.89a.75.75 0 0 1 .872 0l3.3 2.357a1.875 1.875 0 0 0-.111-3.747H6.396Zm7.104 9.75a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM8 6.422 5.79 8 8 9.578 10.21 8 8 6.422Z",clipRule:"evenodd"})})}const Gd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:jd})));Gd.displayName="WorkflowsIcon";var Kd=Gd;function Ud(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M2.5 1a.75.75 0 0 0-.75.75v3c0 .414.336.75.75.75H6V4H3.25V2.5h9.5V4H10v1.5h3.5a.75.75 0 0 0 .75-.75v-3A.75.75 0 0 0 13.5 1h-11Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 12.25c0-1.26.848-2.322 2.004-2.648A2.75 2.75 0 0 1 4.75 7h2.5V4h1.5v3h2.5a2.75 2.75 0 0 1 2.746 2.602 2.751 2.751 0 1 1-3.371 3.47 2.751 2.751 0 0 1-5.25 0A2.751 2.751 0 0 1 0 12.25ZM2.75 11a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm2.625.428a2.756 2.756 0 0 0-1.867-1.822A1.25 1.25 0 0 1 4.75 8.5h2.5v1.104c-.892.252-1.6.942-1.875 1.824ZM8.75 9.604V8.5h2.5c.642 0 1.17.483 1.242 1.106a2.756 2.756 0 0 0-1.867 1.822A2.756 2.756 0 0 0 8.75 9.604ZM12 12.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm-5.25 0a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0Z",clipRule:"evenodd"})]})}const qd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Ud})));qd.displayName="WorkspacesIcon";function Xd(e){return(0,V.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm1.97-4.97L8 9.06l-1.97 1.97-1.06-1.06L6.94 8 4.97 6.03l1.06-1.06L8 6.94l1.97-1.97 1.06 1.06L9.06 8l1.97 1.97-1.06 1.06Z",clipRule:"evenodd"})})}const Qd=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:Xd})));Qd.displayName="XCircleFillIcon";var Jd=Qd;function es(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M6.94 8 4.97 6.03l1.06-1.06L8 6.94l1.97-1.97 1.06 1.06L9.06 8l1.97 1.97-1.06 1.06L8 9.06l-1.97 1.97-1.06-1.06L6.94 8Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z",clipRule:"evenodd"})]})}const os=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:es})));os.displayName="XCircleIcon";var ns=os;function rs(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 17",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M8.75 7.25H11v1.5H8.75V11h-1.5V8.75H5v-1.5h2.25V5h1.5v2.25Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 1a7 7 0 1 0 4.39 12.453l2.55 2.55 1.06-1.06-2.55-2.55A7 7 0 0 0 8 1ZM2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Z",clipRule:"evenodd"})]})}const ts=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:rs})));ts.displayName="ZoomInIcon";var ls=ts;function is(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M1 1.75V4h1.5V2.5H4V1H1.75a.75.75 0 0 0-.75.75ZM14.25 1H12v1.5h1.5V4H15V1.75a.75.75 0 0 0-.75-.75ZM4 15H1.75a.75.75 0 0 1-.75-.75V12h1.5v1.5H4V15ZM6 2.5h4V1H6v1.5ZM1 10V6h1.5v4H1Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.053 9.27a5.217 5.217 0 1 1 9.397 3.122l1.69 1.69-1.062 1.06-1.688-1.69A5.217 5.217 0 0 1 4.053 9.27ZM9.27 5.555a3.717 3.717 0 1 0 0 7.434 3.717 3.717 0 0 0 0-7.434Z",clipRule:"evenodd"})]})}const as=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:is})));as.displayName="ZoomMarqueeSelection";function cs(e){return(0,V.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 17",...e,children:[(0,V.Y)("path",{fill:"currentColor",d:"M11 7.25H5v1.5h6v-1.5Z"}),(0,V.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 8a7 7 0 1 1 12.45 4.392l2.55 2.55-1.06 1.061-2.55-2.55A7 7 0 0 1 1 8Zm7-5.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z",clipRule:"evenodd"})]})}const ds=(0,k.forwardRef)(((e,o)=>(0,V.Y)(r.I,{ref:o,...e,component:cs})));ds.displayName="ZoomOutIcon";var ss=ds;function hs(e,o){const n=`.${e}-item`,l=`${n}-active`,i=`.${e}-header`,a=`.${e}-content`,c=`.${e}-content-box`,d=`.${e}-arrow`,s={border:"0 none",background:"none",[n]:{border:"0 none","&:hover":{[i]:{color:o.colors.actionPrimaryBackgroundHover},[d]:{color:o.colors.actionPrimaryBackgroundHover}},"&:active":{[i]:{color:o.colors.actionPrimaryBackgroundPress},[d]:{color:o.colors.actionPrimaryBackgroundPress}}},[i]:{color:o.colors.textPrimary,fontWeight:600,"&:focus-visible":{outlineColor:`${o.colors.primary} !important`,outlineStyle:"auto !important"}},[`& > ${n} > ${i} > ${d}`]:{fontSize:o.general.iconSize,right:12},[d]:{color:o.colors.textSecondary},[`& > ${l} > ${i} > ${d}`]:{transform:"translateY(-50%) rotate(180deg)"},[a]:{border:"0 none",backgroundColor:o.colors.backgroundPrimary},[c]:{padding:"8px 16px 16px"},[`& > ${n} > ${i}`]:{padding:"6px 44px 6px 0",lineHeight:o.typography.lineHeightBase},...(0,r.g)(o.options.enableAnimation)};return(0,t.AH)(s,"","")}const us=e=>{let{dangerouslySetAntdProps:o,dangerouslyAppendEmotionCSS:n,children:t,...i}=e;return(0,V.Y)(r.D,{children:(0,V.Y)(l.A.Panel,{...i,...o,css:n,children:(0,V.Y)(r.R,{children:t})})})},fs=(()=>{const e=e=>{let{dangerouslySetAntdProps:o,dangerouslyAppendEmotionCSS:n,displayMode:t="multiple",...i}=e;const{theme:a,getPrefixedClassName:c}=(0,r.u)(),d=c("collapse");return(0,V.Y)(r.D,{children:(0,V.Y)(l.A,{expandIcon:()=>(0,V.Y)(en,{}),expandIconPosition:"right",accordion:"single"===t,...i,...o,css:[hs(d,a),n,""]})})};return e.Panel=us,e})(),ps={error:Kn,warning:Wd,success:Do,info:_t};function vs(e){const o=ps[e.severity];return(0,V.Y)(o,{...e})}const gs=e=>{let{dangerouslySetAntdProps:o,closable:n=!0,closeIconLabel:l="Close alert",...a}=e;const{theme:c,getPrefixedClassName:d}=(0,r.u)(),s=d("alert"),h={...a,type:a.type||"error",showIcon:!0,closable:n},u=(0,k.useRef)(null);return(0,k.useEffect)((()=>{var e;u.current&&(u.current.removeAttribute("aria-label"),null===(e=u.current.closest("button"))||void 0===e||e.setAttribute("aria-label",l))}),[h.closable,l]),(0,V.Y)(r.D,{children:(0,V.Y)(i.A,{...h,className:B()(h.className),css:ms(s,c,h),icon:(0,V.Y)(vs,{severity:h.type}),closeText:h.closable&&(0,V.Y)(r.C,{ref:u,"aria-label":l,css:(0,t.AH)({fontSize:c.general.iconSize},"","")}),description:a.description||" ",...o})})},ms=(e,o,n)=>{const l=`.${e}-close-icon`,i=`.${e}-close-button`,a=`.${e}-close-text`,c=`.${e}-description`,d=`.${e}-message`,s=`.${e}-with-description`,h=`.${e}-icon`,u={padding:o.spacing.sm,[`${d}, &${s} ${d}`]:{fontSize:o.typography.fontSizeBase,fontWeight:o.typography.typographyBoldFontWeight,lineHeight:o.typography.lineHeightBase},[`${c}`]:{lineHeight:o.typography.lineHeightBase},[i]:{fontSize:16,marginRight:12},[l]:{"&:focus-visible":{outlineStyle:"auto",outlineColor:o.colors.primary}},[`${l}, ${i}`]:{lineHeight:o.typography.lineHeightBase,height:16,width:16,display:"flex",alignItems:"center",justifyContent:"center"},[h]:{fontSize:16,marginTop:2},[`${l}, ${i}, ${a} > span`]:{lineHeight:o.typography.lineHeightBase,height:16,width:16,fontSize:16,marginTop:2,"& > span":{lineHeight:o.typography.lineHeightBase}},...!n.description&&{display:"flex",alignItems:"center",[h]:{fontSize:16,marginTop:0},[d]:{margin:0},[c]:{display:"none"},[l]:{alignSelf:"baseline"}},..."warning"===n.type&&{color:o.colors.textValidationWarning,borderColor:o.colors.yellow300},..."error"===n.type&&{color:o.colors.textValidationDanger,borderColor:o.colors.red300},...n.banner&&{borderStyle:"solid",borderWidth:`${o.general.borderWidth}px 0`},'&[data-show="false"]':{borderWidth:0,padding:0,width:0,height:0},...(0,r.g)(o.options.enableAnimation)};return(0,t.AH)(u,"","")},ws=e=>(0,t.AH)({"body, .mfe-root":{backgroundColor:e.colors.backgroundPrimary,color:e.colors.textPrimary,"--dubois-global-background-color":e.colors.backgroundPrimary,"--dubois-global-color":e.colors.textPrimary}},"",""),xs=()=>{const{theme:e}=(0,r.u)();return(0,V.Y)(t.mL,{styles:ws(e)})},bs=(()=>{const e=e=>{let{dangerouslySetAntdProps:o,...n}=e;const{theme:l}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(a.A,{dropdownStyle:{boxShadow:l.general.shadowLow,...(0,r.a)(l)},...n,...o,css:(0,t.AH)((0,r.g)(l.options.enableAnimation),"","")})})};return e.Option=a.A.Option,e})();const Ys=(()=>{const e=o=>{let{dangerouslySetAntdProps:n,includeTrailingCaret:l=!0,...i}=o;const{theme:a,classNamePrefix:d}=(0,r.u)(),s=`.${d}-breadcrumb-separator`,h=(0,t.AH)({"span:last-child a":{color:a.colors.primary,":hover, :focus":{color:"#2272B4"}},a:{"&:focus-visible":{outlineColor:`${a.colors.primary} !important`,outlineStyle:"auto !important"}},[s]:{fontSize:a.general.iconFontSize},"& > span":{display:"inline-flex",alignItems:"center"}},"","");return(0,V.Y)(r.D,{children:(0,V.FD)(c.A,{separator:(0,V.Y)(r.b,{}),...i,...n,css:(0,t.AH)((0,r.g)(a.options.enableAnimation),h,"",""),children:[i.children,l&&i.children&&(0,V.Y)(e.Item,{children:" "})]})})};return e.Item=c.A.Item,e.Separator=c.A.Separator,e})();function ys(e){const o=e.split("").map((e=>e.charCodeAt(0))).reduce(((e,o)=>e+o),0);return Math.sin(o)/2+.5}function Hs(e){return function(e,o){for(let n=e.length-1;n>0;n--){const r=Math.floor(ys(o+String(n))*(n+1));[e[n],e[r]]=[e[r],e[n]]}return e}([48,24,0],e)}const Cs=(0,t.i7)({"0%":{backgroundPosition:"100% 50%"},"100%":{backgroundPosition:"0 50%"}}),Rs=function(e){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:60;const n=e.isDarkMode?"rgba(255, 255, 255, 0.1)":"rgba(31, 38, 45, 0.1)",r=e.isDarkMode?"rgba(99, 99, 99, 0.24)":"rgba(129, 129, 129, 0.24)";return(0,t.AH)({animationDuration:"1.4s",background:`linear-gradient(90deg, ${n} 25%, ${r} 37%, ${n} 63%)`,backgroundSize:"400% 100%",animationName:Cs,animationTimingFunction:`steps(${o}, end)`,animationIterationCount:14,"@media only percy":{animation:"none"}},"","")};const Zs={name:"12h7em6",styles:"cursor:progress;border-radius:var(--border-radius)"},Is=e=>{let{label:o,frameRate:n=60,style:t,loading:l=!0,loadingDescription:i="GenericSkeleton",...a}=e;const{theme:c}=(0,r.u)();return(0,V.FD)("div",{css:[Zs,Rs(c,n),""],style:{...t,"--border-radius":`${c.general.borderRadiusBase}px`},...a,children:[l&&(0,V.Y)(r.L,{description:i}),(0,V.Y)("span",{css:r.v,children:o})]})};const Ms={name:"sj05g9",styles:"cursor:progress;width:100%;height:20px;display:flex;justify-content:flex-start;align-items:center"},As={name:"10nptxl",styles:"border-radius:var(--border-radius);height:8px"},Vs=e=>{let{label:o,seed:n="",frameRate:t=60,style:l,loading:i=!0,loadingDescription:a="ParagraphSkeleton",...c}=e;const{theme:d}=(0,r.u)(),s=Hs(n)[0];return(0,V.FD)("div",{css:Ms,style:{...l,"--border-radius":`${d.general.borderRadiusBase}px`},...c,children:[i&&(0,V.Y)(r.L,{description:a}),(0,V.Y)("span",{css:r.v,children:o}),(0,V.Y)("div",{"aria-hidden":!0,css:[As,Rs(d,t),{width:`calc(100% - ${s}px)`},""]})]})};const ks={name:"116rc6i",styles:"cursor:progress;width:100%;height:28px;display:flex;justify-content:flex-start;align-items:center"},Ds={name:"9fmdbb",styles:"border-radius:var(--border-radius);height:12px;width:100%"},Bs=e=>{let{label:o,frameRate:n=60,style:t,loading:l=!0,loadingDescription:i="TitleSkeleton",...a}=e;const{theme:c}=(0,r.u)();return(0,V.FD)("div",{css:ks,style:{...t,"--border-radius":`${c.general.borderRadiusBase}px`},...a,children:[l&&(0,V.Y)(r.L,{description:i}),(0,V.Y)("span",{css:r.v,children:o}),(0,V.Y)("div",{"aria-hidden":!0,css:[Ds,Rs(c,n),""]})]})};function Ss(){return E()(20,(()=>j()(35).toString(36))).join("")}const $s={cell:`js--ds-table-cell-${Ss()}`,header:`js--ds-table-header-${Ss()}`,row:`js--ds-table-row-${Ss()}`},Ps={cell:{name:"fdi8dv",styles:"display:inline-grid;position:relative;flex:1;box-sizing:border-box;padding-left:var(--table-spacing-sm);padding-right:var(--table-spacing-sm);word-break:break-word;overflow:hidden;& .anticon{vertical-align:text-bottom;}"},header:{name:"ik7qgz",styles:'font-weight:bold;align-items:flex-end;display:flex;overflow:hidden;&[aria-sort]{cursor:pointer;user-select:none;}.table-header-text{color:var(--table-header-text-color);}.table-header-icon-container{color:var(--table-header-sort-icon-color);display:none;}&[aria-sort]:hover{.table-header-icon-container, .table-header-text{color:var(--table-header-focus-color);}}&[aria-sort]:active{.table-header-icon-container, .table-header-text{color:var(--table-header-active-color);}}&:hover, &[aria-sort="ascending"], &[aria-sort="descending"]{.table-header-icon-container{display:inline;}}'},row:{name:"ndcf6g",styles:'display:flex;&.table-isHeader{> *{background-color:var(--table-header-background-color);}.table-isScrollable &{position:sticky;top:0;z-index:1;}}.table-row-select-cell input[type="checkbox"] ~ *{opacity:var(--row-checkbox-opacity, 0);}&:not(.table-row-isGrid)&:hover{&:not(.table-isHeader){background-color:var(--table-row-hover);}.table-row-select-cell input[type="checkbox"] ~ *{opacity:1;}}.table-row-select-cell input[type="checkbox"]:focus ~ *{opacity:1;}> *{padding-top:var(--table-row-vertical-padding);padding-bottom:var(--table-row-vertical-padding);border-bottom:1px solid;border-color:var(--table-separator-color);}&.table-row-isGrid > *{border-right:1px solid;border-color:var(--table-separator-color);}&.table-row-isGrid > :first-of-type{border-left:1px solid;border-color:var(--table-separator-color);}&.table-row-isGrid.table-isHeader:first-of-type > *{border-top:1px solid;border-color:var(--table-separator-color);}'}};var Ls={tableWrapper:(0,t.AH)({"&.table-isScrollable":{overflow:"auto"},display:"flex",flexDirection:"column",height:"100%",[`.${$s.cell}`]:Ps.cell,[`.${$s.header}`]:Ps.header,[`.${$s.row}`]:Ps.row},"",""),table:{name:"oxmfz7",styles:".table-isScrollable &{flex:1;overflow:auto;}"},headerButtonTarget:{name:"sezlox",styles:"align-items:flex-end;display:flex;overflow:hidden;width:100%;justify-content:inherit;&:focus{.table-header-text{color:var(--table-header-focus-color);}.table-header-icon-container{color:var(--table-header-focus-color);display:inline;}}&:active{.table-header-icon-container, .table-header-text{color:var(--table-header-active-color);}}"},sortHeaderIconOnRight:{name:"1hdiaor",styles:"margin-left:var(--table-spacing-xs)"},sortHeaderIconOnLeft:{name:"d4plmt",styles:"margin-right:var(--table-spacing-xs)"},checkboxCell:{name:"4cdr0s",styles:"display:flex;align-items:center;flex:0;padding-left:var(--table-spacing-sm);padding-top:0;padding-bottom:0;min-width:var(--table-spacing-md);max-width:var(--table-spacing-md);box-sizing:content-box"},resizeHandleContainer:(0,t.AH)({position:"absolute",right:-3,top:"var(--table-spacing-sm)",bottom:"var(--table-spacing-sm)",width:"var(--table-spacing-sm)",display:"flex",justifyContent:"center",cursor:"col-resize",userSelect:"none",touchAction:"none",zIndex:1},"",""),resizeHandle:{name:"55zery",styles:"width:1px;background:var(--table-resize-handle-color)"},paginationContainer:{name:"ehlmid",styles:"display:flex;justify-content:flex-end;padding-top:var(--table-spacing-sm);padding-bottom:var(--table-spacing-sm)"}};const Ns=(0,k.createContext)({size:"default",grid:!1}),Fs=(0,k.forwardRef)((function(e,o){let{children:n,size:l="default",someRowsSelected:i,style:a,pagination:c,empty:d,className:s,scrollable:h=!1,grid:u=!1,...f}=e;const{theme:p}=(0,r.u)(),[v,g]=(0,k.useState)(!1),m=(0,k.useRef)(null),w=(0,r.s)("databricks.fe.wexp.enableReflowWrapStyles",!1);return(0,k.useImperativeHandle)(o,(()=>m.current)),(0,k.useEffect)((()=>{const e=m.current;e&&(e.scrollHeight>e.clientHeight?g(!0):g(!1))}),[]),(0,V.Y)(Ns.Provider,{value:{size:l,someRowsSelected:i,grid:u},children:(0,V.FD)("div",{...f,style:{...a,"--table-header-active-color":p.colors.actionDefaultTextPress,colorScheme:p.isDarkMode?"dark":void 0,"--table-header-background-color":p.colors.backgroundPrimary,"--table-header-focus-color":p.colors.actionDefaultTextHover,"--table-header-sort-icon-color":p.colors.textSecondary,"--table-header-text-color":p.colors.actionDefaultTextDefault,"--table-row-hover":p.colors.tableRowHover,"--table-separator-color":p.colors.borderDecorative,"--table-resize-handle-color":p.colors.borderDecorative,"--table-spacing-md":`${p.spacing.md}px`,"--table-spacing-sm":`${p.spacing.sm}px`,"--table-spacing-xs":`${p.spacing.xs}px`},css:[Ls.tableWrapper,(0,t.AH)(w&&{minHeight:!d&&c?150:100},"",""),""],className:B()({"table-isScrollable":h,"table-isGrid":u},s),children:[(0,V.FD)("div",{role:"table",ref:m,css:Ls.table,tabIndex:v?0:-1,children:[n,d&&(0,V.Y)("div",{css:(0,t.AH)({padding:p.spacing.lg},"",""),children:d})]}),!d&&c&&(0,V.Y)("div",{css:Ls.paginationContainer,children:c})]})})})),Ts=(0,k.forwardRef)((function(e,o){let{children:n,className:t,ellipsis:l=!1,multiline:i=!1,align:a="left",style:c,wrapContent:d=!0,...s}=e;const{size:h,grid:u}=(0,k.useContext)(Ns);let f="md";"small"===h&&(f="sm");const p=!0===d?(0,V.Y)(r.T.Text,{ellipsis:!i,size:f,title:!i&&"string"===typeof n&&n||void 0,children:n}):n;return(0,V.Y)("div",{...s,role:"cell",style:{textAlign:a,...c},ref:o,css:u?void 0:Ps.cell,className:B()(u&&$s.cell,t),children:p})})),zs=(0,k.createContext)({isHeader:!1}),_s=(0,k.forwardRef)((function(e,o){let{children:n,className:t,style:l,isHeader:i=!1,verticalAlignment:a,...c}=e;const{size:d,grid:s}=(0,k.useContext)(Ns),{theme:h}=(0,r.u)();let u;return u=i&&"default"===d?h.spacing.sm:"default"===d?6:h.spacing.xs,(0,V.Y)(zs.Provider,{value:{isHeader:i},children:(0,V.Y)("div",{...c,ref:o,role:"row",style:{...l,"--table-row-vertical-padding":`${u}px`},css:s?void 0:Ps.row,className:B()(t,s&&$s.row,{"table-isHeader":i,"table-row-isGrid":s}),children:n})})}));const Os={container:{name:"gk361n",styles:"width:32px;padding-top:var(--vertical-padding);padding-bottom:var(--vertical-padding);display:flex;align-items:start;justify-content:center"}},Es=(0,k.forwardRef)((function(e,o){let{children:n,style:t,className:l,...i}=e;const{size:a}=(0,k.useContext)(Ns),{isHeader:c}=(0,k.useContext)(zs),{theme:d}=(0,r.u)();return(0,V.Y)("div",{...i,ref:o,role:c?"columnheader":"cell",style:{...t,"--vertical-padding":"default"===a?`${d.spacing.xs}px`:0},css:Os.container,className:l,children:n})}));const Ws={container:{name:"6kz1wu",styles:"display:flex;flex-direction:column;align-items:flex-start"},cell:{name:"1t820zr",styles:"width:100%;height:8px;border-radius:4px;background:var(--table-skeleton-color);margin-top:var(--table-skeleton-row-vertical-margin);margin-bottom:var(--table-skeleton-row-vertical-margin)"}},js=e=>{let{lines:o=1,seed:n="",frameRate:t=60,style:l}=e;const{theme:i}=(0,r.u)(),{size:a}=(0,k.useContext)(Ns),c=Hs(n);return(0,V.Y)("div",{"aria-busy":!0,css:Ws.container,role:"status",style:{...l,"--table-skeleton-color":i.isDarkMode?"rgba(255, 255, 255, 0.1)":"rgba(31, 38, 45, 0.1)","--table-skeleton-row-vertical-margin":"small"===a?"4px":"6px"},children:[...Array(o)].map(((e,o)=>(0,V.Y)("div",{css:[Ws.cell,Rs(i,t),{width:`calc(100% - ${c[o%c.length]}px)`},""]},o)))})},Gs=e=>{let{table:o,actionColumnIds:n=[],numRows:t=3,loading:l=!0,loadingDescription:i="Table skeleton rows"}=e;const{theme:a}=(0,r.u)();return(0,V.FD)(V.FK,{children:[l&&(0,V.Y)(r.L,{description:i}),[...Array(t).keys()].map((e=>(0,V.Y)(_s,{children:o.getFlatHeaders().map((o=>{var r,t;const l=o.column.columnDef.meta;return n.includes(o.id)?(0,V.Y)(Es,{children:(0,V.Y)(js,{style:{width:a.general.iconSize}})},`cell-${o.id}-${e}`):(0,V.Y)(Ts,{style:null!==(r=null===l||void 0===l?void 0:l.styles)&&void 0!==r?r:void 0!==(null===l||void 0===l?void 0:l.width)?{maxWidth:l.width}:{},children:(0,V.Y)(js,{seed:`skeleton-${o.id}-${e}`,lines:null!==(t=null===l||void 0===l?void 0:l.numSkeletonLines)&&void 0!==t?t:void 0})},`cell-${o.id}-${e}`)}))},e)))]})};function Ks(e,o){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];const t=`.${e}-input`,l=`.${e}-inner`,i=`.${e}-indeterminate`,a=`.${e}-checked`,c=`.${e}-disabled`,d=`.${e}-wrapper-disabled`,s=`.${e}-group`,h=`.${e}-wrapper`,u=`${t} + ${l}`,f=`${t}:hover + ${l}`,p=`${t}:active + ${l}`;return{...(0,r.s)("databricks.fe.designsystem.enableNewCheckboxStyles",!1)?{[`.${e}`]:{top:"unset",lineHeight:o.typography.lineHeightBase},[`&${h}, ${h}`]:{alignItems:"center",lineHeight:o.typography.lineHeightBase}}:{},[l]:{borderColor:o.colors.actionDefaultBorderDefault},[`&> span:not(.${e})`]:{display:"inline-flex",alignItems:"center"},[`&${s}`]:{display:"flex",flexDirection:"column",rowGap:o.spacing.sm,columnGap:0},...n&&{[`&${s}`]:{display:"flex",flexDirection:"row",columnGap:o.spacing.sm,rowGap:0,[`& > ${s}-item`]:{marginRight:0}}},[`${t}:focus-visible + ${l}`]:{outlineWidth:"2px",outlineColor:o.colors.primary,outlineOffset:"4px",outlineStyle:"solid"},[f]:{backgroundColor:o.colors.actionDefaultBackgroundHover,borderColor:o.colors.actionPrimaryBackgroundHover},[p]:{backgroundColor:o.colors.actionDefaultBackgroundPress,borderColor:o.colors.actionPrimaryBackgroundPress},[a]:{"&::after":{border:"none"},[u]:{backgroundColor:o.colors.actionPrimaryBackgroundDefault,borderColor:"transparent"},[f]:{backgroundColor:o.colors.actionPrimaryBackgroundHover,borderColor:"transparent"},[p]:{backgroundColor:o.colors.actionPrimaryBackgroundPress,borderColor:"transparent"}},[i]:{[l]:{backgroundColor:o.colors.actionPrimaryBackgroundDefault,borderColor:o.colors.actionPrimaryBackgroundDefault,"&:after":{backgroundColor:o.colors.white,height:"3px",width:"8px",borderRadius:"4px"}},[f]:{backgroundColor:o.colors.actionPrimaryBackgroundHover,borderColor:"transparent"},[p]:{backgroundColor:o.colors.actionPrimaryBackgroundPress}},[`&${d}`]:{[c]:{[`&${a}`]:{[l]:{backgroundColor:o.colors.actionDisabledBackground,borderColor:o.colors.actionDisabledBackground},[f]:{backgroundColor:o.colors.actionDisabledBackground,borderColor:o.colors.actionDisabledBackground}},[`&${i}`]:{[l]:{backgroundColor:o.colors.actionDisabledBackground,borderColor:o.colors.actionDisabledBackground},[f]:{backgroundColor:o.colors.actionDisabledBackground,borderColor:o.colors.actionDisabledBackground}},[l]:{backgroundColor:o.colors.actionDisabledBackground,borderColor:o.colors.actionDisabledBackground,"&:after":{borderColor:o.colors.white}},[f]:{backgroundColor:o.colors.actionDisabledBackground,borderColor:o.colors.actionDisabledBackground},"& + span":{color:o.colors.actionDisabledText}}},...(0,r.g)(o.options.enableAnimation)}}const Us=e=>{let{clsPrefix:o,theme:n,wrapperStyle:l={}}=e;const i=(0,r.s)("databricks.fe.designsystem.enableNewCheckboxStyles",!1),a={height:n.typography.lineHeightBase,lineHeight:n.typography.lineHeightBase,...i?{[`&& + .${o}-hint, && + .${o}-form-message`]:{paddingLeft:n.spacing.lg,marginTop:0}}:{},...l};return(0,t.AH)(a,"","")},qs=(0,k.forwardRef)((function(e,o){let{isChecked:n,onChange:l,children:i,isDisabled:a=!1,style:c,wrapperStyle:s,dangerouslySetAntdProps:h,className:u,...f}=e;const{theme:p,classNamePrefix:v,getPrefixedClassName:g}=(0,r.u)(),m=g("checkbox");return(0,V.Y)(r.D,{children:(0,V.Y)("div",{className:B()(u,`${m}-container`),css:Us({clsPrefix:v,theme:p,wrapperStyle:s}),children:(0,V.Y)(d.A,{checked:null===n?void 0:n,ref:o,onChange:l?e=>{l(e.target.checked,e)}:void 0,disabled:a,indeterminate:null===n,css:(0,t.AH)((0,r.i)(Ks(m,p,!1)),"",""),style:c,"aria-checked":null===n?"mixed":n,...f,...h,children:(0,V.Y)(r.R,{children:i})})})})})),Xs=(0,k.forwardRef)((function(e,o){let{children:n,layout:t="vertical",...l}=e;const{theme:i,getPrefixedClassName:a}=(0,r.u)(),c=a("checkbox");return(0,V.Y)(r.D,{children:(0,V.Y)(d.A.Group,{ref:o,...l,css:Ks(c,i,"horizontal"===t),children:(0,V.Y)(r.R,{children:n})})})})),Qs=Object.assign(qs,{Group:Xs}),Js=e=>{let{children:o,title:n,placement:l="top",dataTestId:i,dangerouslySetAntdProps:a,silenceScreenReader:c=!1,useAsLabel:d=!1,...h}=e;const{theme:u}=(0,r.u)(),f=(0,r.c)("dubois-tooltip-component-");if(!n)return(0,V.Y)(k.Fragment,{children:o});const p=c?{}:{"aria-live":"polite","aria-relevant":"additions"};i&&(p["data-testid"]=i);const v=n&&k.isValidElement(n)?k.cloneElement(n,p):(0,V.Y)("span",{...p,children:n}),g={[d?"aria-labelledby":"aria-describedby"]:f,"aria-hidden":!1},m=k.isValidElement(o)?k.cloneElement(o,{...g,...o.props}):L()(o)?o:(0,V.Y)("span",{...g,children:o}),{overlayInnerStyle:w,overlayStyle:x,...b}=a||{};return(0,V.Y)(r.D,{children:(0,V.Y)(s.A,{id:f,title:v,placement:l,trigger:["hover","focus"],overlayInnerStyle:{backgroundColor:"#2F3941",lineHeight:"22px",padding:"4px 8px",boxShadow:u.general.shadowLow,...w,...(0,r.a)(u)},overlayStyle:{zIndex:u.options.zIndexBase+70,...x},css:(0,t.AH)({...(0,r.g)(u.options.enableAnimation)},"",""),...b,...h,children:m})})},eh=e=>{let{title:o,tooltipProps:n,iconTitle:l,isKeyboardFocusable:i=!0,...a}=e;const{theme:c}=(0,r.u)();return(0,V.Y)(Js,{title:o,...n,children:(0,V.Y)("span",{style:{display:"inline-flex"},tabIndex:i?0:-1,children:(0,V.Y)(_.A,{"aria-hidden":"false",title:l,"aria-label":l,css:(0,t.AH)({fontSize:c.typography.fontSizeSm,color:c.colors.textSecondary},"",""),...a})})})},oh=(e,o,n,r)=>{const t=k.Children.count(e),l=(0,V.Y)(Js,{title:n,placement:"right",dangerouslySetAntdProps:{getPopupContainer:()=>r.current||document.body},children:(0,V.Y)("span",{css:e=>(e=>({display:"inline-flex",paddingLeft:e.spacing.xs,color:e.colors.textSecondary,pointerEvents:"all"}))(e),onClick:e=>{o.disabled&&e.stopPropagation()},children:(0,V.Y)(Wt,{role:"presentation",alt:"Disabled state reason","aria-hidden":"false"})})});return 1===t?nh(e,Boolean(o.disabled),n,l,0,t):k.Children.map(e,((e,r)=>nh(e,Boolean(o.disabled),n,l,r,t)))},nh=(e,o,n,r,t,l)=>{const i=(0,V.Y)(bh,{}).type,a=Boolean(e&&"string"!==typeof e&&"number"!==typeof e&&"boolean"!==typeof e&&"type"in e&&(null===e||void 0===e?void 0:e.type)===i);return o&&n&&e&&a?(0,V.FD)(V.FK,{children:[r,e]}):t===l-1&&o&&n?(0,V.FD)(V.FK,{children:[e,r]}):e},rh=$.bL,th=(0,k.forwardRef)((function(e,o){let{children:n,minWidth:t=220,isInsideModal:l,onEscapeKeyDown:i,onKeyDown:a,...c}=e;const{getPopupContainer:d}=(0,r.d)();return(0,V.Y)($.ZL,{container:d&&d(),children:(0,V.Y)($.UC,{ref:o,loop:!0,css:[Rh,{minWidth:t},""],sideOffset:4,align:"start",onKeyDown:e=>{"Escape"===e.key&&(l&&e.stopPropagation(),null===i||void 0===i||i(e.nativeEvent)),null===a||void 0===a||a(e)},...c,children:n})})})),lh=(0,k.forwardRef)((function(e,o){let{children:n,minWidth:t=220,...l}=e;const{getPopupContainer:i}=(0,r.d)(),[a,c]=k.useState(!0),[d,s]=k.useState(null),{isOpen:h}=mh(),u=(0,r.s)("databricks.fe.designsystem.useResponsiveDropdownPosition",!1),f=(0,k.useRef)(null);(0,k.useImperativeHandle)(o,(()=>f.current));const p=(0,k.useCallback)((()=>{if(u&&f.current){const e=getComputedStyle(f.current),o=parseFloat(e.getPropertyValue("--radix-dropdown-menu-content-available-width")),n=f.current.offsetWidth,r=f.current.getAttribute("data-side");s("left"===r||"right"===r?r:null),c(!(o<n))}}),[u]);(0,k.useEffect)((()=>{if(u)return window.addEventListener("resize",p),p(),()=>{window.removeEventListener("resize",p)}}),[u,p]),(0,k.useEffect)((()=>{u&&h&&setTimeout((()=>{p()}),25)}),[h,u,p]);let v="calc(var(--radix-dropdown-menu-content-available-width) + var(--radix-dropdown-menu-trigger-width) * -1)";"left"===d&&(v="calc(var(--radix-dropdown-menu-trigger-width) - var(--radix-dropdown-menu-content-available-width))");const g=` \n transform-origin: var(--radix-dropdown-menu-content-transform-origin) !important;\n transform: translateX(${v}) !important;\n`;return(0,V.Y)($.ZL,{container:i&&i(),children:(0,V.Y)($.G5,{ref:f,loop:!0,css:[Rh,{minWidth:t},u?a?"":g:"",""],sideOffset:-2,alignOffset:-5,...l,children:n})})})),ih=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)($.l9,{ref:o,...r,children:n})})),ah=(0,k.forwardRef)((function(e,o){let{children:n,disabledReason:r,danger:t,onClick:l,...i}=e;const a=(0,k.useRef)(null);return(0,k.useImperativeHandle)(o,(()=>a.current)),(0,V.Y)($.q7,{css:e=>[Zh,t&&Ih(e)],ref:a,onClick:e=>{i.disabled?e.preventDefault():null===l||void 0===l||l(e)},...i,children:oh(n,i,r,a)})})),ch=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)($.JU,{ref:o,css:[Zh,e=>({color:e.colors.textSecondary,"&:hover":{cursor:"default"}}),""],...r,children:n})})),dh=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)($.wv,{ref:o,css:Vh,...r,children:n})})),sh=(0,k.forwardRef)((function(e,o){let{children:n,disabledReason:t,...l}=e;const i=(0,k.useRef)(null);return(0,k.useImperativeHandle)(o,(()=>i.current)),(0,V.FD)($.ZP,{ref:i,css:[Zh,e=>({'&[data-state="open"]':{backgroundColor:e.colors.actionTertiaryBackgroundHover}}),""],...l,children:[oh(n,l,t,i),(0,V.Y)(bh,{css:e=>({margin:Hh.subMenuIconMargin(e),display:"flex",alignSelf:"stretch",alignItems:"center"}),children:(0,V.Y)(r.b,{css:e=>({fontSize:Hh.subMenuIconSize(e)})})})]})})),hh=sh,uh=(0,k.forwardRef)((function(e,o){let{children:n,disabledReason:r,...t}=e;const l=(0,k.useRef)(null);return(0,k.useImperativeHandle)(o,(()=>l.current)),(0,V.Y)($.H_,{ref:l,css:e=>[Zh,Mh(e)],...t,children:oh(n,t,r,l)})})),fh=(0,k.forwardRef)((function(e,o){let{children:n,...t}=e;return(0,V.Y)($.VF,{ref:o,css:e=>({marginLeft:-(Hh.checkboxIconWidth(e)+Hh.checkboxPaddingRight(e)),position:"absolute",fontSize:e.general.iconFontSize}),...t,children:null!==n&&void 0!==n?n:(0,V.Y)(r.e,{css:e=>({color:e.colors.textSecondary})})})})),ph=(0,k.forwardRef)((function(e,o){let{children:n,...l}=e;const{theme:i}=(0,r.u)();return(0,V.Y)($.i3,{css:(0,t.AH)({fill:i.colors.backgroundPrimary,stroke:i.colors.borderDecorative,strokeDashoffset:-Hh.arrowBottomLength(),strokeDasharray:Hh.arrowBottomLength()+2*Hh.arrowSide(),strokeWidth:Hh.arrowStrokeWidth(),position:"relative",top:-1},"",""),ref:o,width:12,height:6,...l,children:n})})),vh=(0,k.forwardRef)((function(e,o){let{children:n,disabledReason:r,...t}=e;const l=(0,k.useRef)(null);return(0,k.useImperativeHandle)(o,(()=>l.current)),(0,V.Y)($.hN,{ref:l,css:e=>[Zh,Mh(e)],...t,children:oh(n,t,r,l)})})),gh=(0,k.createContext)({isOpen:!1}),mh=()=>k.useContext(gh),wh=$.YJ,xh=$.z6,bh=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)("div",{ref:o,css:[Ah,"margin-left:auto;"],...r,children:n})})),Yh=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)("div",{ref:o,css:[Ah,"min-width:100%;"],...r,children:n})})),yh=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)("div",{ref:o,css:e=>({fontSize:16,color:e.colors.textSecondary,paddingRight:e.spacing.sm}),...r,children:n})})),Hh={itemPaddingVertical(e){return.5*e.spacing.xs+.5*e.spacing.sm},itemPaddingHorizontal(e){return e.spacing.sm},checkboxIconWidth(e){return e.general.iconFontSize},checkboxPaddingLeft(e){return e.spacing.sm+e.spacing.xs},checkboxPaddingRight(e){return e.spacing.sm},subMenuIconMargin(e){const o=this.itemPaddingVertical(e)/2;return`${-o}px ${-(-this.itemPaddingVertical(e)+1.5*e.spacing.sm)}px ${-o}px auto`},subMenuIconSize(e){return e.spacing.lg},arrowBottomLength(){return 30},arrowHeight(){return 10},arrowSide(){return 2*(this.arrowHeight()**2*2)**.5},arrowStrokeWidth(){return 2}},Ch=e=>({backgroundColor:e.colors.backgroundPrimary,color:e.colors.textPrimary,lineHeight:e.typography.lineHeightBase,border:`1px solid ${e.colors.borderDecorative}`,borderRadius:e.borders.borderRadiusMd,padding:`${e.spacing.xs}px 0`,boxShadow:e.general.shadowLow,userSelect:"none",...(0,r.a)(e),zIndex:1e4,a:(0,r.i)({color:e.colors.textPrimary,"&:hover, &:focus":{color:e.colors.textPrimary,textDecoration:"none"}})}),Rh=e=>({...Ch(e)}),Zh=e=>({padding:`${Hh.itemPaddingVertical(e)}px ${Hh.itemPaddingHorizontal(e)}px`,display:"flex",flexWrap:"wrap",alignItems:"center",outline:"unset","&:hover":{cursor:"pointer"},"&:focus":{backgroundColor:e.colors.actionTertiaryBackgroundHover},"&[data-disabled]":{pointerEvents:"none",color:e.colors.actionDisabledText}}),Ih=e=>({color:e.colors.textValidationDanger,"&:hover, &:focus":{backgroundColor:e.colors.actionDangerDefaultBackgroundHover}}),Mh=e=>({position:"relative",paddingLeft:Hh.checkboxIconWidth(e)+Hh.checkboxPaddingLeft(e)+Hh.checkboxPaddingRight(e)}),Ah=e=>({color:e.colors.textSecondary,fontSize:e.typography.fontSizeSm,"[data-disabled] &":{color:e.colors.actionDisabledText}}),Vh=e=>({height:1,margin:`${e.spacing.xs}px ${e.spacing.sm}px`,backgroundColor:e.colors.borderDecorative});var kh=Object.freeze({__proto__:null,Arrow:ph,CheckboxItem:uh,Content:th,Group:wh,HintColumn:bh,HintRow:Yh,IconWrapper:yh,Item:ah,ItemIndicator:fh,Label:ch,RadioGroup:xh,RadioItem:vh,Root:rh,Separator:dh,Sub:e=>{var o;let{children:n,onOpenChange:r,...t}=e;const[l,i]=k.useState(null!==(o=t.defaultOpen)&&void 0!==o&&o);return(0,V.Y)($.Pb,{onOpenChange:e=>{null===r||void 0===r||r(e),i(e)},...t,children:(0,V.Y)(gh.Provider,{value:{isOpen:l},children:n})})},SubContent:lh,SubTrigger:sh,Trigger:ih,TriggerItem:hh,dropdownContentStyles:Ch,dropdownItemStyles:Zh,dropdownSeparatorStyles:Vh});S.tz,S.Rc,S.T3,S.Q2,S.BO,S._E,S.Fj;const Dh={label:"",value:[],isInsideDialogCombobox:!1,multiSelect:!1,setValue:()=>{},setIsControlled:()=>{},stayOpenOnSelection:!1,isOpen:!1,setIsOpen:()=>{},contentWidth:void 0,setContentWidth:()=>{},textOverflowMode:"multiline",setTextOverflowMode:()=>{},scrollToSelectedElement:!0,rememberLastScrollPosition:!1},Bh=(0,k.createContext)(Dh),Sh=e=>{let{children:o,value:n}=e;return(0,V.Y)(Bh.Provider,{value:n,children:o})},$h=()=>(0,k.useContext)(Bh),Ph=e=>{let{children:o,label:n,value:r=[],open:t,emptyText:l,scrollToSelectedElement:i=!0,rememberLastScrollPosition:a=!1,...c}=e;const[d,s]=(0,k.useState)(!1),[h,u]=(0,k.useState)(r),[f,p]=(0,k.useState)(Boolean(t)),[v,g]=(0,k.useState)(),[m,w]=(0,k.useState)("multiline");return(0,k.useEffect)((()=>{!(Array.isArray(h)&&Array.isArray(r)||h===r)||h&&r&&h.length===r.length&&h.every(((e,o)=>e===r[o]))||d||u(r)}),[r,d,h]),(0,V.Y)(Sh,{value:{label:n,value:h,setValue:u,setIsControlled:s,contentWidth:v,setContentWidth:g,textOverflowMode:m,setTextOverflowMode:w,isInsideDialogCombobox:!0,multiSelect:c.multiSelect,stayOpenOnSelection:c.stayOpenOnSelection,isOpen:f,setIsOpen:p,emptyText:l,scrollToSelectedElement:i,rememberLastScrollPosition:a},children:(0,V.Y)(Lh,{open:void 0!==t?t:f,...c,children:o})})},Lh=e=>{const{children:o,stayOpenOnSelection:n,multiSelect:r,...t}=e,{value:l,setIsOpen:i}=$h();return(0,k.useEffect)((()=>{n||"boolean"!==typeof n&&r||i(!1)}),[l,n,r,i]),(0,V.Y)(N.bL,{onOpenChange:e=>{i(e)},...t,children:o})},Nh=e=>(0,t.AH)({color:e.colors.textPlaceholder,fontSize:e.typography.fontSizeSm,marginLeft:e.spacing.xs,":hover":{color:e.colors.actionTertiaryTextHover}},"",""),Fh=e=>{let{...o}=e;const{theme:n}=(0,r.u)();return(0,V.Y)(Jd,{"aria-hidden":"false",css:Nh(n),role:"button","aria-label":"Clear selection",...o})},Th=e=>{var o;let{emptyText:n}=e;const{theme:l}=(0,r.u)(),{emptyText:i}=$h();return(0,V.Y)("div",{"aria-live":"assertive",css:(0,t.AH)({color:l.colors.textSecondary,textAlign:"center",padding:"6px 12px",width:"100%",boxSizing:"border-box"},"",""),children:null!==(o=null!==i&&void 0!==i?i:n)&&void 0!==o?o:"No results found"})},zh=e=>{let{disabled:o,children:n}=e;const{theme:l}=(0,r.u)();return(0,V.Y)("div",{css:(0,t.AH)({color:l.colors.textSecondary,fontSize:l.typography.fontSizeSm,...o&&{color:l.colors.actionDisabledText}},"",""),children:n})},_h=e=>{const{theme:o}=(0,r.u)();return(0,V.Y)(r.S,{css:(0,t.AH)({display:"flex",alignSelf:"center",justifyContent:"center",alignItems:"center",height:o.general.heightSm,width:o.general.heightSm,"> span":{fontSize:20}},"",""),...e})},Oh=e=>{let{children:o,...n}=e;const{theme:l}=(0,r.u)();return(0,V.Y)("div",{...n,css:(0,t.AH)({display:"flex",flexDirection:"row",alignItems:"flex-start",padding:`${l.spacing.xs}px ${l.spacing.lg/2}px`,alignSelf:"stretch",fontWeight:400,color:l.colors.textSecondary},"",""),children:o})},Eh=(e,o)=>{const n=e.spacing.xs+e.spacing.sm,r=e.spacing.md,t=e.spacing.sm;return"string"===typeof o?`calc(${o} - ${n+r+t}px)`:o-n+r+t};function Wh(e){return e.hasAttribute("disabled")&&"false"!==e.getAttribute("disabled")}function jh(e){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"start",n=arguments.length>2?arguments[2]:void 0;if(Wh(e)){const r=Gh(e,"end"===o?"previous":"next");r&&Kh(r,n)}else Kh(e,n)}function Gh(e,o){const n="previous"===o?e.previousElementSibling:e.nextElementSibling;if("option"===(null===n||void 0===n?void 0:n.getAttribute("role")))return Wh(n)?Gh(n,o):n;if(n){let e=n;for(;e&&("option"!==e.getAttribute("role")||Wh(e));)e="previous"===o?e.previousElementSibling:e.nextElementSibling;return e}return null}const Kh=function(e,o){var n;let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];o&&(o.setAttribute("tabIndex","-1"),o.setAttribute("data-highlighted","false")),r&&e.focus(),e.setAttribute("tabIndex","0"),e.setAttribute("data-highlighted","true"),null===(n=e.scrollIntoView)||void 0===n||n.call(e,{block:"center"})},Uh=e=>{var o;return null!==(o=e.find((e=>"true"===e.getAttribute("data-highlighted"))))&&void 0!==o?o:void 0},qh=e=>{var o;const n=null===(o=e.closest('[data-combobox-option-list="true"]'))||void 0===o?void 0:o.querySelectorAll('[role="option"]');return n?Array.from(n):void 0},Xh=(e,o)=>{let{onKeyDown:n,onMouseEnter:r,onDefaultKeyDown:t}=o;return{onKeyDown:o=>{switch(null===n||void 0===n||n(o),o.key){case"ArrowDown":o.preventDefault();const n=Gh(o.currentTarget,"next");if(n)Kh(n,o.currentTarget);else{var r;const e=null===(r=qh(o.currentTarget))||void 0===r?void 0:r[0];e&&jh(e,"start",o.currentTarget)}break;case"ArrowUp":o.preventDefault();const i=Gh(o.currentTarget,"previous");if(i)Kh(i,o.currentTarget);else{var l;const e=null===(l=qh(o.currentTarget))||void 0===l?void 0:l.slice(-1)[0];e&&jh(e,"end",o.currentTarget)}break;case"Enter":o.preventDefault(),e(o);break;default:null===t||void 0===t||t(o)}},onMouseEnter:e=>{null===r||void 0===r||r(e),Qh(e.currentTarget)}}},Qh=e=>{(e=>{const o=qh(e);null===o||void 0===o||o.forEach((e=>{e.setAttribute("tabIndex","-1"),e.setAttribute("data-highlighted","false")}))})(e),e.setAttribute("tabIndex","0"),e.focus()},Jh=(e,o,n)=>{var r,t;if("Escape"===e.key||"Tab"===e.key||"Enter"===e.key)return;e.preventDefault();const l=Array.from(null!==(r=null===(t=e.currentTarget.parentElement)||void 0===t?void 0:t.children)&&void 0!==r?r:[]),i=l.findIndex((o=>{var r,t;return(null!==(r=null===(t=o.textContent)||void 0===t?void 0:t.toLowerCase())&&void 0!==r?r:"").startsWith(n+e.key)}));if(-1!==i){const r=l[i];r.focus(),o&&o(n+e.key),Qh(r)}},eu=(e,o)=>{let{maxHeight:n="100vh",maxWidth:l="100vw",minHeight:i=0,minWidth:a=0,width:c}=o;return(0,t.AH)({maxHeight:n,maxWidth:l,minHeight:i,minWidth:a,...c?{width:c}:{},background:e.colors.backgroundPrimary,color:e.colors.textPrimary,overflow:"auto",zIndex:e.options.zIndexBase+10,boxSizing:"border-box",border:`1px solid ${e.colors.border}`,boxShadow:e.general.shadowLow,borderRadius:e.general.borderRadiusBase,colorScheme:e.isDarkMode?"dark":"light",...(0,r.a)(e)},"","")},ou=e=>(0,t.AH)((0,r.i)({display:"flex",flexDirection:"row",alignItems:"flex-start",justifyContent:"flex-start",alignSelf:"stretch",padding:"6px 32px 6px 12px",lineHeight:e.typography.lineHeightBase,boxSizing:"content-box",cursor:"pointer",userSelect:"none",'&:hover, &[data-highlighted="true"]':{background:e.colors.actionTertiaryBackgroundHover},"&:focus":{background:e.colors.actionTertiaryBackgroundHover,outline:"none"},"&[disabled]":{pointerEvents:"none",color:e.colors.actionDisabledText,background:e.colors.backgroundPrimary}}),"",""),nu=e=>{let{theme:o,dangerouslyHideCheck:n,textOverflowMode:r,contentWidth:l,hasHintColumn:i}=e;return(0,t.AH)({marginLeft:n?0:o.spacing.sm,fontSize:o.typography.fontSizeBase,fontStyle:"normal",fontWeight:400,cursor:"pointer",overflow:"hidden",wordBreak:"break-word",..."ellipsis"===r&&{textOverflow:"ellipsis",whiteSpace:"nowrap"},...l?{width:Eh(o,l)}:{},...i&&{display:"flex"}},"","")},ru=e=>(0,t.AH)({paddingLeft:e.spacing.xs,color:e.colors.textSecondary,pointerEvents:"all",cursor:"pointer",verticalAlign:"middle"},"",""),tu=(e,o)=>{const n=(0,r.s)("databricks.fe.designsystem.enableNewCheckboxStyles",!1);return(0,t.AH)({pointerEvents:"none",height:"unset",width:"100%","& > label":{display:"flex",width:"100%",fontSize:e.typography.fontSizeBase,fontStyle:"normal",fontWeight:400,cursor:"pointer","& > span:first-of-type":{alignSelf:"flex-start",display:"inline-flex",alignItems:"center",...n?{paddingTop:e.spacing.xs/2}:{}},"& > span:last-of-type":{paddingRight:0,width:"100%",overflow:"hidden",wordBreak:"break-word",..."ellipsis"===o?{textOverflow:"ellipsis",whiteSpace:"nowrap"}:{}}}},"","")},lu=e=>(0,t.AH)({width:"100%",background:e.colors.backgroundPrimary,padding:`${e.spacing.sm}px ${e.spacing.lg/2}px ${e.spacing.sm}px ${e.spacing.lg/2}px`,position:"sticky",bottom:0,boxSizing:"border-box","&:has(> .combobox-footer-add-button)":{padding:`${e.spacing.sm}px 0 ${e.spacing.sm}px 0`,"& > :not(.combobox-footer-add-button)":{marginLeft:e.spacing.lg/2+"px",marginRight:e.spacing.lg/2+"px"},"& > .combobox-footer-add-button":{justifyContent:"flex-start !important"}}},"",""),iu=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:50;return(0,t.AH)({flexGrow:1,display:"inline-grid",gridTemplateColumns:`${100-e}% ${e}%`},"","")},au=(e,o,n)=>(0,t.AH)({color:e.colors.textSecondary,fontSize:e.typography.fontSizeSm,textAlign:"right",...o&&{color:e.colors.actionDisabledText},..."ellipsis"===n&&{textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden"}},"","");const cu="var(--radix-popover-content-available-height)";var du={name:"1ij1o5n",styles:"display:flex;flex-direction:column;align-items:flex-start;justify-content:center"};const su=(0,k.forwardRef)(((e,o)=>{let{children:n,loading:t,loadingDescription:l="DialogComboboxContent",matchTriggerWidth:i,textOverflowMode:a,maxHeight:c,maxWidth:d,minHeight:s,minWidth:h=240,width:u,align:f="start",side:p="bottom",sideOffset:v=4,...g}=e;const{theme:m}=(0,r.u)(),{label:w,isInsideDialogCombobox:x,contentWidth:b,setContentWidth:Y,textOverflowMode:y,setTextOverflowMode:H,multiSelect:C,isOpen:R,rememberLastScrollPosition:Z}=$h(),{getPopupContainer:I}=(0,r.d)(),[M,A]=(0,k.useState)(0);if(!x)throw new Error("`DialogComboboxContent` must be used within `DialogCombobox`");const D=(0,k.useRef)(null);(0,k.useImperativeHandle)(o,(()=>D.current));const B=i?"var(--radix-popover-trigger-width)":u;return(0,k.useEffect)((()=>{if(Z){if(R||!D.current){const e=setInterval((()=>{D.current&&(M&&D.current.scrollHeight>=M&&D.current.scrollTo({top:M,behavior:"smooth"}),clearInterval(e))}),50);return()=>clearInterval(e)}A(D.current.scrollTop)}}),[R,Z,M]),(0,k.useEffect)((()=>{b!==B&&Y(B)}),[B,b,Y]),(0,k.useEffect)((()=>{a!==y&&H(a||"multiline")}),[a,y,H]),(0,V.Y)(N.ZL,{container:I&&I(),children:(0,V.Y)(N.UC,{"aria-label":`${w} options`,"aria-busy":t,role:"listbox","aria-multiselectable":C,css:eu(m,{maxHeight:c?`min(${c}px, ${cu})`:cu,maxWidth:d,minHeight:s,minWidth:h,width:B}),align:f,side:p,sideOffset:v,...g,ref:D,children:(0,V.Y)("div",{css:du,children:t?(0,V.Y)(_h,{label:"Loading",alt:"Loading spinner",loadingDescription:l}):n||(0,V.Y)(Th,{})})})})})),hu=e=>(0,t.AH)((0,r.i)({display:"inline-flex",alignItems:"center",justifyContent:"center",boxSizing:"border-box",padding:`${e.spacing.xs/2}px ${e.spacing.xs}px`,background:e.colors.tagDefault,borderRadius:e.general.borderRadiusBase,fontSize:e.typography.fontSizeBase,height:20}),"",""),uu=e=>{const{countStartAt:o,...n}=e,{theme:t}=(0,r.u)(),{value:l}=$h();return(0,V.Y)("div",{...n,css:hu(t),children:Array.isArray(l)?o?"+"+(l.length-o):l.length:l?1:0})},fu=e=>{let{children:o}=e;const{theme:n}=(0,r.u)();return(0,V.Y)("div",{css:(0,t.AH)({minWidth:"100%",color:n.colors.textSecondary,fontSize:n.typography.fontSizeSm,"[data-disabled] &":{color:n.colors.actionDisabledText}},"",""),children:o})},pu=(0,k.createContext)({isInsideDialogComboboxOptionList:!1,lookAhead:"",setLookAhead:()=>{}}),vu=e=>{let{children:o,value:n}=e;return(0,V.Y)(pu.Provider,{value:n,children:o})};var gu={name:"1pgv7dg",styles:"display:flex;flex-direction:column;align-items:flex-start;width:100%"};const mu=(0,k.forwardRef)(((e,o)=>{let{children:n,loading:r,loadingDescription:t="DialogComboboxOptionList",withProgressiveLoading:l,...i}=e;const{isInsideDialogCombobox:a}=$h(),c=(0,k.useRef)(null);(0,k.useImperativeHandle)(o,(()=>c.current));const[d,s]=(0,k.useState)("");if(!a)throw new Error("`DialogComboboxOptionList` must be used within `DialogCombobox`");const h=(0,k.useRef)(null);(0,k.useEffect)((()=>(h.current&&clearTimeout(h.current),h.current=setTimeout((()=>{s("")}),1500),()=>{h.current&&clearTimeout(h.current)})),[d]),(0,k.useEffect)((()=>{var e;if(r&&!l)return;const o=null===(e=c.current)||void 0===e?void 0:e.querySelectorAll('[role="option"]');if(!Array.from(null!==o&&void 0!==o?o:[]).some((e=>"0"===e.getAttribute("tabindex")))){const e=null===o||void 0===o?void 0:o[0];e&&jh(e,"start")}}),[r,l]);return(0,V.Y)("div",{ref:c,"aria-busy":r,"data-combobox-option-list":"true",css:gu,onMouseEnter:e=>{const o=e.target;if(o){var n;const e=o.hasAttribute("data-combobox-option-list")?o.querySelectorAll('[role="option"]'):null===o||void 0===o||null===(n=o.closest('[data-combobox-option-list="true"]'))||void 0===n?void 0:n.querySelectorAll('[role="option"]');e&&e.forEach((e=>e.removeAttribute("data-highlighted")))}},...i,children:(0,V.Y)(vu,{value:{isInsideDialogComboboxOptionList:!0,lookAhead:d,setLookAhead:s},children:r?l?(0,V.FD)(V.FK,{children:[n,(0,V.Y)(_h,{"aria-label":"Loading",alt:"Loading spinner",loadingDescription:t})]}):(0,V.Y)(_h,{"aria-label":"Loading",alt:"Loading spinner",loadingDescription:t}):n&&k.Children.toArray(n).some((e=>k.isValidElement(e)))?n:(0,V.Y)(Th,{})})})})),wu=()=>(0,k.useContext)(pu);var xu={name:"zjik7",styles:"display:flex"};const bu=(0,k.forwardRef)(((e,o)=>{let{value:n,checked:t,indeterminate:l,onChange:i,children:a,disabledReason:c,_TYPE:d,...s}=e;const{theme:h}=(0,r.u)(),{textOverflowMode:u,contentWidth:f}=$h(),{isInsideDialogComboboxOptionList:p,setLookAhead:v,lookAhead:g}=wu();if(!p)throw new Error("`DialogComboboxOptionListCheckboxItem` must be used within `DialogComboboxOptionList`");const m=e=>{i&&i(n,e)};let w=null!==a&&void 0!==a?a:n;return s.disabled&&c&&(w=(0,V.FD)("div",{css:xu,children:[(0,V.Y)("div",{children:w}),(0,V.Y)("div",{children:(0,V.Y)(Js,{title:c,placement:"right",children:(0,V.Y)("span",{css:ru(h),children:(0,V.Y)(Wt,{"aria-label":"Disabled status information","aria-hidden":"false"})})})})]})),(0,V.Y)("div",{ref:o,role:"option","aria-selected":!l&&t,css:[ou(h),""],...s,onClick:e=>{s.disabled?e.preventDefault():m(e)},tabIndex:-1,...Xh(m,{onKeyDown:s.onKeyDown,onMouseEnter:s.onMouseEnter,onDefaultKeyDown:e=>Jh(e,v,g)}),children:(0,V.Y)(Qs,{disabled:s.disabled,isChecked:l?null:t,css:[tu(h,u),f?{"& > span:last-of-type":{width:Eh(h,f)}}:{},""],tabIndex:-1,onClick:e=>{e.stopPropagation(),m(e)},children:(0,V.Y)("div",{children:w})})})}));bu.defaultProps={_TYPE:"DialogComboboxOptionListCheckboxItem"};const Yu=bu;const yu=e=>"string"===typeof e||"number"===typeof e?e.toString():k.isValidElement(e)&&e.props.children?k.Children.toArray(e.props.children).map(yu).join(" "):"";var Hu={name:"1d3w5wq",styles:"width:100%"};const Cu=(0,k.forwardRef)(((e,o)=>{var n,l;let{onChange:i,onSearch:a,virtualized:c,children:d,hasWrapper:s,controlledValue:h,setControlledValue:u,...f}=e;const{theme:p}=(0,r.u)(),{isInsideDialogComboboxOptionList:v}=wu(),[g,m]=k.useState();if(!v)throw new Error("`DialogComboboxOptionListSearch` must be used within `DialogComboboxOptionList`");let w=d;g&&!c&&void 0===h&&(w=((e,o)=>{var n;const r=o.toLowerCase();return null===(n=k.Children.map(e,(e=>{if(k.isValidElement(e)){var o,n;const i=null!==(o=null===(n=e.props.__EMOTION_TYPE_PLEASE_DO_NOT_USE__)||void 0===n?void 0:n.defaultProps._TYPE)&&void 0!==o?o:e.props._TYPE;if("DialogComboboxOptionListSelectItem"===i||"DialogComboboxOptionListCheckboxItem"===i){var t,l;const o=yu(e).toLowerCase(),n=null!==(t=null===(l=e.props.value)||void 0===l?void 0:l.toLowerCase())&&void 0!==t?t:"";return o.includes(r)||n.includes(r)?e:null}}return e})))||void 0===n?void 0:n.filter((e=>e))})(s?d.props.children:d,g),s&&(w=k.cloneElement(d,{},w)));const x=(0,k.useRef)(null);(0,k.useEffect)((()=>{if(!x.current)return;const e=qh(x.current);if(e){const o=Uh(e),n=null===e||void 0===e?void 0:e[0];n&&Kh(n,o,!1)}}),[g]);const b=k.Children.toArray(s?d.props.children:d).some((e=>k.isValidElement(e)));return(0,V.FD)(V.FK,{children:[(0,V.Y)("div",{ref:x,css:(0,t.AH)({padding:`${p.spacing.sm}px ${p.spacing.lg/2}px ${p.spacing.sm}px`,width:"100%",boxSizing:"border-box",position:"sticky",top:0,background:p.colors.backgroundPrimary,zIndex:p.options.zIndexBase+1},"",""),children:(0,V.Y)(r.f,{type:"search",name:"search",ref:o,prefix:(0,V.Y)(Ia,{}),placeholder:"Search",onChange:e=>{c||m(e.target.value.toLowerCase()),null===u||void 0===u||u(e.target.value),null===a||void 0===a||a(e.target.value)},onKeyDown:e=>{var o;(e=>{if("ArrowDown"!==e.key&&"ArrowUp"!==e.key&&"Enter"!==e.key)return;e.preventDefault();const o=qh(e.target);if(!o)return;const n=Uh(o);if("ArrowDown"===e.key||"ArrowUp"===e.key)if(n){const r=Gh(n,"ArrowDown"===e.key?"next":"previous");if(r)Kh(r,n,!1);else if("ArrowDown"===e.key){const e=o[0];Kh(e,n,!1)}else if("ArrowUp"===e.key){const e=o[o.length-1];Kh(e,n,!1)}}else{const n="ArrowDown"===e.key?o[0]:o[o.length-1];n&&Kh(n,void 0,!1)}else"Enter"===e.key&&n&&n.click()})(e),null===(o=f.onKeyDown)||void 0===o||o.call(f,e)},value:null!==h&&void 0!==h?h:g,...f})}),c?d:(s&&null!==(n=w)&&void 0!==n&&null!==(n=n.props.children)&&void 0!==n&&n.length||!s&&null!==(l=w)&&void 0!==l&&l.length)&&b?(0,V.Y)("div",{"aria-live":"polite",css:Hu,children:w}):(0,V.Y)(Th,{})]})})),Ru={isSelect:!1},Zu=(0,k.createContext)(Ru),Iu=e=>{let{children:o,value:n}=e;return(0,V.Y)(Zu.Provider,{value:n,children:o})},Mu=()=>(0,k.useContext)(Zu);var Au={name:"zjik7",styles:"display:flex"},Vu={name:"kjj0ot",styles:"padding-top:2px"};const ku=(0,k.forwardRef)(((e,o)=>{let{value:n,checked:t,disabledReason:l,onChange:i,hintColumn:a,hintColumnWidthPercent:c=50,children:d,_TYPE:s,icon:h,dangerouslyHideCheck:u,...f}=e;const{theme:p}=(0,r.u)(),{stayOpenOnSelection:v,isOpen:g,setIsOpen:m,value:w,contentWidth:x,textOverflowMode:b,scrollToSelectedElement:Y}=$h(),{isInsideDialogComboboxOptionList:y,lookAhead:H,setLookAhead:C}=wu(),{isSelect:R}=Mu();if(!y)throw new Error("`DialogComboboxOptionListSelectItem` must be used within `DialogComboboxOptionList`");const Z=(0,k.useRef)(null),I=(0,k.useRef)(t);(0,k.useImperativeHandle)(o,(()=>Z.current)),(0,k.useEffect)((()=>{if(Y&&g){if(t&&I.current===t){const e=setInterval((()=>{var o,n;Z.current&&(null===(o=Z.current)||void 0===o||null===(n=o.scrollIntoView)||void 0===n||n.call(o,{behavior:"smooth",block:"center"}),clearInterval(e))}),50);return()=>clearInterval(e)}I.current=t}}),[g,Y,t]);const M=e=>{if(i){if(R)return void i({value:n,label:"string"===typeof d?d:n},e);i(n,e),!v&&null!==w&&void 0!==w&&w.includes(n)&&m(!1)}};let A=null!==d&&void 0!==d?d:n;return f.disabled&&l&&(A=(0,V.FD)("div",{css:Au,children:[(0,V.Y)("div",{children:A}),(0,V.Y)(Js,{title:l,placement:"right",children:(0,V.Y)("span",{css:ru(p),children:(0,V.Y)(Wt,{"aria-label":"Disabled status information","aria-hidden":"false"})})})]})),(0,V.FD)("div",{ref:Z,css:[ou(p),{"&:focus":{background:p.colors.actionTertiaryBackgroundHover,outline:"none"}},""],...f,onClick:e=>{f.disabled?e.preventDefault():M(e)},tabIndex:-1,...Xh(M,{onKeyDown:f.onKeyDown,onMouseEnter:f.onMouseEnter,onDefaultKeyDown:e=>Jh(e,C,H)}),role:"option","aria-selected":t,children:[!u&&(t?(0,V.Y)(r.e,{css:Vu}):(0,V.Y)("div",{style:{width:16,flexShrink:0}})),(0,V.FD)("label",{css:nu({theme:p,dangerouslyHideCheck:u,textOverflowMode:b,contentWidth:x,hasHintColumn:Boolean(a)}),children:[h&&(0,V.Y)("span",{style:{position:"relative",top:1,marginRight:p.spacing.sm,color:p.colors.textSecondary},children:h}),a?(0,V.FD)("span",{css:iu(c),children:[A,(0,V.Y)("span",{css:au(p,Boolean(f.disabled),b),children:a})]}):A]})]})}));ku.defaultProps={_TYPE:"DialogComboboxOptionListSelectItem"};const Du=ku;const Bu=e=>{let{children:o,...n}=e;const{isInsideDialogCombobox:r}=$h();if(!r)throw new Error("`DialogComboboxSectionHeader` must be used within `DialogCombobox`");return(0,V.Y)(Oh,{...n,children:o})},Su=(e,o)=>(0,t.AH)((0,r.i)({display:"inline-flex",alignItems:"center",...o&&{width:o},...e&&{"& > button:last-of-type":(0,r.i)({borderBottomLeftRadius:0,borderTopLeftRadius:0,marginLeft:-1})}}),"",""),$u=(e,o,n,l,i,a,c,d)=>{const s={...l&&{zIndex:e.options.zIndexBase+2,"&& + button":{marginLeft:-1,zIndex:e.options.zIndexBase+1}}},h=(0,r.h)(e,a);return(0,t.AH)((0,r.i)({position:"relative",display:"inline-flex",alignItems:"center",maxWidth:o,minWidth:n,justifyContent:"flex-start",background:"transparent",padding:c?0:"6px 8px 6px 12px",boxSizing:"border-box",height:c?e.typography.lineHeightBase:e.general.heightSm,border:c?"none":`1px solid ${e.colors.actionDefaultBorderDefault}`,borderRadius:4,color:e.colors.textPrimary,lineHeight:e.typography.lineHeightBase,cursor:"pointer",...i&&{width:i,flex:1},...l&&{borderBottomRightRadius:0,borderTopRightRadius:0,borderRightColor:"transparent"},"&:hover":{background:c?"transparent":e.colors.actionDefaultBackgroundHover,borderColor:e.colors.actionDefaultBorderHover,...s},"&:focus":{borderColor:e.colors.actionDefaultBorderFocus,...s},...a&&{borderColor:h,"&:hover":{borderColor:h},"&:focus":{outlineColor:h,outlineOffset:-2}},"&[disabled]":{background:e.colors.actionDisabledBackground,color:e.colors.actionDisabledText,pointerEvents:"none",userSelect:"none"},...d&&{"&&, &&:hover, &&:focus":{background:"transparent"},"&&:hover":{borderColor:e.colors.actionDefaultBorderHover},'&&:focus, &[data-state="open"]':{outlineColor:e.colors.actionPrimaryBackgroundDefault,outlineWidth:2,outlineOffset:-2,outlineStyle:"solid",borderColor:"transparent",boxShadow:"none"}}}),"","")},Pu=(0,k.forwardRef)(((e,o)=>{var n;let{removable:l=!1,onRemove:i,children:a,minWidth:c=0,maxWidth:d=9999,showTagAfterValueCount:s=3,allowClear:h=!0,controlled:u,onClear:f,wrapperProps:p,width:v,withChevronIcon:g=!0,validationState:m,withInlineLabel:w=!0,placeholder:x,isBare:b=!1,...Y}=e;const{theme:y,classNamePrefix:H}=(0,r.u)(),{label:C,value:R,isInsideDialogCombobox:Z,multiSelect:I,setValue:M}=$h(),{isSelect:A,placeholder:D}=Mu();if(!Z)throw new Error("`DialogComboboxTrigger` must be used within `DialogCombobox`");const B=e=>{e.stopPropagation(),u?(M([]),null===f||void 0===f||f()):f?f():console.warn("DialogCombobox.Trigger: Attempted clear without providing onClear handler")},[S,$]=k.useState(),P=k.useRef(null);(0,k.useEffect)((()=>{if((null===R||void 0===R?void 0:R.length)>s)$(!0);else if(P.current){const{clientWidth:e,scrollWidth:o}=P.current;$(e<o)}}),[s,R]);const L=R.length,F=Array.isArray(R)?L>10?`${R.slice(0,10).join(", ")} + ${L-10}`:R.join(", "):R,T=(0,V.Y)("span",{children:F}),z=Array.isArray(R)?R.slice(0,s).join(", "):R;let _=k.isValidElement(C)?"Dialog Combobox":`${C}`;null!==R&&void 0!==R&&R.length?_+=I?`, multiselectable, ${R.length} options selected: ${F}`:`, selected option: ${F}`:_+=I?", multiselectable, 0 options selected":", no option selected";const O=A&&a?a:null,E=A?"":`${H}-dialogcombobox`,W=A?`${H}-selectv2`:"",j=A?(0,V.FD)(N.l9,{"aria-label":_,ref:o,role:"combobox","aria-haspopup":"listbox",...Y,css:$u(y,d,c,l,v,m,b,A),children:[(0,V.Y)("span",{css:(0,t.AH)({whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",height:y.typography.lineHeightBase,marginRight:"auto"},"",""),ref:P,children:null!==R&&void 0!==R&&R.length?null!==O&&void 0!==O?O:T:(0,V.Y)("span",{css:(0,t.AH)({color:y.colors.textPlaceholder},"",""),children:D})}),h&&null!==R&&void 0!==R&&R.length?(0,V.Y)(Fh,{onClick:B}):null,(0,V.Y)(en,{css:(0,t.AH)({color:y.colors.textSecondary,marginLeft:y.spacing.xs},"","")})]}):(0,V.FD)(N.l9,{"aria-label":_,ref:o,role:"combobox","aria-haspopup":"listbox",...Y,css:$u(y,d,c,l,v,m,b,A),children:[(0,V.FD)("span",{css:(0,t.AH)({display:"flex",alignItems:"center",height:y.typography.lineHeightBase,marginRight:"auto","&, & > *":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"}},"",""),ref:P,children:[w?(0,V.FD)("span",{css:(0,t.AH)({height:y.typography.lineHeightBase,marginRight:y.spacing.xs,whiteSpace:"unset",overflow:"unset",textOverflow:"unset"},"",""),children:[C,null!==R&&void 0!==R&&R.length?":":null]}):!(null!==R&&void 0!==R&&R.length)&&(0,V.Y)("span",{css:(0,t.AH)({color:y.colors.textPlaceholder},"",""),children:x}),(null===R||void 0===R?void 0:R.length)>s?(0,V.FD)(V.FK,{children:[(0,V.Y)("span",{style:{marginRight:y.spacing.xs},children:z}),(0,V.Y)(uu,{countStartAt:s,role:"status","aria-label":"Selected options count"})]}):T]}),h&&null!==R&&void 0!==R&&R.length?(0,V.Y)(Fh,{onClick:B}):null,g?(0,V.Y)(en,{css:(0,t.AH)({color:y.colors.textSecondary,justifySelf:"flex-end",marginLeft:y.spacing.xs},"","")}):null]});return(0,V.FD)("div",{...p,className:`${null!==(n=null===Y||void 0===Y?void 0:Y.className)&&void 0!==n?n:""} ${E} ${W}`.trim(),css:[Su(l,v),null===p||void 0===p?void 0:p.css,""],children:[S&&null!==R&&void 0!==R&&R.length?(0,V.Y)(Js,{title:null!==O&&void 0!==O?O:T,children:j}):j,l&&(0,V.Y)(r.B,{componentId:"codegen_design-system_src_design-system_dialogcombobox_dialogcomboboxtrigger.tsx_355","aria-label":`Remove ${C}`,onClick:()=>{i?i():console.warn("DialogCombobox.Trigger: Attempted remove without providing onRemove handler")},dangerouslySetForceIconStyles:!0,children:(0,V.Y)(r.C,{"aria-label":`Remove ${C}`,"aria-hidden":"false"})})]})})),Lu=e=>{let{size:o="md",shrinks:n,...l}=e;const{theme:i}=(0,r.u)(),a={xs:i.spacing.xs,sm:i.spacing.sm,md:i.spacing.md,lg:i.spacing.lg};return(0,V.Y)("div",{css:(0,t.AH)({height:a[o],...!1===n?{flexShrink:0}:void 0},"",""),...l})};var Nu={name:"zh83op",styles:"flex-grow:1;margin-bottom:0;margin-top:0;white-space:nowrap;overflow:hidden"};var Fu=Object.freeze({__proto__:null,Content:e=>{let{children:o,footer:n,title:l,width:i,position:a,useCustomScrollBehavior:c,expandContentToFullHeight:d,disableOpenAutoFocus:s,onInteractOutside:h,seeThrough:u,hideClose:f}=e;const{getPopupContainer:p}=(0,r.d)(),{theme:v}=(0,r.u)(),g=v.spacing.lg,[m,w]=(0,k.useState)(!1),x=(0,k.useRef)(null),b=(0,k.useCallback)((e=>{e&&e.clientHeight&&w(e.scrollHeight>e.clientHeight)}),[]),Y=null!==a&&void 0!==a?a:"right",y="right"===Y?(0,t.i7)({"0%":{transform:"translate(100%, 0)"},"100%":{transform:"translate(0, 0)"}}):(0,t.i7)({"0%":{transform:"translate(-100%, 0)"},"100%":{transform:"translate(0, 0)"}}),H=(0,t.AH)({color:v.colors.textPrimary,backgroundColor:v.colors.backgroundPrimary,boxShadow:"hsl(206 22% 7% / 35%) 0px 10px 38px -10px, hsl(206 22% 7% / 20%) 0px 10px 20px -15px",position:"fixed",top:0,left:"left"===Y?0:void 0,right:"right"===Y?0:void 0,boxSizing:"border-box",width:null!==i&&void 0!==i?i:320,minWidth:320,maxWidth:"90vw",zIndex:v.options.zIndexBase+20,height:"100vh",paddingTop:v.spacing.md,paddingLeft:0,paddingBottom:0,paddingRight:0,overflow:"hidden","&:focus":{outline:"none"},"@media (prefers-reduced-motion: no-preference)":{animation:`${y} 350ms cubic-bezier(0.16, 1, 0.3, 1)`}},"","");return(0,V.FD)(F.ZL,{container:p&&p(),children:[(0,V.Y)(F.hJ,{css:(0,t.AH)({backgroundColor:v.colors.overlayOverlay,position:"fixed",inset:0,zIndex:v.options.zIndexBase+10,opacity:u?0:1},"","")}),(0,V.Y)(F.Cf,{css:H,style:{display:"flex",flexDirection:"column",justifyContent:"flex-start",opacity:u?0:1,...v.isDarkMode&&{borderLeft:`1px solid ${v.colors.borderDecorative}`,boxShadow:"none"}},"aria-hidden":u,ref:x,onOpenAutoFocus:e=>{s&&e.preventDefault()},onInteractOutside:h,children:(0,V.FD)(r.A,{getPopupContainer:()=>{var e;return null!==(e=x.current)&&void 0!==e?e:document.body},children:[(0,V.FD)("div",{css:(0,t.AH)({flexGrow:0,flexShrink:1,display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",paddingRight:g,paddingLeft:g,marginBottom:v.spacing.sm},"",""),children:[(0,V.Y)(F.hE,{title:"string"===typeof l?l:void 0,asChild:"string"===typeof l,css:Nu,children:"string"===typeof l?(0,V.Y)(r.T.Title,{level:2,withoutMargins:!0,ellipsis:!0,children:l}):l}),!f&&(0,V.Y)(F.bm,{asChild:!0,css:(0,t.AH)({flexShrink:1,marginLeft:v.spacing.xs},"",""),children:(0,V.Y)(r.B,{componentId:"codegen_design-system_src_design-system_drawer_drawer.tsx_219","aria-label":"Close",icon:(0,V.Y)(r.C,{})})})]}),(0,V.FD)("div",{ref:b,tabIndex:m?0:-1,css:(0,t.AH)({paddingRight:c?0:g,paddingLeft:g,overflowY:c?"hidden":"auto",height:d?"100%":void 0,...c?{}:(0,r.j)(v)},"",""),children:[o,!n&&(0,V.Y)(Lu,{size:"lg"})]}),n&&(0,V.Y)("div",{style:{paddingTop:v.spacing.md,paddingRight:g,paddingLeft:g,paddingBottom:v.spacing.lg,flexGrow:0,flexShrink:1},children:n})]})})]})},Root:function(e){return(0,V.Y)(F.bL,{...e})},Trigger:function(e){return(0,V.Y)(F.l9,{asChild:!0,...e})}});const Tu=e=>{let{dangerouslySetAntdProps:o,...n}=e;const{theme:t}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(h.A,{mouseLeaveDelay:.25,...n,overlayStyle:{zIndex:t.options.zIndexBase+50,...n.overlayStyle},...o})})};const{Title:zu,Paragraph:_u}=r.T;function Ou(e){const o={display:"flex",flexDirection:"column",alignItems:"center",textAlign:"center",maxWidth:600,wordBreak:"break-word",'> [role="img"]':{fontSize:64,color:e.colors.actionDisabledText,marginBottom:e.spacing.md}};return(0,t.AH)(o,"","")}function Eu(e,o){const n={[`&.${o}-typography`]:{color:e.colors.textSecondary,marginTop:0,marginBottom:0}};return(0,t.AH)(n,"","")}function Wu(e,o){const n={[`&.${o}-typography`]:{color:e.colors.textSecondary,marginBottom:e.spacing.md}};return(0,t.AH)(n,"","")}var ju={name:"zl1inp",styles:"display:flex;justify-content:center"};const Gu=e=>{const{theme:o,classNamePrefix:n}=(0,r.u)(),{title:t,description:l,image:i=(0,V.Y)(yl,{}),button:a,dangerouslyAppendEmotionCSS:c,...d}=e;return(0,V.Y)("div",{...d,css:ju,children:(0,V.FD)("div",{css:[Ou(o),c,""],children:[i,t&&(0,V.Y)(zu,{level:3,css:Eu(o,n),children:t}),(0,V.Y)(_u,{css:Wu(o,n),children:l}),a]})})},Ku=e=>{let{theme:o,clsPrefix:n}=e;const l=`.${n}-form-item-label`,i=`.${n}-form-item-control-input`,a=`.${n}-form-item-explain`,c=`.${n}-form-item-has-error`;return(0,t.AH)({[l]:{fontWeight:o.typography.typographyBoldFontWeight,lineHeight:o.typography.lineHeightBase,".anticon":{fontSize:o.general.iconFontSize}},[a]:{fontSize:o.typography.fontSizeSm,margin:0},[i]:{minHeight:o.general.heightSm},[`${i} input[disabled]`]:{border:"none"},[`&${c} input:focus`]:(0,r.i)({boxShadow:"none"}),...(0,r.g)(o.options.enableAnimation)},"","")},Uu=(0,k.forwardRef)((function(e,o){let{dangerouslySetAntdProps:n,children:t,...l}=e;const i={...l,layout:l.layout||"vertical",requiredMark:l.requiredMark||!1};return(0,V.Y)(r.D,{children:(0,V.Y)(u.A,{...i,colon:!1,ref:o,...n,children:(0,V.Y)(r.R,{children:t})})})})),qu=e=>{let{dangerouslySetAntdProps:o,children:n,...t}=e;const{theme:l,classNamePrefix:i}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(u.A.Item,{...t,css:Ku({theme:l,clsPrefix:i}),...o,children:n})})},Xu=Object.assign(Uu,{Item:qu,List:u.A.List,useForm:u.A.useForm}),Qu=(e,o)=>{const n=`.${e}-form-error-message`,l=`.${e}-form-success-message`,i=`.${e}-form-warning-message`,a={"&&":{lineHeight:o.typography.lineHeightSm,fontSize:o.typography.fontSizeSm,marginTop:o.spacing.sm,display:"flex",alignItems:"start"},[`&${n}`]:{color:o.colors.actionDangerPrimaryBackgroundDefault},[`&${l}`]:{color:o.colors.textValidationSuccess},[`&${i}`]:{color:o.colors.textValidationWarning},...(0,r.g)(o.options.enableAnimation)};return(0,t.AH)(a,"","")},Ju={error:r.k,success:$o,warning:r.W};const ef=(e,o)=>{const n={display:"block",color:o.colors.textSecondary,lineHeight:o.typography.lineHeightSm,fontSize:o.typography.fontSizeSm,[`&& + .${e}-input, && + .${e}-select, && + .${e}-selectv2, && + .${e}-dialogcombobox, && + .${e}-checkbox-group, && + .${e}-radio-group, && + .${e}-typeahead-combobox`]:{marginTop:o.spacing.sm}};return(0,t.AH)(n,"","")};const of=(e,o,n)=>{let{inline:r}=n;const l={"&&":{color:o.colors.textPrimary,fontWeight:o.typography.typographyBoldFontWeight,display:r?"inline":"block",lineHeight:o.typography.lineHeightBase},[`&& + .${e}-input, && + .${e}-select, && + .${e}-selectv2, && + .${e}-dialogcombobox, && + .${e}-checkbox-group, && + .${e}-radio-group, && + .${e}-typeahead-combobox`]:{marginTop:o.spacing.sm}};return(0,t.AH)(l,"","")};var nf={name:"s5xdrg",styles:"display:flex;align-items:center"};const rf=e=>{const{children:o,className:n,inline:t,required:l,...i}=e,{classNamePrefix:a,theme:c}=(0,r.u)();return(0,V.Y)("label",{css:of(a,c,{inline:t}),className:B()(`${a}-label`,n),...i,children:(0,V.FD)("span",{css:nf,children:[o,l&&(0,V.Y)("span",{"aria-hidden":"true",children:"*"})]})})};function tf(e){let{clsPrefix:o,theme:n,validationState:l}=e;const i=`.${o}-focused`,a=`.${o}-open`,c=`.${o}-single`,d=`.${o}-selector`,s=`.${o}-disabled`,h=`.${o}-multiple`,u=`.${o}-selection-item`,f=`.${o}-selection-overflow`,p=`.${o}-selection-overflow-item`,v=`.${o}-selection-overflow-item-suffix`,g=`.${o}-arrow`,m=`.${o}-arrow-loading`,w=`.${o}-selection-placeholder`,x=`.${o}-selection-item-remove`,b=`.${o}-selection-search`,Y=`.${o}-show-search`,y=`.${o}-clear`,H=`.${o}-allow-clear`,C=`.${o}-selection-search-input`,R=(0,r.h)(n,l),Z={"&:hover":{[d]:{borderColor:n.colors.actionDefaultBorderHover}},[d]:{paddingLeft:12,paddingRight:0,color:n.colors.textPrimary,backgroundColor:"transparent",height:n.general.heightSm,"::after":{lineHeight:n.typography.lineHeightBase},"::before":{lineHeight:n.typography.lineHeightBase}},[c]:{[`&${d}`]:{height:n.general.heightSm}},[u]:{color:n.colors.textPrimary,paddingRight:32,lineHeight:n.typography.lineHeightBase,paddingTop:5,paddingBottom:5},[b]:{right:24,left:8,marginInlineStart:4,[C]:{color:n.colors.actionDefaultTextDefault,height:24}},[`&${c}`]:{[C]:{height:n.general.heightSm}},[`&${Y}${a}${c}`]:{[u]:{color:n.colors.actionDisabledText}},[y]:{right:24,backgroundColor:"transparent"},[`&${i}`]:{[d]:{outlineColor:n.colors.actionPrimaryBackgroundDefault,outlineWidth:2,outlineOffset:-2,outlineStyle:"solid",borderColor:"transparent",boxShadow:"none"}},[`&${s}`]:{[d]:{backgroundColor:n.colors.actionDisabledBackground,color:n.colors.actionDisabledText,border:"transparent"},[u]:{color:n.colors.actionDisabledText},[g]:{color:n.colors.actionDisabledText}},[g]:{height:n.general.iconFontSize,width:n.general.iconFontSize,top:(n.general.heightSm-n.general.iconFontSize)/2,marginTop:0,color:n.colors.textSecondary,fontSize:n.general.iconFontSize,".anticon":{pointerEvents:"none"},[`&${m}`]:{top:(n.general.heightSm-n.general.iconFontSize)/2,display:"flex",alignItems:"center",justifyContent:"center",fontSize:n.general.iconFontSize}},[w]:{color:n.colors.textPlaceholder,right:"auto",left:"auto",width:"100%",paddingRight:32,lineHeight:n.typography.lineHeightBase,alignSelf:"center"},[`&${h}`]:{[d]:{paddingTop:3,paddingBottom:3,paddingLeft:8,paddingRight:30,minHeight:n.general.heightSm,height:"auto","&::after":{margin:0}},[u]:{backgroundColor:n.colors.tagDefault,color:n.colors.textPrimary,border:"none",height:20,lineHeight:n.typography.lineHeightBase,fontSize:n.typography.fontSizeBase,marginInlineEnd:4,marginTop:2,marginBottom:2,paddingRight:0,paddingTop:0,paddingBottom:0},[f]:{minHeight:24},[p]:{alignSelf:"auto",height:24,lineHeight:n.typography.lineHeightBase},[b]:{marginTop:0,left:0,right:0},[`&${s}`]:{[u]:{paddingRight:2}},[g]:{top:(n.general.heightSm-n.general.iconFontSize)/2},[`&${H}`]:{[y]:{top:(n.general.heightSm-n.general.iconFontSize+4)/2}},[w]:{paddingLeft:4,color:n.colors.textPlaceholder},[`&:not(${i})`]:{[v]:{height:0}}},[`&${h}${s}`]:{[u]:{color:n.colors.actionDisabledText}},[`&${H}`]:{[u]:{paddingRight:0},[d]:{paddingRight:52},[y]:{top:(n.general.heightSm-n.general.iconFontSize+4)/2,opacity:100,width:n.general.iconFontSize,height:n.general.iconFontSize,marginTop:0}},[x]:{color:n.colors.textPrimary,borderTopRightRadius:n.borders.borderRadiusMd,borderBottomRightRadius:n.borders.borderRadiusMd,height:n.general.iconFontSize,width:n.general.iconFontSize,lineHeight:n.typography.lineHeightBase,paddingInlineEnd:0,marginInlineEnd:0,"& > .anticon":{height:n.general.iconFontSize-4,fontSize:n.general.iconFontSize-4},"&:hover":{color:n.colors.actionTertiaryTextHover,backgroundColor:n.colors.tagHover},"&:active":{color:n.colors.actionTertiaryTextPress,backgroundColor:n.colors.tagPress}},...l&&{[`& > ${d}`]:{borderColor:R,"&:hover":{borderColor:R}},[`&${i} > ${d}`]:{outlineColor:R,outlineOffset:-2}},...(0,r.g)(n.options.enableAnimation)},I=(0,r.i)(Z);return(0,t.AH)(I,"","")}function lf(e,o){const n=`.${e}-item-option`,l=`.${e}-item-option-active`,i=`.${e}-item-option-selected`,a=`.${e}-item-option-state`,c={borderColor:o.colors.borderDecorative,borderWidth:1,borderStyle:"solid",zIndex:o.options.zIndexBase+50,boxShadow:o.general.shadowLow,[n]:{height:o.general.heightSm},[l]:{backgroundColor:o.colors.actionTertiaryBackgroundHover,height:o.general.heightSm,"&:hover":{backgroundColor:o.colors.actionTertiaryBackgroundHover}},[i]:{backgroundColor:o.colors.actionTertiaryBackgroundHover,fontWeight:"normal","&:hover":{backgroundColor:o.colors.actionTertiaryBackgroundHover}},[a]:{color:o.colors.textSecondary,"& > span":{verticalAlign:"middle"}},[`.${e}-loading-options`]:{pointerEvents:"none",margin:"0 auto",height:o.general.heightSm,display:"block"},...(0,r.g)(o.options.enableAnimation),...(0,r.a)(o)},d=(0,r.i)(c);return(0,t.AH)(d,"","")}function af(e){return(0,t.AH)({fontSize:20,color:e.colors.textSecondary,lineHeight:"20px"},"","")}const cf=(e,o)=>(0,r.i)({fontSize:null!==o&&void 0!==o?o:e.general.iconFontSize});function df(e,o){let{children:n,validationState:l,loading:i,loadingDescription:a="Select",mode:c,options:d,notFoundContent:s,optionFilterProp:h,dangerouslySetAntdProps:u,virtual:p,dropdownClassName:v,id:g,onDropdownVisibleChange:m,maxHeight:w,...x}=e;const{theme:b,getPrefixedClassName:Y}=(0,r.u)(),y=Y("select"),[H,C]=(0,k.useState)(!1),[R,Z]=(0,k.useState)(""),I=null!==w&&void 0!==w?w:8.5*b.general.heightSm;return(0,k.useEffect)((()=>{Z(g||z()("dubois-select-"))}),[g]),(0,k.useEffect)((()=>{var e;null===(e=document.getElementById(R))||void 0===e||e.setAttribute("aria-expanded","false")}),[R]),(0,V.Y)(t.Z2,{children:e=>{let{css:g}=e;return(0,V.FD)(r.D,{children:[i&&(0,V.Y)(r.L,{description:a}),(0,V.Y)(f.A,{onDropdownVisibleChange:e=>{null===m||void 0===m||m(e),C(e)},...H?{}:{"aria-owns":void 0,"aria-controls":void 0,"aria-activedescendant":void 0},id:R,css:tf({clsPrefix:y,theme:b,validationState:l}),removeIcon:(0,V.Y)(r.C,{"aria-hidden":"false",css:cf(b)}),clearIcon:(0,V.Y)(Jd,{"aria-hidden":"false",css:cf(b,12),"aria-label":"close-circle"}),ref:o,suffixIcon:i&&"tags"===c?(0,V.Y)(r.l,{spin:!0,"aria-label":"loading","aria-hidden":"false",css:cf(b,12)}):(0,V.Y)(en,{css:cf(b)}),menuItemSelectedIcon:(0,V.Y)(r.e,{css:cf(b)}),showArrow:!0,dropdownMatchSelectWidth:!0,notFoundContent:null!==s&&void 0!==s?s:(0,V.Y)("div",{css:(0,t.AH)({color:b.colors.textSecondary,textAlign:"center"},"",""),children:"No results found"}),dropdownClassName:g([lf(y,b),v]),listHeight:I,maxTagPlaceholder:e=>`+ ${e.length} more`,mode:c,options:d,loading:i,filterOption:!0,virtual:null!==p&&void 0!==p?p:n&&Array.isArray(n)&&8!==n.length||d&&8!==d.length||!n&&!d,optionFilterProp:null!==h&&void 0!==h?h:"children",...x,...u,children:i&&"tags"!==c?(0,V.FD)(V.FK,{children:[n,(0,V.Y)(hf,{disabled:!0,value:"select-loading-options",className:`${y}-loading-options`,children:(0,V.Y)(r.l,{"aria-hidden":"false",spin:!0,css:af(b),"aria-label":"loading"})})]}):n})]})}})}const sf=(0,k.forwardRef)((function(e,o){const{dangerouslySetAntdProps:n,...r}=e;return(0,V.Y)(f.A.Option,{...r,ref:o,...n})}));sf.isSelectOption=!0;const hf=sf,uf=(()=>{const e=(0,k.forwardRef)((function(e,o){return(0,V.Y)(f.A.OptGroup,{...e,isSelectOptGroup:!0,ref:o})}));return e.isSelectOptGroup=!0,e})(),ff=(()=>{const e=(0,k.forwardRef)(df);return e.Option=sf,e.OptGroup=uf,e})(),pf=e=>{let{clsPrefix:o,theme:n,useNewStyles:r}=e;return{[`.${o}`]:{alignSelf:"start",[`> .${o}-input + .${o}-inner`]:{width:n.spacing.md,height:n.spacing.md,background:r?n.colors.actionDefaultBackgroundDefault:n.colors.radioDefaultBackground,borderStyle:"solid",borderColor:r?n.colors.actionDefaultBorderDefault:n.colors.radioDefaultBorder,boxShadow:"unset",transform:"unset",display:"flex",justifyContent:"center",alignItems:"center",borderRadius:"50%","&:after":{all:"unset"}},[`&:not(.${o}-disabled) > .${o}-input:hover + .${o}-inner`]:{borderColor:r?n.colors.actionPrimaryBackgroundHover:n.colors.radioInteractiveHover,background:r?n.colors.actionDefaultBackgroundHover:n.colors.radioInteractiveHoverSecondary},[`&:not(.${o}-disabled)> .${o}-input:focus + .${o}-inner`]:{borderColor:r?n.colors.actionPrimaryBackgroundDefault:n.colors.primary},[`&:not(.${o}-disabled)> .${o}-input:active + .${o}-inner`]:{borderColor:r?n.colors.actionPrimaryBackgroundPress:n.colors.radioInteractivePress,background:r?n.colors.actionDefaultBackgroundPress:n.colors.radioInteractivePressSecondary},[`&.${o}-disabled > .${o}-input + .${o}-inner`]:{...r?{border:"none !important",background:n.colors.actionDisabledBackground}:{borderColor:`${n.colors.radioDisabled}!important`},"@media (forced-colors: active)":{borderColor:"GrayText !important"}},[`&.${o}-checked`]:{"&:after":{border:"unset"},[`> .${o}-input + .${o}-inner`]:{background:r?n.colors.actionPrimaryBackgroundDefault:n.colors.primary,borderColor:n.colors.primary,"&:after":{content:'""',borderRadius:n.spacing.xs,backgroundColor:r?n.colors.white:n.colors.radioDefaultBackground,width:n.spacing.xs,height:n.spacing.xs},"@media (forced-colors: active)":{borderColor:"Highlight !important",backgroundColor:"Highlight !important"}},[`&:not(.${o}-disabled) > .${o}-input:hover + .${o}-inner`]:{background:r?n.colors.actionPrimaryBackgroundHover:n.colors.radioInteractiveHover,borderColor:r?n.colors.actionPrimaryBackgroundPress:n.colors.radioInteractiveHover},[`&:not(.${o}-disabled) > .${o}-input:focus-visible + .${o}-inner`]:{background:r?n.colors.actionDefaultBackgroundPress:n.colors.primary,borderColor:r?n.colors.actionDefaultBorderFocus:n.colors.primary,boxShadow:`0 0 0 1px ${r?n.colors.actionDefaultBackgroundDefault:n.colors.radioDefaultBackground}, 0 0 0 3px ${n.colors.primary}`},[`&:not(.${o}-disabled) > .${o}-input:active + .${o}-inner`]:{background:r?n.colors.actionDefaultBackgroundPress:n.colors.radioInteractivePress,borderColor:r?n.colors.actionDefaultBorderPress:n.colors.radioInteractivePress},[`&.${o}-disabled > .${o}-input + .${o}-inner`]:{background:r?n.colors.actionDisabledBackground:n.colors.radioDisabled,border:r?"none !important":`2px solid ${n.colors.radioDisabled}!important`,"@media (forced-colors: active)":{borderColor:"GrayText !important",backgroundColor:"GrayText !important"}}}}}},vf=e=>{let{theme:o,clsPrefix:n,classNamePrefix:l,useNewStyles:i}=e;return(0,t.AH)({"& > label":{...i&&{[`&.${l}-radio-wrapper-disabled > span`]:{color:o.colors.actionDisabledText}}},[`& > label + .${l}-hint`]:{paddingLeft:o.spacing.lg},...pf({theme:o,clsPrefix:n,useNewStyles:i}),...(0,r.g)(o.options.enableAnimation)},"","")},gf=e=>{let{theme:o,classNamePrefix:n,useNewStyles:r}=e;return(0,t.AH)({"&&":{display:"grid",gridTemplateRows:"[label] auto [hint] auto",gridAutoColumns:"max-content",gridColumnGap:r?o.spacing.md:o.spacing.sm},"& > label":{gridRow:"label / label",marginRight:0},[`& > label + .${n}-hint`]:{display:"inline-block",gridRow:"hint / hint"}},"","")},mf=e=>{let{theme:o,classNamePrefix:n,useNewStyles:r}=e;return(0,t.AH)({display:"flex",flexDirection:"column",flexWrap:"wrap","& > label":{fontWeight:"normal",...r&&{paddingBottom:o.spacing.sm}},"& > label:last-of-type":{paddingBottom:0},[`& > label + .${n}-hint`]:{marginBottom:o.spacing.sm,paddingLeft:o.spacing.lg,...r&&{marginTop:`-${o.spacing.sm}px`}},[`& > label:last-of-type + .${n}-hint`]:{...r&&{marginTop:0}}},"","")},wf=e=>{let{theme:o,clsPrefix:n,useNewStyles:r}=e;const l={fontWeight:"normal"};return(0,t.AH)({...pf({theme:o,clsPrefix:n,useNewStyles:r}),...l},"","")},xf=(0,k.forwardRef)((function(e,o){let{children:n,dangerouslySetAntdProps:t,...l}=e;const{theme:i,getPrefixedClassName:a}=(0,r.u)(),c=(0,r.s)("databricks.fe.designsystem.enableNewRadioStyles",!1),d=a("radio");return(0,V.Y)(r.D,{children:(0,V.Y)(p.Ay,{css:wf({theme:i,clsPrefix:d,useNewStyles:c}),...l,...t,ref:o,children:(0,V.Y)(r.R,{children:n})})})})),bf=(0,k.forwardRef)((function(e,o){let{children:n,dangerouslySetAntdProps:t,...l}=e;const{theme:i,getPrefixedClassName:a,classNamePrefix:c}=(0,r.u)(),d=(0,r.s)("databricks.fe.designsystem.enableNewRadioStyles",!1),s=a("radio");return(0,V.Y)(r.D,{children:(0,V.Y)(p.Ay.Group,{...l,css:vf({theme:i,clsPrefix:s,classNamePrefix:c,useNewStyles:d}),...t,ref:o,children:(0,V.Y)(r.R,{children:n})})})})),Yf=(0,k.forwardRef)((function(e,o){let{dangerouslySetAntdProps:n,...t}=e;const{theme:l,classNamePrefix:i}=(0,r.u)(),a=(0,r.s)("databricks.fe.designsystem.enableNewRadioStyles",!1);return(0,V.Y)(bf,{css:gf({theme:l,classNamePrefix:i,useNewStyles:a}),...t,ref:o,...n})})),yf=(0,k.forwardRef)((function(e,o){let{dangerouslySetAntdProps:n,layout:t="vertical",...l}=e;const{theme:i,classNamePrefix:a}=(0,r.u)(),c=(0,r.s)("databricks.fe.designsystem.enableNewRadioStyles",!1);return(0,V.Y)(bf,{css:"horizontal"===t?gf({theme:i,classNamePrefix:a,useNewStyles:c}):mf({theme:i,classNamePrefix:a,useNewStyles:c}),...l,ref:o,...n})})),Hf=Object.assign(xf,{Group:yf,HorizontalGroup:Yf}),Cf=e=>{const{children:o,placeholder:n,value:r,...t}=e;return(0,V.Y)(Iu,{value:{isSelect:!0,placeholder:n},children:(0,V.Y)(Ph,{value:r?[r]:[],...t,children:o})})},Rf=(0,k.forwardRef)(((e,o)=>{let{children:n,minWidth:r=150,...t}=e;return(0,V.Y)(su,{minWidth:r,...t,ref:o,children:(0,V.Y)(mu,{children:n})})})),Zf=(0,k.forwardRef)(((e,o)=>{const{value:n}=$h();return(0,V.Y)(Du,{checked:n&&n[0]===e.value,...e,ref:o})})),If=e=>{const{name:o,children:n,...r}=e;return(0,V.FD)(V.FK,{children:[(0,V.Y)(Bu,{...r,children:o}),n]})},Mf=(0,k.forwardRef)(((e,o)=>{const{children:n,...r}=e;return(0,V.Y)(Pu,{allowClear:!1,...r,ref:o,children:n})})),Af=(0,k.createContext)(void 0),Vf=(e,o)=>{const n=k.Children.toArray(e);for(const r of n)if(k.isValidElement(r)){if(r.type===Bf&&r.props.value===o)return r;if(r.props.children){const e=Vf(r.props.children,o);if(e)return e}}},kf=(e,o)=>{const n=Vf(e,o);return k.isValidElement(n)?n.props.children:""},Df=(0,k.forwardRef)(((e,o)=>{let{defaultValue:n,name:r,label:t,placeholder:l,children:i,contentProps:a,onChange:c,id:d,value:s,validationState:h,...u}=e;const[f]=(0,k.useState)((()=>s?kf(i,s):"")),p=(0,k.useRef)(null);(0,k.useImperativeHandle)(o,(()=>p.current),[]);const v=(0,k.useRef)(s),[g,m]=(0,k.useState)(s),[w,x]=(0,k.useState)(f),b=void 0!==s;(0,k.useEffect)((()=>{const e=p.current;if(!b){const o=n||(null===e||void 0===e?void 0:e.value)||"";m(o),x(kf(i,o)),v.current=o}const o=e=>{const o=e.target.value;o!==v.current&&(m(o||""),x(kf(i,o||"")),v.current=o||"")};return null===e||void 0===e||e.addEventListener("change",o),()=>{null===e||void 0===e||e.removeEventListener("change",o)}}),[b,i,n,s]);const Y=e=>{var o;null===(o=p.current)||void 0===o||o.setAttribute("value",e||""),m(e),x(kf(i,e)),c&&c({target:{name:r,type:"select",value:e},type:"change"})};return(0,V.Y)(Af.Provider,{value:{value:g,onChange:Y},children:(0,V.FD)(Cf,{value:g,placeholder:l,label:t,children:[(0,V.Y)(Mf,{...u,validationState:h,onClear:()=>{Y("")},id:d,value:g,children:w||l}),!b&&(0,V.Y)("input",{type:"hidden",ref:p}),(0,V.Y)(Rf,{...a,children:i})]})})})),Bf=(0,k.forwardRef)(((e,o)=>{let{value:n,children:r,...t}=e;const l=(0,k.useContext)(Af);if(!l)throw new Error("SimpleSelectOption must be used within a SimpleSelect");const{onChange:i}=l;return(0,V.Y)(Zf,{...t,ref:o,value:n,onChange:e=>{let{value:o}=e;i(o)},children:r})})),Sf=e=>{let{children:o,label:n,...r}=e;if(!(0,k.useContext)(Af))throw new Error("SimpleSelectOptionGroup must be used within a SimpleSelect");return(0,V.Y)(If,{...r,name:n,children:o})},$f=e=>{let{clsPrefix:o,theme:n}=e;const l={display:"flex",alignItems:"center",[`&.${o}-switch`]:{backgroundColor:n.colors.backgroundPrimary,border:`1px solid ${n.colors.actionDefaultBorderDefault}`,[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionDefaultBorderDefault}`,transition:"none"},[`&:hover:not(.${o}-switch-disabled)`]:{backgroundColor:n.colors.actionDefaultBackgroundHover,border:`1px solid ${n.colors.actionPrimaryBackgroundHover}`,[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionPrimaryBackgroundHover}`}},[`&:active:not(.${o}-switch-disabled)`]:{backgroundColor:n.colors.actionDefaultBackgroundPress,border:`1px solid ${n.colors.actionPrimaryBackgroundPress}`,[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionPrimaryBackgroundHover}`}},[`&.${o}-switch-disabled`]:{backgroundColor:n.colors.actionDisabledBackground,border:`1px solid ${n.colors.actionDisabledBorder}`,[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionDisabledBorder}`}},"&:focus-visible":{border:`1px solid ${n.colors.actionPrimaryBackgroundDefault}`,boxShadow:"none",outlineStyle:"solid",outlineWidth:"1px",outlineColor:n.colors.actionDefaultBorderFocus,[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionPrimaryBackgroundDefault}`}},"&:focus":{boxShadow:"none"}},[`&.${o}-switch-checked`]:{backgroundColor:n.colors.actionPrimaryBackgroundDefault,border:`1px solid ${n.colors.actionPrimaryBackgroundDefault}`,[`&:hover:not(.${o}-switch-disabled)`]:{backgroundColor:n.colors.actionPrimaryBackgroundHover,border:`1px solid ${n.colors.actionPrimaryBackgroundDefault}`},[`&:active:not(.${o}-switch-disabled)`]:{backgroundColor:n.colors.actionPrimaryBackgroundPress},[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionPrimaryBackgroundDefault}`},[`&.${o}-switch-disabled`]:{backgroundColor:n.colors.actionDisabledText,border:`1px solid ${n.colors.actionDisabledText}`,[`.${o}-switch-handle:before`]:{boxShadow:`0px 0px 0px 1px ${n.colors.actionDisabledText}`}},"&:focus-visible":{outlineOffset:"1px"}},[`.${o}-switch-handle:before`]:{backgroundColor:n.colors.backgroundPrimary},[`&& + .${o}-hint, && + .${o}-form-message`]:{paddingLeft:n.spacing.sm+28},[`&& + .${o}-form-message`]:{marginTop:0},[`.${o}-click-animating-node`]:{animation:"none"},opacity:1},i=(0,r.i)(l);return(0,t.AH)(i,"","")},Pf=e=>{var o;let{dangerouslySetAntdProps:n,label:l,labelProps:i,activeLabel:a,inactiveLabel:c,disabledLabel:d,...s}=e;const{theme:h,classNamePrefix:u}=(0,r.u)(),f=(0,r.c)("dubois-switch"),p=null!==(o=s.id)&&void 0!==o?o:f,[g,m]=(0,k.useState)(s.checked||s.defaultChecked);(0,k.useEffect)((()=>{m(s.checked)}),[s.checked]);const w=a&&c&&d,x=g?a:c,b={id:p},Y=(0,V.Y)(v.A,{...s,...n,onChange:(e,o)=>{s.onChange?s.onChange(e,o):m(e)},...b,css:(0,t.AH)({...(0,t.AH)((0,r.g)(h.options.enableAnimation),"",""),...$f({clsPrefix:u,theme:h})},"","")}),y=(0,V.Y)(rf,{inline:!0,...i,htmlFor:p,style:{...w&&{marginRight:h.spacing.sm}},children:l});return l?(0,V.Y)(r.D,{children:(0,V.Y)("div",{css:$f({clsPrefix:u,theme:h}),children:w?(0,V.FD)(V.FK,{children:[y,(0,V.Y)("span",{style:{marginLeft:"auto",marginRight:h.spacing.sm},children:`${x}${s.disabled?` (${d})`:""}`}),Y]}):(0,V.FD)(V.FK,{children:[Y,y]})})}):(0,V.Y)(r.D,{children:(0,V.Y)(v.A,{...s,...n,...b,css:(0,t.AH)({...(0,t.AH)((0,r.g)(h.options.enableAnimation),"",""),...$f({clsPrefix:u,theme:h})},"","")})})},Lf={isInsideTypeaheadCombobox:!1,multiSelect:!1},Nf=(0,k.createContext)(Lf);const Ff=()=>(0,k.useContext)(Nf);const Tf=(e,o,n)=>(0,t.AH)({...n&&{pointerEvents:"none",color:e.colors.actionDisabledText},...o&&{background:e.colors.actionTertiaryBackgroundHover}},"",""),zf=(e,o)=>(0,t.AH)({marginLeft:e.spacing.sm,fontSize:e.typography.fontSizeBase,fontStyle:"normal",fontWeight:400,cursor:"pointer",overflow:"hidden",wordBreak:"break-word",..."ellipsis"===o&&{textOverflow:"ellipsis",whiteSpace:"nowrap"}},"","");var _f={name:"kjj0ot",styles:"padding-top:2px"},Of={name:"zjik7",styles:"display:flex"};const Ef=(0,k.forwardRef)(((e,o)=>{let{item:n,index:t,comboboxState:l,textOverflowMode:i="multiline",isDisabled:a,disabledReason:c,hintContent:d,onClick:s,children:h,...u}=e;const{selectedItem:f,highlightedIndex:p,getItemProps:v}=l,g=f===n,m=p===t,{theme:w}=(0,r.u)(),{onClick:x,...b}=v({item:n,index:t,disabled:a,onMouseUp:e=>{var o;e.stopPropagation(),null===(o=u.onMouseUp)||void 0===o||o.call(u,e)}});return(0,V.FD)("li",{ref:o,role:"option","aria-selected":g,disabled:a,onClick:e=>{null===s||void 0===s||s(e),x(e)},css:[ou(w),Tf(w,m,a),""],...b,...u,children:[g?(0,V.Y)(r.e,{css:_f}):(0,V.Y)("div",{style:{width:16,flexShrink:0}}),(0,V.FD)("label",{css:zf(w,i),children:[a&&c?(0,V.FD)("div",{css:Of,children:[(0,V.Y)("div",{children:h}),(0,V.Y)("div",{css:ru(w),children:(0,V.Y)(eh,{title:c})})]}):h,(0,V.Y)(zh,{disabled:a,children:d})]})]})}));Ef.defaultProps={_TYPE:"TypeaheadComboboxMenuItem"};var Wf={name:"zjik7",styles:"display:flex"};const jf=(0,k.forwardRef)(((e,o)=>{let{item:n,index:t,comboboxState:l,selectedItems:i,textOverflowMode:a="multiline",isDisabled:c,disabledReason:d,hintContent:s,onClick:h,children:u,...f}=e;const{highlightedIndex:p,getItemProps:v}=l,g=p===t,{theme:m}=(0,r.u)(),w=i.includes(n),{onClick:x,...b}=v({item:n,index:t,disabled:c,onMouseUp:e=>{var o;e.stopPropagation(),null===(o=f.onMouseUp)||void 0===o||o.call(f,e)}});return(0,V.Y)("li",{ref:o,role:"option","aria-selected":w,disabled:c,onClick:e=>{null===h||void 0===h||h(e),x(e)},css:[ou(m),Tf(m,g,c),""],...b,...f,children:(0,V.Y)(Qs,{disabled:c,isChecked:w,css:tu(m,a),tabIndex:-1,onClick:e=>{e.stopPropagation()},children:(0,V.FD)("label",{children:[c&&d?(0,V.FD)("div",{css:Wf,children:[(0,V.Y)("div",{children:u}),(0,V.Y)("div",{css:ru(m),children:(0,V.Y)(eh,{title:d})})]}):u,(0,V.Y)(zh,{disabled:c,children:s})]})})})}));jf.defaultProps={_TYPE:"TypeaheadComboboxCheckboxItem"};const Gf=e=>{let{children:o,...n}=e;const{theme:t}=(0,r.u)(),{isInsideTypeaheadCombobox:l}=Ff();if(!l)throw new Error("`TypeaheadComboboxFooter` must be used within `TypeaheadComboboxMenu`");return(0,V.Y)("div",{...n,css:lu(t),children:o})};Gf.defaultProps={_TYPE:"TypeaheadComboboxFooter"};const Kf=(e,o,n)=>(0,t.AH)({display:"flex",gap:e.spacing.sm,"& > input, & > textarea, & > select":{marginTop:"0 !important"},"& > div:nth-of-type(1)":{width:o},"& > div:nth-of-type(2)":{width:n}},"",""),Uf={Message:function(e){let{message:o,type:n="error",className:t="",css:l}=e;const{classNamePrefix:i,theme:a}=(0,r.u)(),c=Ju[n],d=`${i}-form-message ${t} ${`${i}-form-${n}-message`}`.trim();return(0,V.FD)("div",{className:d,css:[Qu(i,a),l,""],children:[(0,V.Y)(c,{}),(0,V.Y)("div",{style:{paddingLeft:a.spacing.xs},children:o})]})},Label:rf,Hint:e=>{const{classNamePrefix:o,theme:n}=(0,r.u)(),{className:t,...l}=e;return(0,V.Y)("span",{className:B()(`${o}-hint`,t),css:ef(o,n),...l})},HorizontalFormRow:e=>{let{children:o,labelColWidth:n="33%",inputColWidth:t="66%",...l}=e;const{theme:i}=(0,r.u)();return(0,V.Y)("div",{css:Kf(i,n,t),...l,children:o})}},qf=e=>{let{dangerouslySetAntdProps:o,...n}=e;return(0,V.Y)(r.D,{children:(0,V.Y)(g.A,{...n,...o})})},Xf=8,Qf=e=>{let{gutter:o=Xf,...n}=e;return(0,V.Y)(r.D,{children:(0,V.Y)(m.A,{gutter:o,...n})})},Jf=e=>{let{dangerouslySetAntdProps:o,...n}=e;return(0,V.Y)(r.D,{children:(0,V.Y)(w.A,{...n,...o})})};const ep=(e,o)=>{const n=`.${e}-breadcrumb`,l={[n]:{lineHeight:o.typography.lineHeightBase}};return(0,t.AH)((0,r.i)(l),"","")};var op={name:"1q4vxyr",styles:"margin-left:8px"},np={name:"s079uh",styles:"margin-top:2px"},rp={name:"fuxm9z",styles:"margin-top:0;margin-bottom:0 !important;align-self:stretch"};const tp=e=>{let{breadcrumbs:o,title:n,titleAddOns:l,dangerouslyAppendEmotionCSS:i,buttons:a,children:c,...d}=e;const{classNamePrefix:s,theme:h}=(0,r.u)(),u=(0,r.s)("databricks.fe.wexp.enableReflowWrapStyles",!1),f=Array.isArray(a)?a:a?[a]:[],p={titleWrapper:(0,t.AH)({display:"flex",alignItems:"flex-start",justifyContent:"space-between",...u?{flexWrap:"wrap"}:{},...0===f.length&&{paddingTop:o?0:h.spacing.xs/2,paddingBottom:h.spacing.xs/2}},"",""),breadcrumbWrapper:(0,t.AH)({lineHeight:h.typography.lineHeightBase},"",""),title:rp,titleIfOtherElementsPresent:np,buttonContainer:op,titleAddOnsWrapper:(0,t.AH)({display:"inline-flex",verticalAlign:"middle",alignItems:"center",...u?{flexWrap:"wrap"}:{}},"","")};return(0,V.FD)("div",{css:[ep(s,h),i,""],...d,children:[o&&(0,V.Y)("div",{css:p.breadcrumbWrapper,children:o}),(0,V.FD)("div",{css:p.titleWrapper,children:[(0,V.FD)(r.m,{level:2,css:[p.title,(a||o)&&p.titleIfOtherElementsPresent,""],children:[n,l&&(0,V.FD)(V.FK,{children:["\u2002",(0,V.Y)("span",{css:p.titleAddOnsWrapper,children:l})]})]}),a&&(0,V.Y)("div",{css:p.buttonContainer,children:(0,V.Y)(Jf,{...u?{dangerouslySetAntdProps:{wrap:!0}}:{},size:8,children:f.filter(Boolean).map(((e,o)=>{const n=`dubois-header-button-${o}`;return k.isValidElement(e)?k.cloneElement(e,{key:e.key||n}):(0,V.Y)(k.Fragment,{children:e},n)}))})})]})]})},{Header:lp,Footer:ip,Sider:ap,Content:cp}=x.A;function dp(){const[e,o]=b.A.useNotification(),{getPrefixedClassName:n,theme:l}=(0,r.u)(),{getPopupContainer:i}=(0,r.d)(),a=n("notification"),c=(0,k.useCallback)((o=>{const n={getContainer:i,...sp,...o,style:{zIndex:l.options.zIndexBase+30,boxShadow:l.general.shadowLow}},c=`${a}-notice-icon-${n.type}`;n.icon=(0,V.Y)(vs,{severity:n.type,className:c}),n.closeIcon=(0,V.Y)(r.C,{"aria-hidden":"false",css:(0,t.AH)({cursor:"pointer",fontSize:l.general.iconSize},"",""),"aria-label":n.closeLabel||"Close notification"}),e.open(n)}),[e,i,l,a]);return[(0,k.useMemo)((()=>({open:c,close:e=>b.A.close(e),error:e=>c({...e,type:"error"}),warning:e=>c({...e,type:"warning"}),info:e=>c({...e,type:"info"}),success:e=>c({...e,type:"success"})})),[c]),(0,V.Y)(r.D,{children:o})]}const sp={type:"info",duration:3},hp=e=>(0,k.forwardRef)(((o,n)=>{const[r,t]=dp();return(0,V.Y)(e,{ref:n,notificationAPI:r,notificationContextHolder:t,...o})})),up=e=>{let{content:o,dangerouslySetAntdProps:n,...t}=e;const{theme:l}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(Y.A,{zIndex:l.options.zIndexBase+30,...t,content:(0,V.Y)(r.R,{children:o})})})},fp=(()=>{const e=e=>{var o;let{dangerouslySetAntdProps:n,label:t,loadingDescription:l="LegacySkeleton",...i}=e;const a=null===(o=i.loading)||void 0===o||o;return(0,V.Y)(r.D,{children:(0,V.FD)(r.n,{label:t,children:[a&&(0,V.Y)(r.L,{description:l}),(0,V.Y)(y.A,{...i,...n})]})})};return e.Button=y.A.Button,e.Image=y.A.Image,e.Input=y.A.Input,e})();function pp(e,o){const n=`.${e}-pagination`,l=`.${e}-pagination-item`,i=`.${e}-pagination-item-link`,a=`.${e}-pagination-item-active`,c=`.${e}-pagination-item-ellipsis`,d=`.${e}-pagination-next`,s=`.${e}-pagination-prev`,h=`.${e}-pagination-jump-next`,u=`.${e}-pagination-jump-prev`,f=`.${e}-pagination-options-size-changer`,p=`.${e}-pagination-options`,v={"span[role=img]":{color:o.colors.textSecondary,"> *":{color:"inherit"}},[l]:{backgroundColor:"none",border:"none",color:o.colors.textSecondary,"&:focus-visible":{outline:"auto"},"> a":{color:o.colors.textSecondary,textDecoration:"none","&:hover":{color:o.colors.actionDefaultTextHover},"&:active":{color:o.colors.actionDefaultTextPress}},"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover},"&:active":{backgroundColor:o.colors.actionDefaultBackgroundPress}},[a]:{backgroundColor:o.colors.actionDefaultBackgroundPress,color:o.colors.actionDefaultTextPress,border:"none","> a":{color:o.colors.actionDefaultTextPress},"&:focus-visible":{outline:"auto"},"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundPress,color:o.colors.actionDefaultTextPress}},[i]:{border:"none",color:o.colors.textSecondary,"&[disabled]":{display:"none"},"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover},"&:active":{backgroundColor:o.colors.actionDefaultBackgroundPress},"&:focus-visible":{outline:"auto"}},[c]:{color:"inherit"},[`${d}, ${s}, ${h}, ${u}`]:{color:o.colors.textSecondary,"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover},"&:active":{backgroundColor:o.colors.actionDefaultBackgroundPress},"&:focus-visible":{outline:"auto"}},[`&${n}.mini, ${n}.mini`]:{[`${l}, ${d}, ${s}, ${h}, ${u}`]:{height:"32px",minWidth:"32px",width:"auto",lineHeight:"32px"},[f]:{marginLeft:4},[`input, ${p}`]:{height:"32px"}}},g=(0,r.i)(v);return(0,t.AH)(g,"","")}const vp=function(e){let{currentPageIndex:o,pageSize:n=10,numTotal:t,onChange:l,style:i,hideOnSinglePage:a,dangerouslySetAntdProps:c}=e;const{classNamePrefix:d,theme:s}=(0,r.u)(),{pageSizeSelectAriaLabel:h,pageQuickJumperAriaLabel:u,...f}=null!==c&&void 0!==c?c:{},p=(0,k.useRef)(null);return(0,k.useEffect)((()=>{if(p&&p.current){const e=p.current.querySelector(`.${d}-select-selection-search-input`);e&&e.setAttribute("aria-label",null!==h&&void 0!==h?h:"Select page size");const o=p.current.querySelector(`.${d}-pagination-options-quick-jumper > input`);o&&o.setAttribute("aria-label",null!==u&&void 0!==u?u:"Go to page")}}),[u,h,d]),(0,V.Y)(r.D,{children:(0,V.Y)("div",{ref:p,children:(0,V.Y)(H.A,{css:pp(d,s),current:o,pageSize:n,responsive:!1,total:t,onChange:l,showSizeChanger:!1,showQuickJumper:!1,size:"small",style:i,hideOnSinglePage:a,...f})})})};var gp={name:"1u1zie3",styles:"width:120px"};const mp=function(e){let{onNextPage:o,onPreviousPage:n,hasNextPage:l,hasPreviousPage:i,nextPageText:a="Next",previousPageText:c="Previous",pageSizeSelect:{options:d,default:s,getOptionText:h,onChange:u,ariaLabel:f="Select page size"}={}}=e;const{theme:p,classNamePrefix:v}=(0,r.u)(),[g,m]=(0,k.useState)(s),w=e=>`${e} / page`;return(0,V.FD)("div",{css:(0,t.AH)({display:"flex",flexDirection:"row",gap:p.spacing.sm,[`.${v}-select-selector::after`]:{content:"none"}},"",""),children:[(0,V.Y)(r.B,{componentId:"codegen_design-system_src_design-system_pagination_index.tsx_237",icon:(0,V.Y)(r.o,{}),disabled:!i,onClick:n,type:"tertiary",children:c}),(0,V.Y)(r.B,{componentId:"codegen_design-system_src_design-system_pagination_index.tsx_240",endIcon:(0,V.Y)(r.b,{}),disabled:!l,onClick:o,type:"tertiary",children:a}),d&&(0,V.Y)(ff,{"aria-label":f,value:String(g),css:gp,onChange:e=>{const o=Number(e);null===u||void 0===u||u(o),m(o)},children:d.map((e=>(0,V.Y)(ff.Option,{value:String(e),children:(h||w)(e)},e)))})]})},wp=(e,o,n)=>{const r=[(0,t.AH)({[`.${e}-table-pagination`]:{...pp(e,o)}},"","")];return n&&r.push(xp(e)),r},xp=e=>{const o={minHeight:0,[`.${e}-spin-nested-loading`]:{height:"100%"},[`.${e}-spin-container`]:{height:"100%",display:"flex",flexDirection:"column"},[`.${e}-table-container`]:{height:"100%",display:"flex",flexDirection:"column"},[`.${e}-table`]:{minHeight:0},[`.${e}-table-header`]:{flexShrink:0},[`.${e}-table-body`]:{minHeight:0}};return(0,t.AH)(o,"","")},bp={indicator:(0,V.Y)(r.S,{})},Yp=e=>{const{classNamePrefix:o,theme:n}=(0,r.u)(),{loading:t,scrollableInFlexibleContainer:l,children:i,...a}=e;return(0,V.Y)(r.D,{children:(0,V.Y)(C.A,{loading:!0===t?bp:t,scroll:l?{y:"auto"}:void 0,...a,css:wp(o,n,Boolean(l)),expandable:{childrenColumnName:"__antdChildren"},children:(0,V.Y)(r.R,{children:i})})})},yp=(()=>{const e=e=>{let{dangerouslySetAntdProps:o,...n}=e;return(0,V.Y)(r.D,{children:(0,V.Y)(R.A,{...n,...o})})};return e.Item=R.A.Item,e.ItemGroup=R.A.ItemGroup,e.SubMenu=function(e){let{dangerouslySetAntdProps:o,...n}=e;const{theme:l}=(0,r.u)();return(0,V.Y)(t.Z2,{children:e=>{let{css:r}=e;return(0,V.Y)(R.A.SubMenu,{popupClassName:r({zIndex:l.options.zIndexBase+50}),popupOffset:[-6,-10],...n,...o})}})},e})();const Hp={normal:640,wide:880},Cp=e=>{const{theme:o,clsPrefix:n,hasFooter:l=!0,maxedOutHeight:i}=e,a=`.${n}-modal-close`,c=`.${n}-modal-close-x`,d=`.${n}-modal-title`,s=`.${n}-modal-content`,h=`.${n}-modal-body`,u=`.${n}-modal-header`,f=`.${n}-modal-footer`,p=`.${n}-btn`,v=`.${n}-dropdown-button`,g=o.spacing.lg,m=o.general.heightSm,w="90vh",x=l?52:0,b=`calc(${w} - 64px - ${x}px - ${g}px)`;return(0,t.AH)({[u]:{background:"transparent",paddingTop:o.spacing.md,paddingLeft:o.spacing.lg,paddingRight:o.spacing.md,paddingBottom:o.spacing.md},[f]:{height:x,paddingTop:o.spacing.lg-8,paddingLeft:g,paddingRight:g,marginTop:"auto",[`${p} + ${p}`]:{marginLeft:o.spacing.sm},[`${v} > ${p}:nth-of-type(2)`]:{marginLeft:-1}},[c]:{fontSize:o.general.iconSize,height:m,width:m,lineHeight:"normal",display:"flex",alignItems:"center",justifyContent:"center",color:o.colors.textSecondary},[a]:{height:m,width:m,margin:"16px 16px 0 0",borderRadius:o.borders.borderRadiusMd,backgroundColor:o.colors.actionDefaultBackgroundDefault,borderColor:o.colors.actionDefaultBackgroundDefault,color:o.colors.actionDefaultTextDefault,"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover,borderColor:o.colors.actionDefaultBackgroundHover,color:o.colors.actionDefaultTextHover},"&:active":{backgroundColor:o.colors.actionDefaultBackgroundPress,borderColor:o.colors.actionDefaultBackgroundPress,color:o.colors.actionDefaultTextPress},"&:focus-visible":{outlineStyle:"solid",outlineWidth:"2px",outlineOffset:"1px",outlineColor:o.colors.primary}},[d]:{fontSize:o.typography.fontSizeXl,lineHeight:o.typography.lineHeightXl,fontWeight:o.typography.typographyBoldFontWeight,paddingRight:g,minHeight:32,display:"flex",alignItems:"center",overflowWrap:"anywhere"},[s]:{backgroundColor:o.colors.backgroundPrimary,maxHeight:w,height:i?w:"",overflow:"hidden",paddingBottom:g,display:"flex",flexDirection:"column",boxShadow:o.general.shadowHigh,...(0,r.a)(o)},[h]:{overflowY:"auto",maxHeight:b,paddingLeft:g,paddingRight:g,paddingTop:8,paddingBottom:8,...(0,r.j)(o)},...(0,r.g)(o.options.enableAnimation)},"","")};function Rp(e){return e?`${e}.footer.cancel`:"codegen_design-system_src_design-system_modal_modal.tsx_260"}function Zp(e){let{componentId:o,onOk:n,onCancel:t,confirmLoading:l,okText:i,cancelText:a,okButtonProps:c,cancelButtonProps:d,autoFocusButton:s}=e;return(0,V.FD)(V.FK,{children:[a&&(0,V.Y)(r.B,{componentId:Rp(o),onClick:e=>{null===t||void 0===t||t(e)},autoFocus:"cancel"===s,dangerouslyUseFocusPseudoClass:!0,...d,children:a}),i&&(0,V.Y)(r.B,{componentId:o?`${o}.footer.ok`:"codegen_design-system_src_design-system_modal_modal.tsx_271",loading:l,onClick:e=>{null===n||void 0===n||n(e)},type:"primary",autoFocus:"ok"===s,dangerouslyUseFocusPseudoClass:!0,...c,children:i})]})}function Ip(e){let{componentId:o,analyticsEvents:n,okButtonProps:l,cancelButtonProps:i,dangerouslySetAntdProps:a,children:c,title:d,footer:s,size:h="normal",verticalSizing:u="dynamic",autoFocusButton:f,truncateTitle:p,...v}=e;const{theme:g,classNamePrefix:m}=(0,r.u)(),w=(0,r.p)({componentType:r.q.Modal,componentId:o,analyticsEvents:null!==n&&void 0!==n?n:[r.r.OnView]}),{elementRef:x}=(0,r.t)({onView:w.onView}),b=(0,r.p)({componentType:r.q.Button,componentId:Rp(o),analyticsEvents:[r.r.OnClick]});return(0,V.Y)(r.D,{children:(0,V.Y)(Z.A,{css:Cp({theme:g,clsPrefix:m,hasFooter:null!==s,maxedOutHeight:"maxed_out"===u}),title:(0,V.Y)(r.R,{children:p?(0,V.Y)("div",{css:(0,t.AH)({textOverflow:"ellipsis",marginRight:g.spacing.md,overflow:"hidden",whiteSpace:"nowrap"},"",""),title:"string"===typeof d?d:void 0,children:d}):d}),footer:(0,V.Y)(r.R,{children:void 0===s?(0,V.Y)(Zp,{componentId:o,onOk:v.onOk,onCancel:v.onCancel,confirmLoading:v.confirmLoading,okText:v.okText,cancelText:v.cancelText,okButtonProps:l,cancelButtonProps:i,autoFocusButton:f}):s}),width:h?Hp[h]:void 0,closeIcon:(0,V.Y)(r.C,{ref:x}),centered:!0,zIndex:g.options.zIndexBase,...v,onCancel:e=>{var o;b.onClick(),null===(o=v.onCancel)||void 0===o||o.call(v,e)},...a,children:(0,V.Y)(r.R,{children:c})})})}var Mp={name:"b9hrb",styles:"position:relative;display:inline-flex;align-items:center"},Ap={name:"1o6wc9k",styles:"padding-left:6px"};function Vp(e){const{theme:o}=(0,r.u)(),{title:n,onCancel:l,onOk:i,cancelText:a,okText:c,okButtonProps:d,cancelButtonProps:s,...h}=e,u=(0,V.FD)("div",{css:Mp,children:[(0,V.Y)(r.k,{css:(0,t.AH)({color:o.colors.textValidationDanger,left:2,height:18,width:18,fontSize:18},"","")}),(0,V.Y)("div",{css:Ap,children:n})]});return(0,V.Y)(Ip,{componentId:e.componentId,analyticsEvents:e.analyticsEvents,title:u,footer:[(0,V.Y)(r.B,{componentId:e.componentId?`${e.componentId}.danger.footer.cancel`:"codegen_design-system_src_design-system_modal_modal.tsx_386",onClick:l,...s,children:a||"Cancel"},"cancel"),(0,V.Y)(r.B,{componentId:e.componentId?`${e.componentId}.danger.footer.ok`:"codegen_design-system_src_design-system_modal_modal.tsx_395",type:"primary",danger:!0,onClick:i,loading:e.confirmLoading,...d,children:c||"Delete"},"discard")],onOk:i,onCancel:l,...h})}(0,t.i7)({from:{opacity:1},to:{opacity:0}}),(0,t.i7)({from:{transform:"translateX(calc(100% + 12px))"},to:{transform:"translateX(0)"}}),(0,t.i7)({from:{transform:"translateX(var(--radix-toast-swipe-end-x))"},to:{transform:"translateX(calc(100% + 12px))"}});const kp=N.bL,Dp=N.Mz,Bp=(0,k.forwardRef)((function(e,o){let{children:n,minWidth:t=220,...l}=e;const{getPopupContainer:i}=(0,r.d)();return(0,V.Y)(N.ZL,{container:i&&i(),children:(0,V.Y)(N.UC,{ref:o,css:[Fp,{minWidth:t},""],sideOffset:4,...l,children:n})})})),Sp=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)(N.l9,{ref:o,...r,children:n})})),$p=(0,k.forwardRef)((function(e,o){let{children:n,...r}=e;return(0,V.Y)(N.bm,{ref:o,...r,children:n})})),Pp=(0,k.forwardRef)((function(e,o){let{children:n,...l}=e;const{theme:i}=(0,r.u)();return(0,V.Y)(N.i3,{css:(0,t.AH)({fill:i.colors.backgroundPrimary,stroke:i.colors.borderDecorative,strokeDashoffset:-Lp.arrowBottomLength(),strokeDasharray:Lp.arrowBottomLength()+2*Lp.arrowSide(),strokeWidth:Lp.arrowStrokeWidth(),position:"relative",top:-1},"",""),ref:o,width:12,height:6,...l,children:n})})),Lp={arrowBottomLength(){return 30},arrowHeight(){return 10},arrowSide(){return 2*(this.arrowHeight()**2*2)**.5},arrowStrokeWidth(){return 2}},Np=e=>({backgroundColor:e.colors.backgroundPrimary,color:e.colors.textPrimary,lineHeight:e.typography.lineHeightBase,border:`1px solid ${e.colors.borderDecorative}`,borderRadius:e.borders.borderRadiusMd,padding:`${e.spacing.sm}px`,boxShadow:e.general.shadowLow,userSelect:"none",zIndex:e.options.zIndexBase+30,...(0,r.a)(e),a:(0,r.i)({color:e.colors.actionTertiaryTextDefault,cursor:"default","&:hover, &:focus":{color:e.colors.actionTertiaryTextHover}}),"&:focus-visible":{outlineStyle:"solid",outlineWidth:"2px",outlineOffset:"1px",outlineColor:e.colors.primary}}),Fp=e=>({...Np(e)});var Tp=Object.freeze({__proto__:null,Anchor:Dp,Arrow:Pp,Close:$p,Content:Bp,Root:kp,Trigger:Sp});const zp={default:"tagDefault",brown:"tagBrown",coral:"tagCoral",charcoal:"grey600",indigo:"tagIndigo",lemon:"tagLemon",lime:"tagLime",pink:"tagPink",purple:"tagPurple",teal:"tagTeal",turquoise:"tagTurquoise"};function _p(e){const{theme:o}=(0,r.u)(),{color:n,children:l,closable:i,onClose:a,role:c="status",closeButtonProps:d,...s}=e,h=function(e){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"default",n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],t=e.colors.tagText;const l=e.colors[zp[o]];let i=e.colors.tagIconHover,a=e.colors.tagIconPress,c=e.colors.tagHover,d=e.colors.tagPress;return"default"===o&&(t=e.colors.textPrimary,i=e.colors.actionTertiaryTextHover,a=e.colors.actionTertiaryTextPress),"lemon"===o&&(t=r.x.textPrimary,i=r.x.actionTertiaryTextHover,a=r.x.actionTertiaryTextPress,c=r.x.actionTertiaryBackgroundHover,d=r.x.actionTertiaryBackgroundPress),{tag:{border:"none",color:t,padding:"2px 4px",backgroundColor:l,borderRadius:e.borders.borderRadiusMd,marginRight:8,display:"inline-block",cursor:n?"pointer":"default"},content:{display:"flex",alignItems:"center"},close:{height:e.general.iconFontSize,width:e.general.iconFontSize,lineHeight:`${e.general.iconFontSize}px`,padding:0,color:t,fontSize:e.general.iconFontSize,margin:"-2px -4px -2px 2px",borderTopRightRadius:e.borders.borderRadiusMd,borderBottomRightRadius:e.borders.borderRadiusMd,border:"none",background:"none",cursor:"pointer",marginLeft:e.spacing.xs,marginRight:-e.spacing.xs,"&:hover":{backgroundColor:c,color:i},"&:active":{backgroundColor:d,color:a},"&:focus-visible":{outlineStyle:"solid",outlineWidth:1,outlineOffset:1,outlineColor:e.colors.actionDefaultBorderFocus},".anticon":{verticalAlign:0}},text:{padding:0,fontSize:e.typography.fontSizeBase,fontWeight:e.typography.typographyRegularFontWeight,lineHeight:e.typography.lineHeightSm,"& .anticon":{verticalAlign:"text-top"}}}}(o,n,Boolean(e.onClick));return(0,V.Y)("div",{role:c,...s,css:h.tag,children:(0,V.FD)("div",{css:[h.content,h.text,""],children:[l,i&&(0,V.Y)("button",{css:h.close,tabIndex:0,onClick:e=>{e.stopPropagation(),a&&a()},onMouseDown:e=>{e.stopPropagation()},...d,children:(0,V.Y)(r.C,{css:(0,t.AH)({fontSize:o.general.iconFontSize-4},"","")})})]})})}var Op={name:"1amee4m",styles:"line-height:0"},Ep={name:"srf7qm",styles:"border:none;padding:0;background:transparent"};const Wp=e=>{let{children:o,noMargin:n=!1,...l}=e;const{theme:i}=(0,r.u)(),[a,c]=(0,k.useState)(!0),d=o&&k.Children.toArray(o);if(!d||0===d.length)return(0,V.Y)(V.FK,{children:o});const s=d[0],h=d.splice(1);let u=(0,V.Y)("span",{css:Op,children:(0,V.Y)(Sp,{asChild:!0,children:(0,V.Y)("button",{css:Ep,children:(0,V.FD)(_p,{css:jp(i),children:["+",h.length]})})})});return a&&(u=(0,V.Y)(Js,{title:"See more items",children:u})),0===h.length?(0,V.Y)(V.FK,{children:s}):(0,V.FD)("div",{css:(0,t.AH)({display:"inline-flex",alignItems:"center",gap:n?0:i.spacing.sm},"",""),children:[s,h.length>0&&(0,V.FD)(kp,{onOpenChange:e=>c(!e),children:[u,(0,V.Y)(Bp,{align:"start",...l,children:(0,V.Y)("div",{css:(0,t.AH)({display:"flex",flexDirection:"column",gap:i.spacing.xs},"",""),children:h.map(((e,o)=>(0,V.Y)("div",{children:e},o)))})})]})]})},jp=e=>{const o={marginRight:0,color:e.colors.actionTertiaryTextDefault,cursor:"pointer","&:focus":{color:e.colors.actionTertiaryTextDefault},"&:hover":{color:e.colors.actionTertiaryTextHover},"&:active":{color:e.colors.actionTertiaryTextPress}};return(0,t.AH)(o,"","")},Gp=e=>{let{children:o,...n}=e;const{theme:l}=(0,r.u)();return(0,V.Y)("div",{css:(0,t.AH)({paddingLeft:16,paddingRight:16,backgroundColor:l.isDarkMode?l.colors.backgroundPrimary:"transparent"},"",""),...n,children:o})};function Kp(e){let o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];const n=`.${e}-radio-group`,l=`.${e}-radio-group-small`,i=`.${e}-radio-button-wrapper`,a={[`&${n}`]:o?{display:"flex",gap:8,flexWrap:"wrap"}:{},[`&${l} ${i}`]:{padding:"0 12px"}},c=(0,r.i)(a);return(0,t.AH)(c,"","")}function Up(e,o,n){let l=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=`.${e}-radio-button-wrapper-checked`,a=`.${e}-radio-button-wrapper`,c=`.${e}-radio-button-wrapper-disabled`,d=`.${e}-radio-button`,s={backgroundColor:o.colors.actionDefaultBackgroundDefault,borderColor:o.colors.actionDefaultBorderDefault,color:o.colors.actionDefaultTextDefault,"::before":{display:l?"none":"block",backgroundColor:o.colors.actionDefaultBorderDefault},"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover,borderColor:o.colors.actionDefaultBorderHover,color:o.colors.actionDefaultTextHover,"::before":{backgroundColor:o.colors.actionDefaultBorderHover},[`& + ${a}::before`]:{backgroundColor:o.colors.actionDefaultBorderPress}},"&:active":{backgroundColor:o.colors.actionTertiaryBackgroundPress,borderColor:o.colors.actionDefaultBorderPress,color:o.colors.actionTertiaryTextPress},[`&${i}`]:{backgroundColor:o.colors.actionTertiaryBackgroundPress,borderColor:o.colors.actionDefaultBorderPress,color:o.colors.actionTertiaryTextPress,boxShadow:"none","::before":{backgroundColor:o.colors.actionDefaultBorderPress},[`& + ${a}::before`]:{backgroundColor:o.colors.actionDefaultBorderPress}},[`&${i}:focus-within`]:{"::before":{width:0}},[`&${c}`]:{color:o.colors.actionDisabledText,backgroundColor:o.colors.actionDisabledBackground,"&:hover":{color:o.colors.actionDisabledText,backgroundColor:o.colors.actionDisabledBackground},"&:active":{color:o.colors.actionDisabledText,backgroundColor:o.colors.actionDisabledBackground}},[`&${a}`]:{padding:"middle"===n?"0 16px":"0 8px",display:"inline-flex",verticalAlign:"middle",...l?{borderWidth:1,borderRadius:o.general.borderRadiusBase}:{},"&:focus-within":{outlineStyle:"solid",outlineWidth:"2px",outlineOffset:"-2px",outlineColor:o.colors.primary}},[`&${a}, ${d}`]:{height:"middle"===n?o.general.heightSm:24,lineHeight:o.typography.lineHeightBase,alignItems:"center"},...(0,r.g)(o.options.enableAnimation)},h=(0,r.i)(s);return(0,t.AH)(h,"","")}const qp=(0,k.createContext)({size:"middle",spaced:!1}),Xp=(0,k.forwardRef)((function(e,o){let{dangerouslySetAntdProps:n,...t}=e;const{classNamePrefix:l,theme:i}=(0,r.u)(),{size:a,spaced:c}=(0,k.useContext)(qp);return(0,V.Y)(r.D,{children:(0,V.Y)(p.Ay.Button,{css:Up(l,i,a,c),...t,...n,ref:o})})})),Qp=(0,k.forwardRef)((function(e,o){let{dangerouslySetAntdProps:n,size:t="middle",spaced:l=!1,...i}=e;const{classNamePrefix:a}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(qp.Provider,{value:{size:t,spaced:l},children:(0,V.Y)(p.Ay.Group,{...i,css:Kp(a,l),...n,ref:o})})})}));"undefined"!==typeof window?k.useLayoutEffect:k.useEffect;I.A.Group;const Jp=(e,o)=>(0,t.AH)({[e.responsive.mediaQueries.sm]:{width:"auto"},[e.responsive.mediaQueries.lg]:{width:"30%"},[e.responsive.mediaQueries.xxl]:{width:o}},"","");var ev={name:"7whenc",styles:"display:flex;width:100%"},ov={name:"82a6rk",styles:"flex:1"};const nv=(0,k.forwardRef)((function(e,o){let{onSubmit:n,showSearchButton:t,className:l,containerProps:i,searchButtonProps:a,...c}=e;const{theme:d}=(0,r.u)();let s=(0,V.Y)(r.f,{prefix:(0,V.Y)(Ia,{}),allowClear:!0,...c,className:l,ref:o});return t&&(s=(0,V.FD)(r.f.Group,{css:ev,className:l,children:[(0,V.Y)(r.f,{allowClear:!0,...c,ref:o,css:ov}),(0,V.Y)(r.B,{componentId:"codegen_design-system_src_design-system_tableui_tablefilterinput.tsx_65",htmlType:"submit","aria-label":"Search",...a,children:(0,V.Y)(Ia,{})})]})),(0,V.Y)("div",{style:{height:d.general.heightSm},css:Jp(d,400),...i,children:n?(0,V.Y)("form",{onSubmit:e=>{e.preventDefault(),n()},children:s}):s})})),rv=(0,k.forwardRef)((function(e,o){let{children:n,style:l,className:i,actions:a,...c}=e;const d=(0,r.s)("databricks.fe.wexp.enableReflowWrapStyles",!1),{theme:s}=(0,r.u)(),h={layout:(0,t.AH)({display:"flex",flexDirection:"row",justifyContent:"space-between",marginBottom:"var(--table-filter-layout-group-margin)",...d?{columnGap:"var(--table-filter-layout-group-margin)",rowGap:"var(--table-filter-layout-item-gap)",flexWrap:"wrap"}:{}},"",""),filters:(0,t.AH)({display:"flex",flexWrap:"wrap",flexDirection:"row",alignItems:"center",gap:"var(--table-filter-layout-item-gap)",...d?{marginRight:"var(--table-filter-layout-group-margin)"}:{},flex:1},"",""),filterActions:(0,t.AH)({display:"flex",...d?{flexWrap:"wrap"}:{},gap:"var(--table-filter-layout-item-gap)",...d?{}:{marginLeft:"var(--table-filter-layout-group-margin)"}},"","")};return(0,V.FD)("div",{...c,ref:o,style:{"--table-filter-layout-item-gap":`${s.spacing.sm}px`,"--table-filter-layout-group-margin":`${s.spacing.md}px`,...l},css:h.layout,className:i,children:[(0,V.Y)("div",{css:h.filters,children:n}),a&&(0,V.Y)("div",{css:h.filterActions,children:a})]})})),tv=(0,k.forwardRef)((function(e,o){let{style:n,resizeHandler:r,children:t,...l}=e;const{isHeader:i}=(0,k.useContext)(zs);if(!i)throw new Error("`TableHeaderResizeHandle` must be used within a `TableRow` with `isHeader` set to true.");return(0,V.Y)("div",{...l,ref:o,onPointerDown:r,css:Ls.resizeHandleContainer,style:n,role:"separator",children:(0,V.Y)("div",{css:Ls.resizeHandle})})})),lv=(0,k.forwardRef)((function(e,o){let{children:n,ellipsis:t=!1,multiline:l=!1,sortable:i,sortDirection:a,onToggleSort:c,style:d,className:s,resizable:h,resizeHandler:u,isResizing:f=!1,align:p="left",wrapContent:v=!0,...g}=e;const{size:m,grid:w}=(0,k.useContext)(Ns),{isHeader:x}=(0,k.useContext)(zs);if(!x)throw new Error("`TableHeader` must be used within a `TableRow` with `isHeader` set to true.");let b,Y=(0,V.Y)(V.FK,{});i&&("asc"===a?(Y=(0,V.Y)(oc,{}),b="ascending"):"desc"===a?(Y=(0,V.Y)(tc,{}),b="descending"):"none"===a&&(Y=(0,V.Y)(ac,{}),b="none"));const y="right"===p;let H="md";"small"===m&&(H="sm");const C=v?(0,V.Y)(r.T.Text,{className:"table-header-text",ellipsis:!l,size:H,title:!l&&"string"===typeof n&&n||void 0,bold:!0,children:n}):n,R=h?(0,V.Y)(tv,{resizeHandler:u}):null;return(0,V.FD)("div",{...g,ref:o,css:w?void 0:[Ps.cell,Ps.header],className:B()(w&&$s.cell,w&&$s.header,{"table-header-isGrid":w},s),role:"columnheader","aria-sort":i&&b||void 0,style:{justifyContent:p,textAlign:p,...d},children:[i&&!f?(0,V.FD)("div",{css:[Ls.headerButtonTarget,""],role:"button",tabIndex:0,onClick:c,onKeyDown:e=>{if(i&&("Enter"===e.key||" "===e.key))return e.preventDefault(),null===c||void 0===c?void 0:c(e)},children:[y?(0,V.Y)("span",{className:"table-header-icon-container",css:[Ls.sortHeaderIconOnLeft,""],children:Y}):null,C,y?null:(0,V.Y)("span",{className:"table-header-icon-container",css:[Ls.sortHeaderIconOnRight,""],children:Y})]}):C,R]})})),iv=(0,k.forwardRef)((function(e,o){let{onChange:n,checked:r,indeterminate:t,noCheckbox:l,children:i,isDisabled:a,checkboxLabel:c,...d}=e;const{isHeader:s}=(0,k.useContext)(zs),{someRowsSelected:h}=(0,k.useContext)(Ns);if("undefined"===typeof h)throw new Error("`TableRowSelectCell` cannot be used unless `someRowsSelected` has been provided to the `Table` component, see documentation.");if(!s&&t)throw new Error("`TableRowSelectCell` cannot be used with `indeterminate` in a non-header row.");return(0,V.Y)("div",{...d,ref:o,css:Ls.checkboxCell,style:{"--row-checkbox-opacity":h?1:0},role:s?"columnheader":"cell",className:"table-row-select-cell",children:!l&&(0,V.Y)(Qs,{isChecked:r||t&&null,onChange:(e,o)=>null===n||void 0===n?void 0:n(o.nativeEvent),isDisabled:a,"aria-label":c})})})),av=(e,o)=>{const n=`.${e}-tabs-tab`,t=`.${e}-tabs-tab-btn`,l=`.${e}-tabs-tab-active`,i=`.${e}-tabs-tab-disabled`,a=`.${e}-tabs-ink-bar`,c=`.${e}-tabs-tab-with-remove`,d=`.${e}-tabs-nav`,s=`.${e}-tabs-tab-remove`,h=`.${e}-tabs-nav-add`,u={"&&":{overflow:"unset"},[n]:{borderBottom:"none",backgroundColor:"transparent",border:"none",paddingLeft:0,paddingRight:0,paddingTop:6,paddingBottom:6,marginRight:24},[t]:{color:o.colors.textSecondary,fontWeight:o.typography.typographyBoldFontWeight,textShadow:"none",fontSize:o.typography.fontSizeMd,lineHeight:o.typography.lineHeightBase,"&:hover":{color:o.colors.actionDefaultTextHover},"&:active":{color:o.colors.actionDefaultTextPress},outlineWidth:2,outlineStyle:"none",outlineColor:o.colors.primary,outlineOffset:2,"&:focus-visible":{outlineStyle:"auto"}},[l]:{[t]:{color:o.colors.textPrimary},boxShadow:`inset 0 -3px 0 ${o.colors.actionPrimaryBackgroundDefault}`},[i]:{[t]:{color:o.colors.actionDisabledText,"&:hover":{color:o.colors.actionDisabledText},"&:active":{color:o.colors.actionDisabledText}}},[a]:{display:"none"},[c]:{borderTop:"none",borderLeft:"none",borderRight:"none",background:"none",paddingTop:0,paddingBottom:0,height:o.general.heightSm},[d]:{height:o.general.heightSm,"&::before":{borderColor:o.colors.borderDecorative}},[s]:{height:24,width:24,padding:6,borderRadius:o.borders.borderRadiusMd,marginTop:0,marginRight:0,marginBottom:0,marginLeft:4,"&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover,color:o.colors.actionDefaultTextHover},"&:active":{backgroundColor:o.colors.actionDefaultBackgroundPress,color:o.colors.actionDefaultTextPress},"&:focus-visible":{outlineWidth:2,outlineStyle:"solid",outlineColor:o.colors.primary}},[h]:{backgroundColor:"transparent",color:o.colors.textValidationInfo,border:"none",borderRadius:o.borders.borderRadiusMd,margin:4,height:24,width:24,padding:0,minWidth:"auto","&:hover":{backgroundColor:o.colors.actionDefaultBackgroundHover,color:o.colors.actionDefaultTextHover},"&:active":{backgroundColor:o.colors.actionDefaultBackgroundPress,color:o.colors.actionDefaultTextPress},"&:focus-visible":{outlineWidth:2,outlineStyle:"solid",outlineColor:o.colors.primary},"& > .anticon":{fontSize:16}},...(0,r.g)(o.options.enableAnimation)};return(0,r.i)(u)},cv=e=>{let{children:o,...n}=e;const{theme:l}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(M.A.TabPane,{closeIcon:(0,V.Y)(r.C,{css:(0,t.AH)({fontSize:l.general.iconSize},"","")}),...n,...n.dangerouslySetAntdProps,children:(0,V.Y)(r.R,{children:o})})})},dv=(()=>{const e=e=>{let{editable:o=!1,activeKey:n,defaultActiveKey:l,onChange:i,onEdit:a,children:c,destroyInactiveTabPane:d=!1,dangerouslySetAntdProps:s={},dangerouslyAppendEmotionCSS:h={},...u}=e;const{theme:f,classNamePrefix:p}=(0,r.u)();return(0,V.Y)(r.D,{children:(0,V.Y)(M.A,{activeKey:n,defaultActiveKey:l,onChange:i,onEdit:a,destroyInactiveTabPane:d,type:o?"editable-card":"card",addIcon:(0,V.Y)(ji,{css:(0,t.AH)({fontSize:f.general.iconSize},"","")}),css:[av(p,f),(0,r.i)(h),""],...s,...u,children:c})})};return e.TabPane=cv,e})(),sv=e=>(0,t.AH)({display:"inline-flex",alignItems:"center",justifyContent:"center",whiteSpace:"nowrap",border:`1px solid ${e.colors.actionDefaultBorderDefault}`,borderRadius:e.general.borderRadiusBase,backgroundColor:"transparent",color:e.colors.actionDefaultTextDefault,height:e.general.heightSm,padding:"0 12px",fontSize:e.typography.fontSizeBase,lineHeight:`${e.typography.lineHeightBase}px`,'&[data-state="on"]':{backgroundColor:e.colors.actionDefaultBackgroundPress,color:e.colors.actionDefaultTextPress,borderColor:e.colors.actionDefaultBorderPress},"&:hover":{cursor:"pointer",color:e.colors.actionDefaultTextHover,backgroundColor:e.colors.actionDefaultBackgroundHover,borderColor:e.colors.actionDefaultBorderHover,"& > svg":{stroke:e.colors.actionDefaultBorderHover}},"&:disabled":{cursor:"default",border:"transparent",color:e.colors.actionDisabledText,backgroundColor:e.colors.actionDisabledBackground,"& > svg":{stroke:e.colors.border}}},"",""),hv=e=>(0,V.Y)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:(0,V.Y)("rect",{x:"0.5",y:"0.5",width:"15",height:"15",rx:"3.5"})}),uv=(0,k.forwardRef)(((e,o)=>{let{children:n,pressed:l,defaultPressed:i,...a}=e;const{theme:c}=(0,r.u)(),[d,s]=k.useState(i);return(0,k.useEffect)((()=>{s(l)}),[l]),(0,V.FD)(G.b,{css:sv(c),...a,pressed:d,onPressedChange:e=>{var o;null===(o=a.onPressedChange)||void 0===o||o.call(a,e),s(e)},ref:o,children:[d?(0,V.Y)(r.e,{css:(0,t.AH)({marginRight:c.spacing.xs},"","")}):(0,V.Y)(hv,{css:(0,t.AH)({height:c.typography.lineHeightBase,width:c.typography.lineHeightSm,marginRight:c.spacing.xs,stroke:c.colors.border},"","")}),n]})})),fv=["x-small","xx-small"],pv={default:{nodeSize:32,indent:28},small:{nodeSize:24,indent:24},"x-small":{nodeSize:24,indent:16},"xx-small":{nodeSize:24,indent:8}};function vv(e,o){const n=`.${e}`,t=`.${e}-inner`,l=`.${e}-indeterminate`,i=`.${e}-checked`,a=`.${e}-disabled`;return{[`${n} > ${t}`]:{backgroundColor:o.colors.actionDefaultBackgroundDefault,borderColor:o.colors.actionDefaultBorderDefault},[`${n}:hover > ${t}`]:{backgroundColor:o.colors.actionDefaultBackgroundHover,borderColor:o.colors.actionDefaultBorderHover},[`${n}:active > ${t}`]:{backgroundColor:o.colors.actionDefaultBackgroundPress,borderColor:o.colors.actionDefaultBorderPress},[`${i} > ${t}`]:{backgroundColor:o.colors.actionPrimaryBackgroundDefault,borderColor:"transparent"},[`${i}:hover > ${t}`]:{backgroundColor:o.colors.actionPrimaryBackgroundHover,borderColor:"transparent"},[`${i}:active > ${t}`]:{backgroundColor:o.colors.actionPrimaryBackgroundPress,borderColor:"transparent"},[`${l} > ${t}`]:{backgroundColor:o.colors.primary,borderColor:o.colors.primary,"&:after":{backgroundColor:o.colors.white,height:"3px",width:"8px",borderRadius:"4px"}},[`${l}:hover > ${t}`]:{backgroundColor:o.colors.actionPrimaryBackgroundHover,borderColor:"transparent"},[`${l}:active > ${t}`]:{backgroundColor:o.colors.actionPrimaryBackgroundPress},[`${a} > ${t}, ${a}:hover > ${t}, ${a}:active > ${t}`]:{backgroundColor:o.colors.actionDisabledBackground},...(0,r.g)(o.options.enableAnimation)}}function gv(e,o,n,l){const i=`.${e}-tree-treenode`,a=`.${e}-tree-treenode-selected`,c=`.${e}-tree-treenode-active`,d=`.${e}-tree-treenode-disabled`,s=`.${e}-tree-node-content-wrapper`,h=`.${e}-tree-title`,u=`.${e}-tree-node-selected`,f=`.${e}-tree-switcher`,p=`.${e}-tree-switcher-noop`,v=`.${e}-tree-focused`,g=`.${e}-tree-checkbox`,m=`.${e}-tree-unselectable`,w=`.${e}-tree-indent-unit`,x=`.${e}-tree-list`,b=`.${e}-tree-list-scrollbar`,Y=`.${e}-tree-list-scrollbar-thumb`,y=`.${e}-tree-iconEle`,H=`.${e}-tree-treenode-motion, .ant-motion-collapse-appear, .ant-motion-collapse-appear-active, .ant-motion-collapse`,C=pv[n].nodeSize,R=l?16:24,Z={alignSelf:"baseline",display:"flex",alignItems:"center",justifyContent:"center"},I={[i]:{minHeight:C,width:"100%",padding:0,paddingLeft:4,display:"flex",alignItems:"center","&[aria-hidden=true]":{width:"auto"},"&:hover":{backgroundColor:o.colors.actionTertiaryBackgroundHover},"&:active":{backgroundColor:o.colors.actionTertiaryBackgroundPress}},[`&${m}`]:{[i]:{"&:hover":{backgroundColor:"transparent"},"&:active":{backgroundColor:"transparent"}},[s]:{cursor:"default"},[f]:{borderRadius:o.borders.borderRadiusMd}},[c]:{backgroundColor:o.colors.actionTertiaryBackgroundHover},[a]:{backgroundColor:o.colors.actionTertiaryBackgroundPress,borderLeft:`4px solid ${o.colors.actionPrimaryBackgroundDefault}`,paddingLeft:0,"&:hover":{backgroundColor:o.colors.actionTertiaryBackgroundPress}},[u]:{background:"none"},[d]:{"&:hover":{backgroundColor:"transparent"},"&:active":{backgroundColor:"transparent"}},[s]:{lineHeight:`${C}px`,...!l&&{padding:0},width:"100%",display:"flex",alignItems:"center","&:hover":{backgroundColor:"transparent"},"&:active":{backgroundColor:"transparent"}},[h]:{lineHeight:o.typography.lineHeightBase,padding:(C-parseInt(o.typography.lineHeightBase,10))/2+"px 0",width:"100%"},...l&&{[`${p} + ${s}, ${p} + ${g}`]:{marginLeft:C+4}},[f]:{height:C,width:C,paddingTop:(C-R)/2,marginRight:o.spacing.xs,color:o.colors.textSecondary,backgroundColor:"transparent","&:hover":{backgroundColor:o.colors.actionTertiaryBackgroundHover},"&:active":{backgroundColor:o.colors.actionTertiaryBackgroundPress}},[p]:{...l&&{display:"none"},"&:hover":{backgroundColor:"transparent"},"&:active":{backgroundColor:"transparent"}},[`&${v}`]:{backgroundColor:"transparent",outlineWidth:2,outlineOffset:1,outlineColor:o.colors.primary,outlineStyle:"solid"},[g]:{marginTop:"default"===n?o.spacing.sm:o.spacing.xs,marginBottom:0,marginRight:"default"===n?o.spacing.sm:o.spacing.xs,...Z},[Y]:{background:U()(o.isDarkMode?"#ffffff":"#000000").alpha(.5).hex()},[`${y}:has(*)`]:{...Z,height:C,color:o.colors.textSecondary,marginRight:"default"===n?o.spacing.sm:o.spacing.xs},[H]:{...(0,r.g)(o.options.enableAnimation),visibility:"hidden"},...l&&{[w]:{width:pv[n].indent},[`${w}:before`]:{height:"100%"},[x]:{[`&:hover ${b}`]:{display:"block !important"},[`&:active ${b}`]:{display:"block !important"}}},...vv(`${e}-tree-checkbox`,o),...(0,r.g)(o.options.enableAnimation)},M=(0,r.i)(I);return(0,t.AH)(M,"","")}const mv={showLeafIcon:!1},wv=(0,k.forwardRef)((function(e,o){let{treeData:n,defaultExpandedKeys:l,defaultSelectedKeys:i,defaultCheckedKeys:a,disabled:c=!1,mode:d="default",size:s="default",showLine:h,dangerouslySetAntdProps:u,...f}=e;const{theme:p,classNamePrefix:v}=(0,r.u)(),{USE_NEW_TREE:g}=(0,r.F)(),m=(0,r.s)("databricks.fe.designsystem.useNewTreeStyles",!1),w=g||m;let x=null!==h&&void 0!==h&&h;return fv.includes(s)?x=!1:g&&(x=null!==h&&void 0!==h?h:mv),(0,V.Y)(r.D,{children:(0,V.Y)(A.A,{treeData:n,defaultExpandedKeys:l,defaultSelectedKeys:i,defaultCheckedKeys:a,disabled:c,css:gv(v,p,s,w),switcherIcon:(0,V.Y)(en,{css:(0,t.AH)({fontSize:(w?16:24)+"px!important"},"","")}),tabIndex:0,selectable:"selectable"===d||"multiselectable"===d,checkable:"checkable"===d,multiple:"multiselectable"===d,showLine:x,...u,...f,ref:o})})}))}}]);
|