send file in another component code example
Example: transfer class from outer component to css file angular
// :host pseudo-class will apply styles to the parent of the current component
:host {
background-color: #ffffff;
color: black;
}
// ::ng-deep pseudo-class will apply styles to the current component and its children
::ng-deep div.feature {
border: 1px solid green;
border-radius: 50%;
}