3d Linear Icon for Angular
<svg [cIcon]="icons.cil3d"></svg>About
The 3D linear icon is essential for representing three-dimensional graphics and modeling features in Angular applications. Use this icon to indicate 3D view modes, spatial editing tools, or depth perception features. Perfect for image editing software, CAD applications, and creative design tools built with Angular.
The linear style provides clear visual representation while maintaining scalability across all screen sizes, making it ideal for both desktop and mobile Angular applications. This icon integrates seamlessly with CoreUI’s Angular component library.
Common Use Cases
3D View Toggle
Enable or disable 3D view mode in your Angular image editor
Modeling Tool Indicator
Show when 3D modeling tools are active in your Angular application
Spatial Feature Badge
Indicate 3D or depth-aware features in your Angular interface
Best Practices
- Use consistent icon sizing across your interface
- Provide clear aria-labels for accessibility
- Consider using with toggle buttons for mode switching
Installation
To start using CoreUI Angular Icons in your project, you need to install it as a dependency. Follow the instructions below based on your package manager of choice:
Using npm
npm install @coreui/icons @coreui/icons-angularUsing yarn
yarn add @coreui/icons @coreui/icons-angularUsage
Once you have the package installed, you can import and use the icons in your Angular project. Here's a basic example:
import { IconModule } from '@coreui/icons-angular';
import { cil3d } from '@coreui/icons';
// In your component template:
<svg [cIcon]="icons.cil3d"></svg>Read the full CoreUI Angular Icons documentation to see the complete API and integration guide.