I'm a little new to Angular and there's a project I'm playing around with that uses bootstrap and for all the dynamic components, it uses ngx-bootstrap.
When I want to import a component from ngx-bootstrap (ex. carousel) I just use/import the component.
ex.
import { OtherModeules, CarouselModule } from 'ngx-bootstrap';
Question - if I wanted to use another carousel component from mdbootstrap will I have to download and use the entire library, just to use the carousel, or can I get just that component? Or say a component from Angular Material design?
Concern - Afraid of downloading lots of libraries for different components resulting in a large project file and much bigger files to download by the users.