How do you properly handle standalone with Ionic

The entire concept of angular standalone is to import what you need directly without modules, however with ionic this seems to completely go against that purpose.

I am finding that I have to constantly import every ionic component and icon in every single page which is beyond tedious and it makes the code look ridiculous and bloated.

I understand where the angular team comes from also the ionic components of course can easily be imported from a custom module but standalone is supposed to get away from the entire module architecture.

So how are you properly handling this?